diff --git a/eng/spotbugs-aggregate-report/pom.xml b/eng/spotbugs-aggregate-report/pom.xml index 6696fd428a95..f0009c0bdaa5 100644 --- a/eng/spotbugs-aggregate-report/pom.xml +++ b/eng/spotbugs-aggregate-report/pom.xml @@ -112,7 +112,7 @@ com.microsoft.azure azure-batch - 10.1.0-beta.1 + 10.2.0-beta.1 com.microsoft.azure diff --git a/eng/versioning/version_data.txt b/eng/versioning/version_data.txt index a6a62583f488..31d9e957557a 100644 --- a/eng/versioning/version_data.txt +++ b/eng/versioning/version_data.txt @@ -3,7 +3,7 @@ # Note: com.azure:azure-sdk-parent is in version_client.txt com.azure:azure-data-sdk-parent;1.3.0;1.3.0 -com.microsoft.azure:azure-batch;10.0.0;10.1.0-beta.1 +com.microsoft.azure:azure-batch;10.1.0;10.2.0-beta.1 com.microsoft.azure:azure-applicationinsights-query;1.0.0-beta-2;1.0.0-beta-2 com.microsoft.azure.cognitiveservices:azure-cognitiveservices-spellcheck;1.1.0-beta.1;1.1.0-beta.1 com.microsoft.azure.cognitiveservices:azure-cognitiveservices-textanalytics;1.1.0-beta.1;1.1.0-beta.1 diff --git a/sdk/batch/microsoft-azure-batch/CHANGELOG.md b/sdk/batch/microsoft-azure-batch/CHANGELOG.md index f05a12f2ed7e..33503d014856 100644 --- a/sdk/batch/microsoft-azure-batch/CHANGELOG.md +++ b/sdk/batch/microsoft-azure-batch/CHANGELOG.md @@ -1,7 +1,22 @@ # Release History -## 10.1.0-beta.1 (Unreleased) - +## 10.1.0 (Unreleased) + +### Features Added +- Added property uploadHeaders to `OutputFileBlobContainerDestination`. + - Allows users to set custom HTTP headers on resource file uploads. + - Array of type HttpHeader (also being added). +- Added boolean property `allow_task_preemption` to `JobSpecification`, `CloudJob`, `JobAddParameter`, `JobPatchParameter`, `JobUpdateParameter` + - Mark Tasks as preemptible for higher priority Tasks (requires Comms-Enabled or Single Tenant Pool). +- Replaced comment (title, description, etc.) references of "low-priority" with "Spot/Low-Priority", to reflect new service behavior. + - No API change required. + - Low-Priority Compute Nodes (VMs) will continue to be used for User Subscription pools (and only User Subscription pools), as before. + - Spot Compute Nodes (VMs) will now be used for Batch Managed (and only Batch Managed pools) pools. + - Relevant docs: + https://docs.microsoft.com/azure/batch/nodes-and-pools + - https://docs.microsoft.com/azure/batch/batch-spot-vms +### Bugs Fixed + -upgraded unsupported Ubuntu versions of VMs in tests ## 10.0.0 (2021-07-30) diff --git a/sdk/batch/microsoft-azure-batch/LICENSE.txt b/sdk/batch/microsoft-azure-batch/LICENSE.txt index 49d21669aeef..eedfcd64892e 100644 --- a/sdk/batch/microsoft-azure-batch/LICENSE.txt +++ b/sdk/batch/microsoft-azure-batch/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 Microsoft +Copyright (c) 2022 Microsoft Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file +SOFTWARE. diff --git a/sdk/batch/microsoft-azure-batch/pom.xml b/sdk/batch/microsoft-azure-batch/pom.xml index dd7eacda2ba4..35bdb160de4d 100644 --- a/sdk/batch/microsoft-azure-batch/pom.xml +++ b/sdk/batch/microsoft-azure-batch/pom.xml @@ -16,7 +16,7 @@ com.microsoft.azure azure-batch jar - 10.1.0-beta.1 + 10.2.0-beta.1 Microsoft Azure Batch SDK Root This package contains the root module of Microsoft Azure Batch SDK. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/PoolOperations.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/PoolOperations.java index 082d8218c98c..ecaee04710d9 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/PoolOperations.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/PoolOperations.java @@ -305,7 +305,7 @@ public void createPool(String poolId, String virtualMachineSize, * @param targetDedicatedNodes * The desired number of dedicated compute nodes in the pool. * @param targetLowPriorityNodes - * The desired number of low-priority compute nodes in the pool. + * The desired number of Spot/Low-priority compute nodes in the pool. * @throws BatchErrorException * Exception thrown when an error response is received from the * Batch service. @@ -335,7 +335,7 @@ public void createPool(String poolId, String virtualMachineSize, * @param targetDedicatedNodes * The desired number of dedicated compute nodes in the pool. * @param targetLowPriorityNodes - * The desired number of low-priority compute nodes in the pool. + * The desired number of Spot/Low-priority compute nodes in the pool. * @param additionalBehaviors * A collection of {@link BatchClientBehavior} instances that are * applied to the Batch service request. @@ -398,7 +398,7 @@ public void createPool(String poolId, String virtualMachineSize, * @param targetDedicatedNodes * The desired number of dedicated compute nodes in the pool. * @param targetLowPriorityNodes - * The desired number of low-priority compute nodes in the pool. + * The desired number of Spot/Low-priority compute nodes in the pool. * @throws BatchErrorException * Exception thrown when an error response is received from the * Batch service. @@ -428,7 +428,7 @@ public void createPool(String poolId, String virtualMachineSize, * @param targetDedicatedNodes * The desired number of dedicated compute nodes in the pool. * @param targetLowPriorityNodes - * The desired number of low-priority compute nodes in the pool. + * The desired number of Spot/Low-priority compute nodes in the pool. * @param additionalBehaviors * A collection of {@link BatchClientBehavior} instances that are * applied to the Batch service request. @@ -502,7 +502,7 @@ public void createPool(PoolAddParameter pool, Iterable addi * @param targetDedicatedNodes * The desired number of dedicated compute nodes in the pool. * @param targetLowPriorityNodes - * The desired number of low-priority compute nodes in the pool. + * The desired number of Spot/Low-priority compute nodes in the pool. * @throws BatchErrorException * Exception thrown when an error response is received from the * Batch service. @@ -524,7 +524,7 @@ public void resizePool(String poolId, Integer targetDedicatedNodes, Integer targ * @param targetDedicatedNodes * The desired number of dedicated compute nodes in the pool. * @param targetLowPriorityNodes - * The desired number of low-priority compute nodes in the pool. + * The desired number of Spot/Low-priority compute nodes in the pool. * @param resizeTimeout * The timeout for allocation of compute nodes to the pool or removal * of compute nodes from the pool. If the pool has not reached the @@ -550,7 +550,7 @@ public void resizePool(String poolId, Integer targetDedicatedNodes, Integer targ * @param targetDedicatedNodes * The desired number of dedicated compute nodes in the pool. * @param targetLowPriorityNodes - * The desired number of low-priority compute nodes in the pool. + * The desired number of Spot/Low-priority compute nodes in the pool. * @param resizeTimeout * The timeout for allocation of compute nodes to the pool or removal * of compute nodes from the pool. If the pool has not reached the @@ -580,7 +580,7 @@ public void resizePool(String poolId, Integer targetDedicatedNodes, Integer targ * @param targetDedicatedNodes * The desired number of dedicated compute nodes in the pool. * @param targetLowPriorityNodes - * The desired number of low-priority compute nodes in the pool. + * The desired number of Spot/Low-priority compute nodes in the pool. * @param resizeTimeout * The timeout for allocation of compute nodes to the pool or removal * of compute nodes from the pool. If the pool has not reached the diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/ComputeNodeExtensions.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/ComputeNodeExtensions.java index c4de9f53711b..f3b37c145bab 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/ComputeNodeExtensions.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/ComputeNodeExtensions.java @@ -21,6 +21,7 @@ import com.microsoft.rest.ServiceCallback; import com.microsoft.rest.ServiceFuture; import com.microsoft.rest.ServiceResponseWithHeaders; +import java.io.IOException; import java.util.List; import rx.Observable; diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/ComputeNodes.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/ComputeNodes.java index e0291e26835d..090757a19c13 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/ComputeNodes.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/ComputeNodes.java @@ -50,6 +50,7 @@ import com.microsoft.rest.ServiceFuture; import com.microsoft.rest.ServiceResponseWithHeaders; import java.io.InputStream; +import java.io.IOException; import java.util.List; import rx.Observable; diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Files.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Files.java index 48cf22751db1..04a4a0d5f5b3 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Files.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Files.java @@ -35,6 +35,7 @@ import com.microsoft.rest.ServiceFuture; import com.microsoft.rest.ServiceResponseWithHeaders; import java.io.InputStream; +import java.io.IOException; import java.util.List; import rx.Observable; diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Pools.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Pools.java index ab1318aa2262..ee5b8eab48ee 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Pools.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Pools.java @@ -57,6 +57,7 @@ import com.microsoft.rest.ServiceCallback; import com.microsoft.rest.ServiceFuture; import com.microsoft.rest.ServiceResponseWithHeaders; +import java.io.IOException; import java.util.List; import rx.Observable; diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/BatchServiceClientImpl.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/BatchServiceClientImpl.java index 30b370709b4d..c13ef0b3e2b5 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/BatchServiceClientImpl.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/BatchServiceClientImpl.java @@ -304,7 +304,7 @@ public BatchServiceClientImpl(RestClient restClient) { } protected void initialize() { - this.apiVersion = "2021-06-01.14.0"; + this.apiVersion = "2022-01-01.15.0"; this.acceptLanguage = "en-US"; this.longRunningOperationRetryTimeout = 30; this.generateClientRequestId = true; @@ -328,6 +328,6 @@ protected void initialize() { */ @Override public String userAgent() { - return String.format("%s (%s, %s)", super.userAgent(), "BatchServiceClient", "2021-06-01.14.0"); + return String.format("%s (%s, %s)", super.userAgent(), "BatchServiceClient", "2022-01-01.15.0"); } } diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudJob.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudJob.java index 2ac328584398..8a1894f2df6d 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudJob.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudJob.java @@ -107,6 +107,16 @@ public class CloudJob { @JsonProperty(value = "priority") private Integer priority; + /** + * Whether Tasks in this job can be preempted by other high priority jobs. + * If the value is set to True, other high priority jobs submitted to the + * system will take precedence and will be able requeue tasks from this + * job. You can update a job's allowTaskPreemption after it has been + * created using the update job API. + */ + @JsonProperty(value = "allowTaskPreemption") + private Boolean allowTaskPreemption; + /** * The maximum number of tasks that can be executed in parallel for the * job. @@ -114,6 +124,7 @@ public class CloudJob { * If not specified, the default value is -1, which means there's no limit * to the number of tasks that can be run at once. You can update a job's * maxParallelTasks after it has been created using the update job API. + * This property is currently in private preview. */ @JsonProperty(value = "maxParallelTasks") private Integer maxParallelTasks; @@ -452,6 +463,26 @@ public CloudJob withPriority(Integer priority) { return this; } + /** + * Get if the value is set to True, other high priority jobs submitted to the system will take precedence and will be able requeue tasks from this job. You can update a job's allowTaskPreemption after it has been created using the update job API. + * + * @return the allowTaskPreemption value + */ + public Boolean allowTaskPreemption() { + return this.allowTaskPreemption; + } + + /** + * Set if the value is set to True, other high priority jobs submitted to the system will take precedence and will be able requeue tasks from this job. You can update a job's allowTaskPreemption after it has been created using the update job API. + * + * @param allowTaskPreemption the allowTaskPreemption value to set + * @return the CloudJob object itself. + */ + public CloudJob withAllowTaskPreemption(Boolean allowTaskPreemption) { + this.allowTaskPreemption = allowTaskPreemption; + return this; + } + /** * Get the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. * @@ -462,7 +493,7 @@ public Integer maxParallelTasks() { } /** - * Set the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. + * Set the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. This property is currently in private preview. * * @param maxParallelTasks the maxParallelTasks value to set * @return the CloudJob object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudJobSchedule.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudJobSchedule.java index b9bfc567f5ea..65817dff9785 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudJobSchedule.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudJobSchedule.java @@ -94,6 +94,8 @@ public class CloudJobSchedule { /** * The schedule according to which Jobs will be created. + * All times are fixed respective to UTC and are not impacted by daylight + * saving time. */ @JsonProperty(value = "schedule") private Schedule schedule; @@ -328,7 +330,7 @@ public CloudJobSchedule withPreviousStateTransitionTime(DateTime previousStateTr } /** - * Get the schedule value. + * Get all times are fixed respective to UTC and are not impacted by daylight saving time. * * @return the schedule value */ @@ -337,7 +339,7 @@ public Schedule schedule() { } /** - * Set the schedule value. + * Set all times are fixed respective to UTC and are not impacted by daylight saving time. * * @param schedule the schedule value to set * @return the CloudJobSchedule object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudPool.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudPool.java index 55ca3a1f45ce..32a2a69dc5dc 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudPool.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CloudPool.java @@ -145,9 +145,9 @@ public class CloudPool { private Integer currentDedicatedNodes; /** - * The number of low-priority Compute Nodes currently in the Pool. - * low-priority Compute Nodes which have been preempted are included in - * this count. + * The number of Spot/Low-priority Compute Nodes currently in the Pool. + * Spot/Low-priority Compute Nodes which have been preempted are included + * in this count. */ @JsonProperty(value = "currentLowPriorityNodes") private Integer currentLowPriorityNodes; @@ -632,7 +632,7 @@ public CloudPool withCurrentDedicatedNodes(Integer currentDedicatedNodes) { } /** - * Get low-priority Compute Nodes which have been preempted are included in this count. + * Get spot/Low-priority Compute Nodes which have been preempted are included in this count. * * @return the currentLowPriorityNodes value */ @@ -641,7 +641,7 @@ public Integer currentLowPriorityNodes() { } /** - * Set low-priority Compute Nodes which have been preempted are included in this count. + * Set spot/Low-priority Compute Nodes which have been preempted are included in this count. * * @param currentLowPriorityNodes the currentLowPriorityNodes value to set * @return the CloudPool object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ComputeNode.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ComputeNode.java index 98391b86c15d..02c1a91893d6 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ComputeNode.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ComputeNode.java @@ -34,7 +34,7 @@ public class ComputeNode { /** * The current state of the Compute Node. - * The low-priority Compute Node has been preempted. Tasks which were + * The Spot/Low-priority Compute Node has been preempted. Tasks which were * running on the Compute Node when it was preempted will be rescheduled * when another Compute Node becomes available. Possible values include: * 'idle', 'rebooting', 'reimaging', 'running', 'unusable', 'creating', @@ -179,7 +179,7 @@ public class ComputeNode { /** * Whether this Compute Node is a dedicated Compute Node. If false, the - * Compute Node is a low-priority Compute Node. + * Compute Node is a Spot/Low-priority Compute Node. */ @JsonProperty(value = "isDedicated") private Boolean isDedicated; @@ -244,7 +244,7 @@ public ComputeNode withUrl(String url) { } /** - * Get the low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available. Possible values include: 'idle', 'rebooting', 'reimaging', 'running', 'unusable', 'creating', 'starting', 'waitingForStartTask', 'startTaskFailed', 'unknown', 'leavingPool', 'offline', 'preempted'. + * Get the Spot/Low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available. Possible values include: 'idle', 'rebooting', 'reimaging', 'running', 'unusable', 'creating', 'starting', 'waitingForStartTask', 'startTaskFailed', 'unknown', 'leavingPool', 'offline', 'preempted'. * * @return the state value */ @@ -253,7 +253,7 @@ public ComputeNodeState state() { } /** - * Set the low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available. Possible values include: 'idle', 'rebooting', 'reimaging', 'running', 'unusable', 'creating', 'starting', 'waitingForStartTask', 'startTaskFailed', 'unknown', 'leavingPool', 'offline', 'preempted'. + * Set the Spot/Low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available. Possible values include: 'idle', 'rebooting', 'reimaging', 'running', 'unusable', 'creating', 'starting', 'waitingForStartTask', 'startTaskFailed', 'unknown', 'leavingPool', 'offline', 'preempted'. * * @param state the state value to set * @return the ComputeNode object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ComputeNodeState.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ComputeNodeState.java index 5444ec10d62d..ab6d456d6339 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ComputeNodeState.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ComputeNodeState.java @@ -51,7 +51,7 @@ public enum ComputeNodeState { /** The Compute Node is not currently running a Task, and scheduling of new Tasks to the Compute Node is disabled. */ OFFLINE("offline"), - /** The low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available. */ + /** The Spot/Low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available. */ PREEMPTED("preempted"); /** The actual serialized value for a ComputeNodeState instance. */ diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerRegistry.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerRegistry.java index 237cdf9ff78d..2a7a05d03b8e 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerRegistry.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerRegistry.java @@ -14,13 +14,6 @@ * A private container registry. */ public class ContainerRegistry { - /** - * The registry URL. - * If omitted, the default is "docker.io". - */ - @JsonProperty(value = "registryServer") - private String registryServer; - /** * The user name to log into the registry server. */ @@ -33,6 +26,13 @@ public class ContainerRegistry { @JsonProperty(value = "password") private String password; + /** + * The registry URL. + * If omitted, the default is "docker.io". + */ + @JsonProperty(value = "registryServer") + private String registryServer; + /** * The reference to the user assigned identity to use to access an Azure * Container Registry instead of username and password. @@ -40,26 +40,6 @@ public class ContainerRegistry { @JsonProperty(value = "identityReference") private ComputeNodeIdentityReference identityReference; - /** - * Get if omitted, the default is "docker.io". - * - * @return the registryServer value - */ - public String registryServer() { - return this.registryServer; - } - - /** - * Set if omitted, the default is "docker.io". - * - * @param registryServer the registryServer value to set - * @return the ContainerRegistry object itself. - */ - public ContainerRegistry withRegistryServer(String registryServer) { - this.registryServer = registryServer; - return this; - } - /** * Get the userName value. * @@ -100,6 +80,26 @@ public ContainerRegistry withPassword(String password) { return this; } + /** + * Get if omitted, the default is "docker.io". + * + * @return the registryServer value + */ + public String registryServer() { + return this.registryServer; + } + + /** + * Set if omitted, the default is "docker.io". + * + * @param registryServer the registryServer value to set + * @return the ContainerRegistry object itself. + */ + public ContainerRegistry withRegistryServer(String registryServer) { + this.registryServer = registryServer; + return this; + } + /** * Get the identityReference value. * diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/HttpHeader.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/HttpHeader.java new file mode 100644 index 000000000000..9a428cc28b4d --- /dev/null +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/HttpHeader.java @@ -0,0 +1,70 @@ +/** + * Copyright (c) Microsoft Corporation. All rights reserved. + * Licensed under the MIT License. See License.txt in the project root for + * license information. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + */ + +package com.microsoft.azure.batch.protocol.models; + +import com.fasterxml.jackson.annotation.JsonProperty; + +/** + * An HTTP header name-value pair. + */ +public class HttpHeader { + /** + * The case-insensitive name of the header to be used while uploading + * output files. + */ + @JsonProperty(value = "name", required = true) + private String name; + + /** + * The value of the header to be used while uploading output files. + */ + @JsonProperty(value = "value") + private String value; + + /** + * Get the name value. + * + * @return the name value + */ + public String name() { + return this.name; + } + + /** + * Set the name value. + * + * @param name the name value to set + * @return the HttpHeader object itself. + */ + public HttpHeader withName(String name) { + this.name = name; + return this; + } + + /** + * Get the value value. + * + * @return the value value + */ + public String value() { + return this.value; + } + + /** + * Set the value value. + * + * @param value the value value to set + * @return the HttpHeader object itself. + */ + public HttpHeader withValue(String value) { + this.value = value; + return this; + } + +} diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobAddParameter.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobAddParameter.java index 67438b0a807b..72c5b880e332 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobAddParameter.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobAddParameter.java @@ -49,10 +49,21 @@ public class JobAddParameter { * If not specified, the default value is -1, which means there's no limit * to the number of tasks that can be run at once. You can update a job's * maxParallelTasks after it has been created using the update job API. + * This property is currently in private preview. */ @JsonProperty(value = "maxParallelTasks") private Integer maxParallelTasks; + /** + * Whether Tasks in this job can be preempted by other high priority jobs. + * If the value is set to True, other high priority jobs submitted to the + * system will take precedence and will be able requeue tasks from this + * job. You can update a job's allowTaskPreemption after it has been + * created using the update job API. + */ + @JsonProperty(value = "allowTaskPreemption") + private Boolean allowTaskPreemption; + /** * The execution constraints for the Job. */ @@ -222,7 +233,7 @@ public JobAddParameter withPriority(Integer priority) { } /** - * Get the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. + * Get the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. This property is currently in private preview. * * @return the maxParallelTasks value */ @@ -231,7 +242,7 @@ public Integer maxParallelTasks() { } /** - * Set the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. + * Set the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. This property is currently in private preview. * * @param maxParallelTasks the maxParallelTasks value to set * @return the JobAddParameter object itself. @@ -241,6 +252,26 @@ public JobAddParameter withMaxParallelTasks(Integer maxParallelTasks) { return this; } + /** + * Get if the value is set to True, other high priority jobs submitted to the system will take precedence and will be able requeue tasks from this job. You can update a job's allowTaskPreemption after it has been created using the update job API. + * + * @return the allowTaskPreemption value + */ + public Boolean allowTaskPreemption() { + return this.allowTaskPreemption; + } + + /** + * Set if the value is set to True, other high priority jobs submitted to the system will take precedence and will be able requeue tasks from this job. You can update a job's allowTaskPreemption after it has been created using the update job API. + * + * @param allowTaskPreemption the allowTaskPreemption value to set + * @return the JobAddParameter object itself. + */ + public JobAddParameter withAllowTaskPreemption(Boolean allowTaskPreemption) { + this.allowTaskPreemption = allowTaskPreemption; + return this; + } + /** * Get the execution constraints for the Job. * diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobConstraints.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobConstraints.java index ac0403658e07..41ddfb4b8e15 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobConstraints.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobConstraints.java @@ -34,8 +34,9 @@ public class JobConstraints { * limit. For example, if the maximum retry count is 3, Batch tries a Task * up to 4 times (one initial try and 3 retries). If the maximum retry * count is 0, the Batch service does not retry Tasks. If the maximum retry - * count is -1, the Batch service retries Tasks without limit. The default - * value is 0 (no retries). + * count is -1, the Batch service retries the Task without limit, however + * this is not recommended for a start task or any task. The default value + * is 0 (no retries). */ @JsonProperty(value = "maxTaskRetryCount") private Integer maxTaskRetryCount; @@ -61,7 +62,7 @@ public JobConstraints withMaxWallClockTime(Period maxWallClockTime) { } /** - * Get note that this value specifically controls the number of retries. The Batch service will try each Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries a Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry Tasks. If the maximum retry count is -1, the Batch service retries Tasks without limit. The default value is 0 (no retries). + * Get note that this value specifically controls the number of retries. The Batch service will try each Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries a Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry Tasks. If the maximum retry count is -1, the Batch service retries the Task without limit, however this is not recommended for a start task or any task. The default value is 0 (no retries). * * @return the maxTaskRetryCount value */ @@ -70,7 +71,7 @@ public Integer maxTaskRetryCount() { } /** - * Set note that this value specifically controls the number of retries. The Batch service will try each Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries a Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry Tasks. If the maximum retry count is -1, the Batch service retries Tasks without limit. The default value is 0 (no retries). + * Set note that this value specifically controls the number of retries. The Batch service will try each Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries a Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry Tasks. If the maximum retry count is -1, the Batch service retries the Task without limit, however this is not recommended for a start task or any task. The default value is 0 (no retries). * * @param maxTaskRetryCount the maxTaskRetryCount value to set * @return the JobConstraints object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobManagerTask.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobManagerTask.java index 1a48e945df8c..cf94c30ca3fc 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobManagerTask.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobManagerTask.java @@ -196,7 +196,8 @@ public class JobManagerTask { private AuthenticationTokenSettings authenticationTokenSettings; /** - * Whether the Job Manager Task may run on a low-priority Compute Node. + * Whether the Job Manager Task may run on a Spot/Low-priority Compute + * Node. * The default value is true. */ @JsonProperty(value = "allowLowPriorityNode") diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobPatchParameter.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobPatchParameter.java index cae640be59d7..3f671cd888a8 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobPatchParameter.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobPatchParameter.java @@ -31,10 +31,21 @@ public class JobPatchParameter { * If not specified, the default value is -1, which means there's no limit * to the number of tasks that can be run at once. You can update a job's * maxParallelTasks after it has been created using the update job API. + * This property is currently in private preview. */ @JsonProperty(value = "maxParallelTasks") private Integer maxParallelTasks; + /** + * Whether Tasks in this job can be preempted by other high priority jobs. + * If the value is set to True, other high priority jobs submitted to the + * system will take precedence and will be able requeue tasks from this + * job. You can update a job's allowTaskPreemption after it has been + * created using the update job API. + */ + @JsonProperty(value = "allowTaskPreemption") + private Boolean allowTaskPreemption; + /** * The action the Batch service should take when all Tasks in the Job are * in the completed state. @@ -97,7 +108,7 @@ public JobPatchParameter withPriority(Integer priority) { } /** - * Get the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. + * Get the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. This property is currently in private preview. * * @return the maxParallelTasks value */ @@ -106,7 +117,7 @@ public Integer maxParallelTasks() { } /** - * Set the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. + * Set the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. This property is currently in private preview. * * @param maxParallelTasks the maxParallelTasks value to set * @return the JobPatchParameter object itself. @@ -116,6 +127,26 @@ public JobPatchParameter withMaxParallelTasks(Integer maxParallelTasks) { return this; } + /** + * Get if the value is set to True, other high priority jobs submitted to the system will take precedence and will be able requeue tasks from this job. You can update a job's allowTaskPreemption after it has been created using the update job API. + * + * @return the allowTaskPreemption value + */ + public Boolean allowTaskPreemption() { + return this.allowTaskPreemption; + } + + /** + * Set if the value is set to True, other high priority jobs submitted to the system will take precedence and will be able requeue tasks from this job. You can update a job's allowTaskPreemption after it has been created using the update job API. + * + * @param allowTaskPreemption the allowTaskPreemption value to set + * @return the JobPatchParameter object itself. + */ + public JobPatchParameter withAllowTaskPreemption(Boolean allowTaskPreemption) { + this.allowTaskPreemption = allowTaskPreemption; + return this; + } + /** * Get if omitted, the completion behavior is left unchanged. You may not change the value from terminatejob to noaction - that is, once you have engaged automatic Job termination, you cannot turn it off again. If you try to do this, the request fails with an 'invalid property value' error response; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request). Possible values include: 'noAction', 'terminateJob'. * diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobScheduleAddParameter.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobScheduleAddParameter.java index 5f912cb7e406..3a04b9ff6008 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobScheduleAddParameter.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobScheduleAddParameter.java @@ -36,6 +36,8 @@ public class JobScheduleAddParameter { /** * The schedule according to which Jobs will be created. + * All times are fixed respective to UTC and are not impacted by daylight + * saving time. */ @JsonProperty(value = "schedule", required = true) private Schedule schedule; @@ -95,7 +97,7 @@ public JobScheduleAddParameter withDisplayName(String displayName) { } /** - * Get the schedule value. + * Get all times are fixed respective to UTC and are not impacted by daylight saving time. * * @return the schedule value */ @@ -104,7 +106,7 @@ public Schedule schedule() { } /** - * Set the schedule value. + * Set all times are fixed respective to UTC and are not impacted by daylight saving time. * * @param schedule the schedule value to set * @return the JobScheduleAddParameter object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobSchedulePatchParameter.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobSchedulePatchParameter.java index 2a3870acec38..243459132a50 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobSchedulePatchParameter.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobSchedulePatchParameter.java @@ -17,8 +17,9 @@ public class JobSchedulePatchParameter { /** * The schedule according to which Jobs will be created. - * If you do not specify this element, the existing schedule is left - * unchanged. + * All times are fixed respective to UTC and are not impacted by daylight + * saving time. If you do not specify this element, the existing schedule + * is left unchanged. */ @JsonProperty(value = "schedule") private Schedule schedule; @@ -39,7 +40,7 @@ public class JobSchedulePatchParameter { private List metadata; /** - * Get if you do not specify this element, the existing schedule is left unchanged. + * Get all times are fixed respective to UTC and are not impacted by daylight saving time. If you do not specify this element, the existing schedule is left unchanged. * * @return the schedule value */ @@ -48,7 +49,7 @@ public Schedule schedule() { } /** - * Set if you do not specify this element, the existing schedule is left unchanged. + * Set all times are fixed respective to UTC and are not impacted by daylight saving time. If you do not specify this element, the existing schedule is left unchanged. * * @param schedule the schedule value to set * @return the JobSchedulePatchParameter object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobScheduleUpdateParameter.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobScheduleUpdateParameter.java index f83ca5171ac9..7a4f3ea421ce 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobScheduleUpdateParameter.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobScheduleUpdateParameter.java @@ -17,8 +17,10 @@ public class JobScheduleUpdateParameter { /** * The schedule according to which Jobs will be created. - * If you do not specify this element, it is equivalent to passing the - * default schedule: that is, a single Job scheduled to run immediately. + * All times are fixed respective to UTC and are not impacted by daylight + * saving time. If you do not specify this element, it is equivalent to + * passing the default schedule: that is, a single Job scheduled to run + * immediately. */ @JsonProperty(value = "schedule", required = true) private Schedule schedule; @@ -40,7 +42,7 @@ public class JobScheduleUpdateParameter { private List metadata; /** - * Get if you do not specify this element, it is equivalent to passing the default schedule: that is, a single Job scheduled to run immediately. + * Get all times are fixed respective to UTC and are not impacted by daylight saving time. If you do not specify this element, it is equivalent to passing the default schedule: that is, a single Job scheduled to run immediately. * * @return the schedule value */ @@ -49,7 +51,7 @@ public Schedule schedule() { } /** - * Set if you do not specify this element, it is equivalent to passing the default schedule: that is, a single Job scheduled to run immediately. + * Set all times are fixed respective to UTC and are not impacted by daylight saving time. If you do not specify this element, it is equivalent to passing the default schedule: that is, a single Job scheduled to run immediately. * * @param schedule the schedule value to set * @return the JobScheduleUpdateParameter object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobSpecification.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobSpecification.java index 2b2298dccab0..0e0276ba01b0 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobSpecification.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobSpecification.java @@ -26,6 +26,16 @@ public class JobSpecification { @JsonProperty(value = "priority") private Integer priority; + /** + * Whether Tasks in this job can be preempted by other high priority jobs. + * If the value is set to True, other high priority jobs submitted to the + * system will take precedence and will be able requeue tasks from this + * job. You can update a job's allowTaskPreemption after it has been + * created using the update job API. + */ + @JsonProperty(value = "allowTaskPreemption") + private Boolean allowTaskPreemption; + /** * The maximum number of tasks that can be executed in parallel for the * job. @@ -33,6 +43,7 @@ public class JobSpecification { * If not specified, the default value is -1, which means there's no limit * to the number of tasks that can be run at once. You can update a job's * maxParallelTasks after it has been created using the update job API. + * This property is currently in private preview. */ @JsonProperty(value = "maxParallelTasks") private Integer maxParallelTasks; @@ -171,6 +182,26 @@ public JobSpecification withPriority(Integer priority) { return this; } + /** + * Get if the value is set to True, other high priority jobs submitted to the system will take precedence and will be able requeue tasks from this job. You can update a job's allowTaskPreemption after it has been created using the update job API. + * + * @return the allowTaskPreemption value + */ + public Boolean allowTaskPreemption() { + return this.allowTaskPreemption; + } + + /** + * Set if the value is set to True, other high priority jobs submitted to the system will take precedence and will be able requeue tasks from this job. You can update a job's allowTaskPreemption after it has been created using the update job API. + * + * @param allowTaskPreemption the allowTaskPreemption value to set + * @return the JobSpecification object itself. + */ + public JobSpecification withAllowTaskPreemption(Boolean allowTaskPreemption) { + this.allowTaskPreemption = allowTaskPreemption; + return this; + } + /** * Get the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. * @@ -181,7 +212,7 @@ public Integer maxParallelTasks() { } /** - * Set the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. + * Set the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. This property is currently in private preview. * * @param maxParallelTasks the maxParallelTasks value to set * @return the JobSpecification object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobUpdateParameter.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobUpdateParameter.java index b036a11ab72d..07a10043c22c 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobUpdateParameter.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobUpdateParameter.java @@ -24,6 +24,27 @@ public class JobUpdateParameter { @JsonProperty(value = "priority") private Integer priority; + /** + * The maximum number of tasks that can be executed in parallel for the + * job. + * The value of maxParallelTasks must be -1 or greater than 0 if specified. + * If not specified, the default value is -1, which means there's no limit + * to the number of tasks that can be run at once. You can update a job's + * maxParallelTasks after it has been created using the update job API. + */ + @JsonProperty(value = "maxParallelTasks") + private Integer maxParallelTasks; + + /** + * Whether Tasks in this job can be preempted by other high priority jobs. + * If the value is set to True, other high priority jobs submitted to the + * system will take precedence and will be able requeue tasks from this + * job. You can update a job's allowTaskPreemption after it has been + * created using the update job API. + */ + @JsonProperty(value = "allowTaskPreemption") + private Boolean allowTaskPreemption; + /** * The execution constraints for the Job. * If omitted, the constraints are cleared. @@ -89,6 +110,46 @@ public JobUpdateParameter withPriority(Integer priority) { return this; } + /** + * Get the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. + * + * @return the maxParallelTasks value + */ + public Integer maxParallelTasks() { + return this.maxParallelTasks; + } + + /** + * Set the value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, which means there's no limit to the number of tasks that can be run at once. You can update a job's maxParallelTasks after it has been created using the update job API. + * + * @param maxParallelTasks the maxParallelTasks value to set + * @return the JobUpdateParameter object itself. + */ + public JobUpdateParameter withMaxParallelTasks(Integer maxParallelTasks) { + this.maxParallelTasks = maxParallelTasks; + return this; + } + + /** + * Get if the value is set to True, other high priority jobs submitted to the system will take precedence and will be able requeue tasks from this job. You can update a job's allowTaskPreemption after it has been created using the update job API. + * + * @return the allowTaskPreemption value + */ + public Boolean allowTaskPreemption() { + return this.allowTaskPreemption; + } + + /** + * Set if the value is set to True, other high priority jobs submitted to the system will take precedence and will be able requeue tasks from this job. You can update a job's allowTaskPreemption after it has been created using the update job API. + * + * @param allowTaskPreemption the allowTaskPreemption value to set + * @return the JobUpdateParameter object itself. + */ + public JobUpdateParameter withAllowTaskPreemption(Boolean allowTaskPreemption) { + this.allowTaskPreemption = allowTaskPreemption; + return this; + } + /** * Get if omitted, the constraints are cleared. * diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/OutputFileBlobContainerDestination.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/OutputFileBlobContainerDestination.java index e27122b37059..0f8a19915537 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/OutputFileBlobContainerDestination.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/OutputFileBlobContainerDestination.java @@ -8,6 +8,7 @@ package com.microsoft.azure.batch.protocol.models; +import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty; /** @@ -45,6 +46,16 @@ public class OutputFileBlobContainerDestination { @JsonProperty(value = "identityReference") private ComputeNodeIdentityReference identityReference; + /** + * A list of name-value pairs for headers to be used in uploading output + * files. + * These headers will be specified when uploading files to Azure Storage. + * For more information, see [Request Headers (All Blob + * Types)](https://docs.microsoft.com/rest/api/storageservices/put-blob#request-headers-all-blob-types). + */ + @JsonProperty(value = "uploadHeaders") + private List uploadHeaders; + /** * Get if filePattern refers to a specific file (i.e. contains no wildcards), then path is the name of the blob to which to upload that file. If filePattern contains one or more wildcards (and therefore may match multiple files), then path is the name of the blob virtual directory (which is prepended to each blob name) to which to upload the file(s). If omitted, file(s) are uploaded to the root of the container with a blob name matching their file name. * @@ -105,4 +116,24 @@ public OutputFileBlobContainerDestination withIdentityReference(ComputeNodeIdent return this; } + /** + * Get these headers will be specified when uploading files to Azure Storage. For more information, see [Request Headers (All Blob Types)](https://docs.microsoft.com/rest/api/storageservices/put-blob#request-headers-all-blob-types). + * + * @return the uploadHeaders value + */ + public List uploadHeaders() { + return this.uploadHeaders; + } + + /** + * Set these headers will be specified when uploading files to Azure Storage. For more information, see [Request Headers (All Blob Types)](https://docs.microsoft.com/rest/api/storageservices/put-blob#request-headers-all-blob-types). + * + * @param uploadHeaders the uploadHeaders value to set + * @return the OutputFileBlobContainerDestination object itself. + */ + public OutputFileBlobContainerDestination withUploadHeaders(List uploadHeaders) { + this.uploadHeaders = uploadHeaders; + return this; + } + } diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolAddParameter.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolAddParameter.java index 31fb2d58cab0..a67052e26184 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolAddParameter.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolAddParameter.java @@ -93,7 +93,7 @@ public class PoolAddParameter { private Integer targetDedicatedNodes; /** - * The desired number of low-priority Compute Nodes in the Pool. + * The desired number of Spot/Low-priority Compute Nodes in the Pool. * This property must not be specified if enableAutoScale is set to true. * If enableAutoScale is set to false, then you must set either * targetDedicatedNodes, targetLowPriorityNodes, or both. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolNodeCounts.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolNodeCounts.java index dd08ed355bf7..5b1e047a3d8e 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolNodeCounts.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolNodeCounts.java @@ -27,7 +27,7 @@ public class PoolNodeCounts { private NodeCounts dedicated; /** - * The number of low-priority Compute Nodes in each state. + * The number of Spot/Low-priority Compute Nodes in each state. */ @JsonProperty(value = "lowPriority") private NodeCounts lowPriority; diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolResizeParameter.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolResizeParameter.java index 3bd0ea0e8dd1..9256db4a70fa 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolResizeParameter.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolResizeParameter.java @@ -22,7 +22,7 @@ public class PoolResizeParameter { private Integer targetDedicatedNodes; /** - * The desired number of low-priority Compute Nodes in the Pool. + * The desired number of Spot/Low-priority Compute Nodes in the Pool. */ @JsonProperty(value = "targetLowPriorityNodes") private Integer targetLowPriorityNodes; diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolSpecification.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolSpecification.java index da9394225050..cab57ac8fd58 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolSpecification.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolSpecification.java @@ -95,7 +95,7 @@ public class PoolSpecification { private Integer targetDedicatedNodes; /** - * The desired number of low-priority Compute Nodes in the Pool. + * The desired number of Spot/Low-priority Compute Nodes in the Pool. * This property must not be specified if enableAutoScale is set to true. * If enableAutoScale is set to false, then you must set either * targetDedicatedNodes, targetLowPriorityNodes, or both. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PublicIPAddressConfiguration.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PublicIPAddressConfiguration.java index b8ebb8299376..800fe1da3316 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PublicIPAddressConfiguration.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PublicIPAddressConfiguration.java @@ -28,10 +28,10 @@ public class PublicIPAddressConfiguration { * The list of public IPs which the Batch service will use when * provisioning Compute Nodes. * The number of IPs specified here limits the maximum size of the Pool - - * 100 dedicated nodes or 100 low-priority nodes can be allocated for each - * public IP. For example, a pool needing 250 dedicated VMs would need at - * least 3 public IPs specified. Each element of this collection is of the - * form: + * 100 dedicated nodes or 100 Spot/Low-priority nodes can be allocated for + * each public IP. For example, a pool needing 250 dedicated VMs would need + * at least 3 public IPs specified. Each element of this collection is of + * the form: * /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/publicIPAddresses/{ip}. */ @JsonProperty(value = "ipAddressIds") diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/Schedule.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/Schedule.java index 13540d31f29d..c46c078b81dd 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/Schedule.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/Schedule.java @@ -13,7 +13,8 @@ import com.fasterxml.jackson.annotation.JsonProperty; /** - * The schedule according to which Jobs will be created. + * The schedule according to which Jobs will be created. All times are fixed + * respective to UTC and are not impacted by daylight saving time. */ public class Schedule { /** diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/StartTask.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/StartTask.java index b1932363dd1e..81d93f811824 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/StartTask.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/StartTask.java @@ -93,7 +93,9 @@ public class StartTask { * example, if the maximum retry count is 3, Batch tries the Task up to 4 * times (one initial try and 3 retries). If the maximum retry count is 0, * the Batch service does not retry the Task. If the maximum retry count is - * -1, the Batch service retries the Task without limit. + * -1, the Batch service retries the Task without limit, however this is + * not recommended for a start task or any task. The default value is 0 (no + * retries). */ @JsonProperty(value = "maxTaskRetryCount") private Integer maxTaskRetryCount; @@ -217,7 +219,7 @@ public StartTask withUserIdentity(UserIdentity userIdentity) { } /** - * Get the Batch service retries a Task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try the Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the Task. If the maximum retry count is -1, the Batch service retries the Task without limit. + * Get the Batch service retries a Task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try the Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the Task. If the maximum retry count is -1, the Batch service retries the Task without limit, however this is not recommended for a start task or any task. The default value is 0 (no retries). * * @return the maxTaskRetryCount value */ @@ -226,7 +228,7 @@ public Integer maxTaskRetryCount() { } /** - * Set the Batch service retries a Task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try the Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the Task. If the maximum retry count is -1, the Batch service retries the Task without limit. + * Set the Batch service retries a Task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try the Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the Task. If the maximum retry count is -1, the Batch service retries the Task without limit, however this is not recommended for a start task or any task. The default value is 0 (no retries). * * @param maxTaskRetryCount the maxTaskRetryCount value to set * @return the StartTask object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/TaskConstraints.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/TaskConstraints.java index 1cda3766881a..c8d4f10d6cdf 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/TaskConstraints.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/TaskConstraints.java @@ -44,7 +44,9 @@ public class TaskConstraints { * maximum retry count is 3, Batch tries the Task up to 4 times (one * initial try and 3 retries). If the maximum retry count is 0, the Batch * service does not retry the Task after the first attempt. If the maximum - * retry count is -1, the Batch service retries the Task without limit. + * retry count is -1, the Batch service retries the Task without limit, + * however this is not recommended for a start task or any task. The + * default value is 0 (no retries). */ @JsonProperty(value = "maxTaskRetryCount") private Integer maxTaskRetryCount; @@ -90,7 +92,7 @@ public TaskConstraints withRetentionTime(Period retentionTime) { } /** - * Get note that this value specifically controls the number of retries for the Task executable due to a nonzero exit code. The Batch service will try the Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the Task after the first attempt. If the maximum retry count is -1, the Batch service retries the Task without limit. + * Get note that this value specifically controls the number of retries for the Task executable due to a nonzero exit code. The Batch service will try the Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the Task after the first attempt. If the maximum retry count is -1, the Batch service retries the Task without limit, however this is not recommended for a start task or any task. The default value is 0 (no retries). * * @return the maxTaskRetryCount value */ @@ -99,7 +101,7 @@ public Integer maxTaskRetryCount() { } /** - * Set note that this value specifically controls the number of retries for the Task executable due to a nonzero exit code. The Batch service will try the Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the Task after the first attempt. If the maximum retry count is -1, the Batch service retries the Task without limit. + * Set note that this value specifically controls the number of retries for the Task executable due to a nonzero exit code. The Batch service will try the Task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the Task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the Task after the first attempt. If the maximum retry count is -1, the Batch service retries the Task without limit, however this is not recommended for a start task or any task. The default value is 0 (no retries). * * @param maxTaskRetryCount the maxTaskRetryCount value to set * @return the TaskConstraints object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/BatchIntegrationTestBase.java b/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/BatchIntegrationTestBase.java index 5658ec288c6e..6964c7e069cd 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/BatchIntegrationTestBase.java +++ b/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/BatchIntegrationTestBase.java @@ -382,9 +382,9 @@ static CloudPool createIfNotExistIaaSPool(String poolId) throws Exception { if (!batchClient.poolOperations().existsPool(poolId)) { // Use IaaS VM with Ubuntu ImageReference imgRef = new ImageReference().withPublisher("Canonical").withOffer("UbuntuServer") - .withSku("16.04-LTS").withVersion("latest"); + .withSku("18.04-lts").withVersion("latest"); VirtualMachineConfiguration configuration = new VirtualMachineConfiguration(); - configuration.withNodeAgentSKUId("batch.node.ubuntu 16.04").withImageReference(imgRef); + configuration.withNodeAgentSKUId("batch.node.ubuntu 18.04").withImageReference(imgRef); List userList = new ArrayList<>(); userList.add(new UserAccount().withName("test-user").withPassword("kt#_gahr!@aGERDXA") diff --git a/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/PoolTests.java b/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/PoolTests.java index 7b10f3d3ac10..80e3e3d9abb4 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/PoolTests.java +++ b/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/PoolTests.java @@ -74,9 +74,9 @@ public void canCRUDLowPriIaaSPool() throws Exception { // Check if pool exists if (!batchClient.poolOperations().existsPool(poolId)) { ImageReference imgRef = new ImageReference().withPublisher("Canonical").withOffer("UbuntuServer") - .withSku("16.04-LTS").withVersion("latest"); + .withSku("18.04-lts").withVersion("latest"); VirtualMachineConfiguration configuration = new VirtualMachineConfiguration(); - configuration.withNodeAgentSKUId("batch.node.ubuntu 16.04").withImageReference(imgRef); + configuration.withNodeAgentSKUId("batch.node.ubuntu 18.04").withImageReference(imgRef); NetworkConfiguration netConfig = createNetworkConfiguration(); PoolEndpointConfiguration endpointConfig = new PoolEndpointConfiguration(); @@ -202,8 +202,8 @@ public void canCreateDataDisk() throws Exception { VirtualMachineConfiguration configuration = new VirtualMachineConfiguration(); configuration .withImageReference( - new ImageReference().withPublisher("Canonical").withOffer("UbuntuServer").withSku("16.04-LTS")) - .withNodeAgentSKUId("batch.node.ubuntu 16.04").withDataDisks(dataDisks); + new ImageReference().withPublisher("Canonical").withOffer("UbuntuServer").withSku("18.04-lts")) + .withNodeAgentSKUId("batch.node.ubuntu 18.04").withDataDisks(dataDisks); PoolAddParameter poolConfig = new PoolAddParameter() .withId(poolId) .withNetworkConfiguration(networkConfiguration) @@ -240,7 +240,7 @@ public void canCreateCustomImageWithExpectedError() throws Exception { configuration.withImageReference(new ImageReference().withVirtualMachineImageId(String.format( "/subscriptions/%s/resourceGroups/batchexp/providers/Microsoft.Compute/images/FakeImage", System.getenv("SUBSCRIPTION_ID")))) - .withNodeAgentSKUId("batch.node.ubuntu 16.04"); + .withNodeAgentSKUId("batch.node.ubuntu 18.04"); PoolAddParameter poolConfig = new PoolAddParameter() .withId(poolId) .withVmSize(POOL_VM_SIZE) @@ -285,8 +285,8 @@ public void shouldFailOnCreateContainerPoolWithRegularImage() throws Exception { VirtualMachineConfiguration configuration = new VirtualMachineConfiguration(); configuration .withImageReference( - new ImageReference().withPublisher("Canonical").withOffer("UbuntuServer").withSku("16.04-LTS")) - .withNodeAgentSKUId("batch.node.ubuntu 16.04") + new ImageReference().withPublisher("Canonical").withOffer("UbuntuServer").withSku("18.04-lts")) + .withNodeAgentSKUId("batch.node.ubuntu 18.04") .withContainerConfiguration(new ContainerConfiguration().withContainerImageNames(images)); PoolAddParameter poolConfig = new PoolAddParameter() .withId(poolId) @@ -303,7 +303,7 @@ public void shouldFailOnCreateContainerPoolWithRegularImage() throws Exception { for (int i = 0; i < err.body().values().size(); i++) { if (err.body().values().get(i).key().equals("Reason")) { Assert.assertEquals( - "The specified imageReference with publisher Canonical offer UbuntuServer sku 16.04-LTS does not support container feature.", + "The specified imageReference with publisher Canonical offer UbuntuServer sku 18.04-lts does not support container feature.", err.body().values().get(i).value()); return; } @@ -338,8 +338,8 @@ public void shouldFailOnCreateLinuxPoolWithWindowsConfig() throws Exception { VirtualMachineConfiguration configuration = new VirtualMachineConfiguration(); configuration .withImageReference( - new ImageReference().withPublisher("Canonical").withOffer("UbuntuServer").withSku("16.04-LTS")) - .withNodeAgentSKUId("batch.node.ubuntu 16.04"); + new ImageReference().withPublisher("Canonical").withOffer("UbuntuServer").withSku("18.04-lts")) + .withNodeAgentSKUId("batch.node.ubuntu 18.04"); UserAccount windowsUser = new UserAccount(); windowsUser.withWindowsUserConfiguration(new WindowsUserConfiguration().withLoginMode(LoginMode.INTERACTIVE)) .withName("testaccount") diff --git a/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/TaskTests.java b/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/TaskTests.java index 7c25c1bf6241..6f1ae7bb6aa2 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/TaskTests.java +++ b/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/TaskTests.java @@ -456,7 +456,7 @@ public void failCreateContainerTaskWithRegularPool() throws Exception { // Accepted Error for (int i = 0; i < err.body().values().size(); i++) { if (err.body().values().get(i).key().equals("Reason")) { - Assert.assertEquals("The specified imageReference with publisher Canonical offer UbuntuServer sku 16.04-LTS does not support container feature.", err.body().values().get(i).value()); + Assert.assertEquals("The specified imageReference with publisher Canonical offer UbuntuServer sku 18.04-lts does not support container feature.", err.body().values().get(i).value()); return; } } diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJob.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJob.json index f2e9273b88bc..f42ee9078d75 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJob.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJob.json @@ -1,127 +1,127 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:34 GMT", + "date" : "Fri, 11 Feb 2022 00:49:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "a45216ed-48ad-48c6-9414-d9ad0e83911a", + "request-id" : "bc42a6f0-94ac-46aa-86af-38238a070f18", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:34 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:49 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "7a360a03-1074-441b-9c3a-04cdb34c9202", - "etag" : "0x8D9506086243B3A", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "client-request-id" : "3fb696bb-c2c9-4b70-aa30-43f039c298c2", + "etag" : "0x8D9ECF86871CB0E", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:34 GMT", + "date" : "Fri, 11 Feb 2022 00:49:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "281fb4c9-8767-44ed-91a2-2aa22e40251d", + "request-id" : "34cf794a-cea0-4993-9305-5e12da54dcaf", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:34 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:49 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9e92e22a-739e-4585-82d3-331d08cf2485", + "client-request-id" : "a3e4a0bf-f5ef-4b4c-a3c2-93fb5fb1f974", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9506086243B3A", + "etag" : "0x8D9ECF86871CB0E", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8D9506086243B3A\",\"lastModified\":\"2021-07-26T18:09:34.7239738Z\",\"creationTime\":\"2021-07-26T18:09:34.6629492Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:09:34.7239738Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:34.7239738Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8D9ECF86871CB0E\",\"lastModified\":\"2022-02-11T00:49:49.7968398Z\",\"creationTime\":\"2022-02-11T00:49:49.7778375Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:49:49.7968398Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T00:49:49.7968398Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:34 GMT", + "date" : "Fri, 11 Feb 2022 00:49:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "b2e4dcea-2aa6-4a36-b847-a76a4432e5bc", + "client-request-id" : "66c3f2ae-69a1-48d3-99be-4242b88b7f5f", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "4068fbb2-7a3e-4a3f-a4d8-478cc69fca10", + "request-id" : "1bcbbd15-7b5d-47b4-9be6-476906981106", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-failIfPoisonTaskTooLarge\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-failIfPoisonTaskTooLarge\",\"eTag\":\"0x8D94E1439784A6A\",\"lastModified\":\"2021-07-23T19:58:22.013297Z\",\"creationTime\":\"2021-07-23T19:58:21.9962816Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-23T19:58:22.013297Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testIaaSpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-23T19:58:22.013297Z\",\"poolId\":\"BatchUser-testIaaSpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8D9506086243B3A\",\"lastModified\":\"2021-07-26T18:09:34.7239738Z\",\"creationTime\":\"2021-07-26T18:09:34.6629492Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:09:34.7239738Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:34.7239738Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D9505F65CFBACE\",\"lastModified\":\"2021-07-26T18:01:30.986363Z\",\"creationTime\":\"2021-07-26T18:01:30.9453295Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-26T18:01:32.061414Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:01:30.986363Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:01:30.986363Z\",\"endTime\":\"2021-07-26T18:01:32.061414Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D94E1305ACCBCE\",\"lastModified\":\"2021-07-23T19:49:45.6191438Z\",\"creationTime\":\"2021-07-23T19:49:45.570184Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-23T19:49:46.6817475Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-23T19:49:45.6191438Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-23T19:49:45.6191438Z\",\"endTime\":\"2021-07-23T19:49:46.6817475Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D94AE220539972\",\"lastModified\":\"2021-07-19T18:22:11.5049842Z\",\"creationTime\":\"2021-07-19T18:22:11.4529956Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-19T18:22:12.5676952Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-19T18:22:11.5049842Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-19T18:22:11.5049842Z\",\"endTime\":\"2021-07-19T18:22:12.5676952Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D947C08C1346DC\",\"lastModified\":\"2021-07-15T18:44:15.9002332Z\",\"creationTime\":\"2021-07-15T18:44:15.8552298Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-15T18:44:16.9557361Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-15T18:44:15.9002332Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-15T18:44:15.9002332Z\",\"endTime\":\"2021-07-15T18:44:16.9557361Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D947B2F5811EF9\",\"lastModified\":\"2021-07-15T17:06:59.8266617Z\",\"creationTime\":\"2021-07-15T17:06:59.7763891Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-15T17:07:01.0151668Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-15T17:06:59.8266617Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-15T17:06:59.8266617Z\",\"endTime\":\"2021-07-15T17:07:01.0151668Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D946EAD9ABD68E\",\"lastModified\":\"2021-07-14T17:14:33.7844878Z\",\"creationTime\":\"2021-07-14T17:14:33.728451Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-14T17:14:34.8446345Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-14T17:14:33.7844878Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-14T17:14:33.7844878Z\",\"endTime\":\"2021-07-14T17:14:34.8446345Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D946DFF586BCB6\",\"lastModified\":\"2021-07-14T15:56:36.0535222Z\",\"creationTime\":\"2021-07-14T15:56:35.9945292Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-14T15:56:37.1152647Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-14T15:56:36.0535222Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-14T15:56:36.0535222Z\",\"endTime\":\"2021-07-14T15:56:37.1152647Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D945618FC1CE6F\",\"lastModified\":\"2021-07-12T18:19:17.5623279Z\",\"creationTime\":\"2021-07-12T18:19:17.5155813Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-12T18:19:18.6332073Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-12T18:19:17.5623279Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-12T18:19:17.5623279Z\",\"endTime\":\"2021-07-12T18:19:18.6332073Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D94552371AA71C\",\"lastModified\":\"2021-07-12T16:29:26.3764252Z\",\"creationTime\":\"2021-07-12T16:29:26.334413Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-12T16:29:27.4364268Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-12T16:29:26.3764252Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-12T16:29:26.3764252Z\",\"endTime\":\"2021-07-12T16:29:27.4364268Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D945505C21861A\",\"lastModified\":\"2021-07-12T16:16:09.5036954Z\",\"creationTime\":\"2021-07-12T16:16:09.4867365Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-12T16:16:10.5614219Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-12T16:16:09.5036954Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-12T16:16:09.5036954Z\",\"endTime\":\"2021-07-12T16:16:10.5614219Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D9425E4860429C\",\"lastModified\":\"2021-07-08T22:18:15.826294Z\",\"creationTime\":\"2021-07-08T22:18:15.7446637Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-08T22:18:16.8868623Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-08T22:18:15.826294Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-08T22:18:15.826294Z\",\"endTime\":\"2021-07-08T22:18:16.8868623Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D94258AEB8B4D9\",\"lastModified\":\"2021-07-08T21:38:10.5531609Z\",\"creationTime\":\"2021-07-08T21:38:10.4951661Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-08T21:38:11.6399796Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-08T21:38:10.5531609Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-08T21:38:10.5531609Z\",\"endTime\":\"2021-07-08T21:38:11.6399796Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D94256DACA0BAC\",\"lastModified\":\"2021-07-08T21:25:05.493086Z\",\"creationTime\":\"2021-07-08T21:25:05.4560701Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-08T21:25:06.5519151Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-08T21:25:05.493086Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-08T21:25:05.493086Z\",\"endTime\":\"2021-07-08T21:25:06.5519151Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8D9ECF86871CB0E\",\"lastModified\":\"2022-02-11T00:49:49.7968398Z\",\"creationTime\":\"2022-02-11T00:49:49.7778375Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:49:49.7968398Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T00:49:49.7968398Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-Job-canReadFromNode\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode\",\"eTag\":\"0x8D9ECF8598C52F6\",\"lastModified\":\"2022-02-11T00:49:24.8048886Z\",\"creationTime\":\"2022-02-11T00:49:24.6908867Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:49:35.8854922Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T00:49:24.8048886Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T00:49:24.8048886Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-Job-canReadFromTaskFile\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile\",\"eTag\":\"0x8D9ECF8524818B5\",\"lastModified\":\"2022-02-11T00:49:12.6137013Z\",\"creationTime\":\"2022-02-11T00:49:12.5957037Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:49:23.7538763Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T00:49:12.6137013Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T00:49:12.6137013Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8D9ECF862F9E0DC\",\"lastModified\":\"2022-02-11T00:49:40.622358Z\",\"creationTime\":\"2022-02-11T00:49:40.5383569Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-02-11T00:49:42.299477Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T00:49:40.622358Z\",\"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T00:49:40.622358Z\",\"endTime\":\"2022-02-11T00:49:42.299477Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "PUT", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:34 GMT", + "date" : "Fri, 11 Feb 2022 00:49:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD", "retry-after" : "0", - "request-id" : "631a5490-f990-4ef8-98af-936f04a4caee", + "request-id" : "d746afd9-d738-44ac-990e-a14fb5147782", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:35 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:50 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "013e73e4-5a9d-487c-aa64-1bb252f17a67", - "etag" : "0x8D950608650A7D0", + "client-request-id" : "57bd2a2f-0137-42ad-aef0-e84c12a45d26", + "etag" : "0x8D9ECF868B0D1C9", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:34 GMT", + "date" : "Fri, 11 Feb 2022 00:49:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "762cec65-5d17-457b-95d2-7ef95b2da611", + "request-id" : "617b0645-2ce0-45b5-9bf7-821f3b78c784", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:35 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:50 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "4fa604a3-9542-4faf-bb59-dd98a8707c2c", + "client-request-id" : "d9e84311-3f6b-430e-b95e-e6b79abb4ef6", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950608650A7D0", + "etag" : "0x8D9ECF868B0D1C9", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8D950608650A7D0\",\"lastModified\":\"2021-07-26T18:09:35.015112Z\",\"creationTime\":\"2021-07-26T18:09:34.6629492Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:09:34.7239738Z\",\"priority\":1,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:34.7239738Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8D9ECF868B0D1C9\",\"lastModified\":\"2022-02-11T00:49:50.2098889Z\",\"creationTime\":\"2022-02-11T00:49:49.7778375Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:49:49.7968398Z\",\"priority\":1,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T00:49:49.7968398Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:34 GMT", + "date" : "Fri, 11 Feb 2022 00:49:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "512b9b3f-2860-4646-ba88-d0ba012773ba", + "client-request-id" : "2eaded4a-3013-4685-9450-65f2452f0d20", "retry-after" : "0", - "request-id" : "f213f158-e5e3-4645-a3fd-ded4cd829c42", + "request-id" : "7af6fd92-e6b9-408a-b85f-381760bba9d6", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -129,45 +129,45 @@ } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:34 GMT", + "date" : "Fri, 11 Feb 2022 00:49:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "e850e26b-b7d4-4090-adb6-fbc9eafabd04", + "request-id" : "bff208c0-74dd-4f89-859e-e6950a550707", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:35 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:50 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d3a9cded-c5e5-4bf7-b0b0-18b1c441ead3", + "client-request-id" : "cb66b926-ece7-4a46-82dc-41f09e596214", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950608650A7D0", + "etag" : "0x8D9ECF868B0D1C9", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8D950608650A7D0\",\"lastModified\":\"2021-07-26T18:09:35.015112Z\",\"creationTime\":\"2021-07-26T18:09:34.6629492Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-26T18:09:35.197822Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:09:34.7239738Z\",\"priority\":1,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:34.7239738Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8D9ECF868B0D1C9\",\"lastModified\":\"2022-02-11T00:49:50.2098889Z\",\"creationTime\":\"2022-02-11T00:49:49.7778375Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:49:50.4528928Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T00:49:49.7968398Z\",\"priority\":1,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T00:49:49.7968398Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:36 GMT", - "content-length" : "393", + "date" : "Fri, 11 Feb 2022 00:49:50 GMT", + "content-length" : "379", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "b8cbed3d-21b3-4485-b1fd-5ab7e4792abd", + "client-request-id" : "f545c18d-4062-4403-9c31-f142cccbf0e4", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "ae318492-6671-4f02-b9b5-0bd4ec5681a5", + "request-id" : "aa8dae6d-78b5-4c7c-a23f-8b2534b1b891", "StatusCode" : "409", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"JobBeingDeleted\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified job has been marked for deletion and is being garbage collected.\\nRequestId:ae318492-6671-4f02-b9b5-0bd4ec5681a5\\nTime:2021-07-26T18:09:36.3590674Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"JobBeingDeleted\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified job has been marked for deletion and is being garbage collected.\\nRequestId:aa8dae6d-78b5-4c7c-a23f-8b2534b1b891\\nTime:2022-02-11T00:49:51.7105000Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } } ], diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJobSchedule.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJobSchedule.json index 15b2ed49243e..aa3f5776b558 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJobSchedule.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJobSchedule.json @@ -1,43 +1,43 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:35 GMT", + "date" : "Fri, 11 Feb 2022 00:49:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", "retry-after" : "0", - "request-id" : "219ae927-70cb-4835-80dd-79d47576b156", + "request-id" : "3330a85c-7714-4392-95e8-e3ece25f3cea", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:35 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:44 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "27c53741-5bed-48ac-b255-ee6d0cfe88bf", - "etag" : "0x8D9505F6846DDE4", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", + "client-request-id" : "493ad269-7354-425e-a3dc-7a7d9c02473b", + "etag" : "0x8D9ECF8658FF01C", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:35 GMT", - "last-modified" : "Mon, 26 Jul 2021 18:01:35 GMT", + "date" : "Fri, 11 Feb 2022 00:49:44 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "76797be0-63de-43e7-9932-ff2db9277753", - "etag" : "0x8D9505F6846DDE4", + "client-request-id" : "f5cc6310-eab2-48b7-8c08-4b3c0330dc53", + "etag" : "0x8D9ECF8658FF01C", "retry-after" : "0", - "request-id" : "02e4d2ef-b3ba-405a-8f19-da2e3f114a13", + "request-id" : "04f61896-1f97-445d-9049-e06e3dbf728e", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "", @@ -45,104 +45,104 @@ } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:35 GMT", + "date" : "Fri, 11 Feb 2022 00:49:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "a87903d0-065a-4d4d-9e96-ea2b74603e72", + "request-id" : "0677be92-9b60-4a05-b337-9e320c409b8d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:35 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:44 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "aa858798-009d-4cbb-991c-1d466d0fe506", + "client-request-id" : "7fb80c09-8f79-4087-b88c-d5c08baa13e9", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9505F6846DDE4", + "etag" : "0x8D9ECF8658FF01C", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8D9505F6846DDE4\",\"lastModified\":\"2021-07-26T18:01:35.1225828Z\",\"creationTime\":\"2021-07-26T18:01:35.1225828Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:01:35.1225828Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2021-07-26T18:01:33.869Z\",\"doNotRunAfter\":\"2021-07-26T23:01:33.869Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-canCRUD:job-1\",\"id\":\"BatchUser-JobSchedule-canCRUD:job-1\"\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8D9ECF8658FF01C\",\"lastModified\":\"2022-02-11T00:49:44.9612316Z\",\"creationTime\":\"2022-02-11T00:49:44.9612316Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:49:44.9612316Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-02-11T00:49:44.49Z\",\"doNotRunAfter\":\"2022-02-11T05:49:44.49Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-canCRUD:job-1\",\"id\":\"BatchUser-JobSchedule-canCRUD:job-1\"\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules?api-version=2021-06-01.14.0&%24filter=id%20eq%20%27BatchUser-JobSchedule-canCRUD%27", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules?api-version=2022-01-01.15.0&%24filter=id%20eq%20%27BatchUser-JobSchedule-canCRUD%27", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:35 GMT", + "date" : "Fri, 11 Feb 2022 00:49:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "ee25ce6e-b416-4999-be73-2ae2859c6a97", + "client-request-id" : "a63bbe7c-7293-42fd-9bc3-63f34ea470ea", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "dfdb1827-e620-4bce-9ff5-1798b2e0b257", + "request-id" : "dda5db0c-64cc-4e8b-a7d8-1355424bc709", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobschedules\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8D9505F6846DDE4\",\"lastModified\":\"2021-07-26T18:01:35.1225828Z\",\"creationTime\":\"2021-07-26T18:01:35.1225828Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:01:35.1225828Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2021-07-26T18:01:33.869Z\",\"doNotRunAfter\":\"2021-07-26T23:01:33.869Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-canCRUD:job-1\",\"id\":\"BatchUser-JobSchedule-canCRUD:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobschedules\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8D9ECF8658FF01C\",\"lastModified\":\"2022-02-11T00:49:44.9612316Z\",\"creationTime\":\"2022-02-11T00:49:44.9612316Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:49:44.9612316Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-02-11T00:49:44.49Z\",\"doNotRunAfter\":\"2022-02-11T05:49:44.49Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-canCRUD:job-1\",\"id\":\"BatchUser-JobSchedule-canCRUD:job-1\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "PATCH", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:35 GMT", + "date" : "Fri, 11 Feb 2022 00:49:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", "retry-after" : "0", - "request-id" : "46e2dce3-0859-4049-a977-ff29be285f00", + "request-id" : "169c1af4-473d-4a3c-a737-b1b4aa2457d5", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:35 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "b4f2f02c-fab4-4fd5-956b-c812d4ae4619", - "etag" : "0x8D9505F6867AC26", + "client-request-id" : "016c7b1e-0aef-42d0-9ebf-f7930ce8da5a", + "etag" : "0x8D9ECF865DBEF29", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:35 GMT", + "date" : "Fri, 11 Feb 2022 00:49:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "22c66899-2e8a-46e4-baf4-7171b581b7a5", + "request-id" : "d42f8559-b569-49b8-a0db-54fa0f9c6494", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:35 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ef1b9d05-4e8e-4a1d-8b47-7f4344250b3a", + "client-request-id" : "ab2bfe69-c942-470a-8459-fe8bf03895ce", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9505F6867AC26", + "etag" : "0x8D9ECF865DBEF29", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8D9505F6867AC26\",\"lastModified\":\"2021-07-26T18:01:35.3375782Z\",\"creationTime\":\"2021-07-26T18:01:35.1225828Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:01:35.1225828Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2021-07-26T18:01:33.869Z\",\"doNotRunAfter\":\"2021-07-26T23:01:33.869Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-canCRUD:job-1\",\"id\":\"BatchUser-JobSchedule-canCRUD:job-1\"\r\n }\r\n },\"metadata\":[\r\n {\r\n \"name\":\"key1\",\"value\":\"value1\"\r\n }\r\n ]\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8D9ECF865DBEF29\",\"lastModified\":\"2022-02-11T00:49:45.4592809Z\",\"creationTime\":\"2022-02-11T00:49:44.9612316Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:49:44.9612316Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-02-11T00:49:44.49Z\",\"doNotRunAfter\":\"2022-02-11T05:49:44.49Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-canCRUD:job-1\",\"id\":\"BatchUser-JobSchedule-canCRUD:job-1\"\r\n }\r\n },\"metadata\":[\r\n {\r\n \"name\":\"key1\",\"value\":\"value1\"\r\n }\r\n ]\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:35 GMT", + "date" : "Fri, 11 Feb 2022 00:49:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "9105a5ba-a7cc-4cf7-8281-b3817a62a48d", + "client-request-id" : "336b0a4a-1635-4bc5-bdb2-b3fbd2eb77bb", "retry-after" : "0", - "request-id" : "9238119c-84a5-465c-93c6-a3ba1e484aae", + "request-id" : "ae7daf28-b6b3-4378-9388-2466d086e762", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -150,45 +150,45 @@ } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:35 GMT", + "date" : "Fri, 11 Feb 2022 00:49:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "8a23205d-ffea-4461-965c-44b7ded9c1a7", + "request-id" : "cfc8ab5d-a679-4bf8-9256-cd403c6bce5b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:35 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6438f463-01b3-4a46-b530-34660a85f403", + "client-request-id" : "3fc57d1f-2086-441a-acbe-36d1fe7243a7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9505F6867AC26", + "etag" : "0x8D9ECF865DBEF29", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8D9505F6867AC26\",\"lastModified\":\"2021-07-26T18:01:35.3375782Z\",\"creationTime\":\"2021-07-26T18:01:35.1225828Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-26T18:01:35.4152118Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:01:35.1225828Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2021-07-26T18:01:33.869Z\",\"doNotRunAfter\":\"2021-07-26T23:01:33.869Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-canCRUD:job-1\",\"id\":\"BatchUser-JobSchedule-canCRUD:job-1\"\r\n }\r\n },\"metadata\":[\r\n {\r\n \"name\":\"key1\",\"value\":\"value1\"\r\n }\r\n ]\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8D9ECF865DBEF29\",\"lastModified\":\"2022-02-11T00:49:45.4592809Z\",\"creationTime\":\"2022-02-11T00:49:44.9612316Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:49:45.6731554Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T00:49:44.9612316Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-02-11T00:49:44.49Z\",\"doNotRunAfter\":\"2022-02-11T05:49:44.49Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-canCRUD:job-1\",\"id\":\"BatchUser-JobSchedule-canCRUD:job-1\"\r\n }\r\n },\"metadata\":[\r\n {\r\n \"name\":\"key1\",\"value\":\"value1\"\r\n }\r\n ]\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:36 GMT", - "content-length" : "402", + "date" : "Fri, 11 Feb 2022 00:49:46 GMT", + "content-length" : "388", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "aa97e879-aaf2-4be9-9505-c5af3704c381", + "client-request-id" : "f983d6c0-536c-42dc-b343-22c85639da91", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "49c9f37b-136e-4ad5-94cb-453568cb7baf", + "request-id" : "4f00ae4f-a3ec-4c40-b701-e11cd3a17636", "StatusCode" : "409", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"JobScheduleBeingDeleted\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified job schedule has been marked for deletion and is being reclaimed.\\nRequestId:49c9f37b-136e-4ad5-94cb-453568cb7baf\\nTime:2021-07-26T18:01:36.5169719Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"JobScheduleBeingDeleted\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified job schedule has been marked for deletion and is being reclaimed.\\nRequestId:4f00ae4f-a3ec-4c40-b701-e11cd3a17636\\nTime:2022-02-11T00:49:46.8685207Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } } ], diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDLowPriIaaSPool.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDLowPriIaaSPool.json index 19decc5cc182..a1fa5e843d5c 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDLowPriIaaSPool.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDLowPriIaaSPool.json @@ -1,18 +1,18 @@ { "networkCallRecords" : [ { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:39:58 GMT", + "date" : "Fri, 11 Feb 2022 00:50:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "70d9dc2d-936b-4050-bf1f-dc4565835ab4", + "client-request-id" : "8a85f318-4fa5-44d6-9762-1468243c9e9a", "retry-after" : "0", - "request-id" : "4e660f64-0436-4bf5-b857-b1d1b7ddeb71", + "request-id" : "863cdb63-0056-4e69-b2f7-5402b784f842", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", @@ -20,43 +20,43 @@ } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:39:59 GMT", + "date" : "Fri, 11 Feb 2022 00:50:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool", "retry-after" : "0", - "request-id" : "42aa0a8a-eabc-41d4-b425-23234f9efe64", + "request-id" : "97e97845-54cd-487c-8d83-a48887c4eb4a", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:39:59 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:50:03 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e904fc0e-13b5-420c-8dff-05e3a6071d9f", - "etag" : "0x8D9510C69451A84", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool", + "client-request-id" : "2bff6a27-7007-468a-8ed7-56e3330044ca", + "etag" : "0x8D9ECF87050CEDB", + "location" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:39:59 GMT", - "last-modified" : "Tue, 27 Jul 2021 14:39:59 GMT", + "date" : "Fri, 11 Feb 2022 00:50:03 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:50:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "dd63a7e3-8b68-46f3-936b-b004f170a82e", - "etag" : "0x8D9510C69451A84", + "client-request-id" : "a8a06c41-b7cd-4bf2-9b5f-21dd5d056cd5", + "etag" : "0x8D9ECF87050CEDB", "retry-after" : "0", - "request-id" : "d85468b1-39ca-48cb-8dbc-d20833c7b518", + "request-id" : "2c3d07a3-07c0-4a7c-99c3-4e4fef464955", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "", @@ -64,146 +64,146 @@ } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:39:59 GMT", + "date" : "Fri, 11 Feb 2022 00:50:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "4c7d6311-3718-40e6-a388-cfebeaf8b39d", + "request-id" : "5425c7a8-ef3a-4edc-8923-2f2d59ed3edd", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:39:59 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:50:03 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "bf0b808d-b91e-4cb7-8993-ce9325048bc9", + "client-request-id" : "2f914def-30f8-4abc-9dfc-cb11a25749fa", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510C69451A84", + "etag" : "0x8D9ECF87050CEDB", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510C69451A84\",\"lastModified\":\"2021-07-27T14:39:59.72297Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T14:39:59.72297Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:39:59.72297Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9ECF87050CEDB\",\"lastModified\":\"2022-02-11T00:50:03.0024411Z\",\"creationTime\":\"2022-02-11T00:50:03.0024411Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:50:03.0024411Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:50:03.0024411Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:41:59 GMT", + "date" : "Fri, 11 Feb 2022 00:52:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "93596cc5-ea77-46b0-a5ad-49c73ad38778", + "request-id" : "ea712e79-2f4b-4b56-a95b-b6410ba7b371", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:39:59 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:50:03 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "88cd4171-75b9-48ef-8eac-ce47b13da903", + "client-request-id" : "6e82e60f-3af3-474d-ac19-2fa5490519bc", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510C69451A84", + "etag" : "0x8D9ECF87050CEDB", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510C69451A84\",\"lastModified\":\"2021-07-27T14:39:59.72297Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T14:39:59.72297Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-27T14:41:01.890147Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9ECF87050CEDB\",\"lastModified\":\"2022-02-11T00:50:03.0024411Z\",\"creationTime\":\"2022-02-11T00:50:03.0024411Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:50:03.0024411Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-02-11T00:51:00.7904064Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:41:59 GMT", + "date" : "Fri, 11 Feb 2022 00:52:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "1ba36350-23d3-497f-98bd-1ee3afd4a675", + "client-request-id" : "5096b36f-32ce-4e26-95a9-2e99a5bfc661", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "cb4a1fb4-c81b-40fd-b876-28b18b67af4f", + "request-id" : "f94d85fe-5145-4034-9d7c-17b07f8ad691", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_16f982f7c85f895118d262afdc4813d279d46b98dd79dc8b846f558e52335c1c_p\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_16f982f7c85f895118d262afdc4813d279d46b98dd79dc8b846f558e52335c1c_p\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-27T14:41:28.177831Z\",\"lastBootTime\":\"2021-07-27T14:41:28.028217Z\",\"allocationTime\":\"2021-07-27T14:41:01.6047526Z\",\"ipAddress\":\"10.16.0.5\",\"affinityId\":\"TVM:tvmps_16f982f7c85f895118d262afdc4813d279d46b98dd79dc8b846f558e52335c1c_p\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":false,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"testinbound.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.84.12.161\",\"publicFQDN\":\"dns1183bf63-975f-49c0-8601-b0f95a9a3cfd-azurebatch-cloudservice.eastus.cloudapp.azure.com\",\"frontendPort\":60000,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.84.12.161\",\"publicFQDN\":\"dns1183bf63-975f-49c0-8601-b0f95a9a3cfd-azurebatch-cloudservice.eastus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2021-07-27T14:41:28.028217Z\",\"version\":\"1.9.13\"\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_34dfffa5fda3c4bbdf1eef1b90291e471ececd3df3f9fcc0f9c274506e1a44e5_p\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_34dfffa5fda3c4bbdf1eef1b90291e471ececd3df3f9fcc0f9c274506e1a44e5_p\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-27T14:41:17.06474Z\",\"lastBootTime\":\"2021-07-27T14:41:16.964231Z\",\"allocationTime\":\"2021-07-27T14:41:01.6047526Z\",\"ipAddress\":\"10.16.0.6\",\"affinityId\":\"TVM:tvmps_34dfffa5fda3c4bbdf1eef1b90291e471ececd3df3f9fcc0f9c274506e1a44e5_p\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":false,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"testinbound.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.84.12.161\",\"publicFQDN\":\"dns1183bf63-975f-49c0-8601-b0f95a9a3cfd-azurebatch-cloudservice.eastus.cloudapp.azure.com\",\"frontendPort\":60001,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.84.12.161\",\"publicFQDN\":\"dns1183bf63-975f-49c0-8601-b0f95a9a3cfd-azurebatch-cloudservice.eastus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2021-07-27T14:41:16.964231Z\",\"version\":\"1.9.13\"\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_85b017e0d663fc8b86c7fbb25b5fab0f4e46709a82135826f92f3ae64f8c05cd_p\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_85b017e0d663fc8b86c7fbb25b5fab0f4e46709a82135826f92f3ae64f8c05cd_p\",\"state\":\"creating\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-02-11T00:50:59.9013986Z\",\"allocationTime\":\"2022-02-11T00:50:59.9024Z\",\"ipAddress\":\"10.0.1.7\",\"affinityId\":\"TVM:tvmps_85b017e0d663fc8b86c7fbb25b5fab0f4e46709a82135826f92f3ae64f8c05cd_p\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":false,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"testinbound.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.85.161.125\",\"publicFQDN\":\"dns12111c05-3bcb-4376-9907-31bd8e14e601-azurebatch-cloudservice.eastus.cloudapp.azure.com\",\"frontendPort\":60001,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.85.161.125\",\"publicFQDN\":\"dns12111c05-3bcb-4376-9907-31bd8e14e601-azurebatch-cloudservice.eastus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n }\r\n ]\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\",\"exactVersion\":\"18.04.202201180\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_c503892e6e2fa151ad861a1cd4c03f9786315e1529ce8af63cf8d99c78030368_p\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_c503892e6e2fa151ad861a1cd4c03f9786315e1529ce8af63cf8d99c78030368_p\",\"state\":\"creating\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-02-11T00:50:59.9024Z\",\"allocationTime\":\"2022-02-11T00:50:59.9024Z\",\"ipAddress\":\"10.0.1.6\",\"affinityId\":\"TVM:tvmps_c503892e6e2fa151ad861a1cd4c03f9786315e1529ce8af63cf8d99c78030368_p\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":false,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"testinbound.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.85.161.125\",\"publicFQDN\":\"dns12111c05-3bcb-4376-9907-31bd8e14e601-azurebatch-cloudservice.eastus.cloudapp.azure.com\",\"frontendPort\":60000,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.85.161.125\",\"publicFQDN\":\"dns12111c05-3bcb-4376-9907-31bd8e14e601-azurebatch-cloudservice.eastus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\",\"exactVersion\":\"18.04.202201180\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/nodecounts?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/nodecounts?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:41:59 GMT", + "date" : "Fri, 11 Feb 2022 00:52:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "1a073819-863a-4a52-a738-c36b65f57c96", + "client-request-id" : "1ca396d9-1b99-4c21-ae6e-7446ab4c01b9", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "3a784ad4-5975-46be-bd28-0e2811bc88f0", + "request-id" : "04193885-4c06-4cfa-8fa5-d86a1cd47386", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#poolnodecounts\",\"value\":[\r\n {\r\n \"poolId\":\"BatchUser-canCRUDLowPri-testPool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":0\r\n },\"lowPriority\":{\r\n \"creating\":0,\"idle\":2,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":2\r\n }\r\n },{\r\n \"poolId\":\"BatchUser-testpool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":1,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":1\r\n },\"lowPriority\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":0\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#poolnodecounts\",\"value\":[\r\n {\r\n \"poolId\":\"BatchUser-canCRUDLowPri-testPool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":0\r\n },\"lowPriority\":{\r\n \"creating\":2,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":2\r\n }\r\n },{\r\n \"poolId\":\"BatchUser-testIaaSpool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":1,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":1\r\n },\"lowPriority\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":0\r\n }\r\n },{\r\n \"poolId\":\"BatchUser-testpool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":1,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":1\r\n },\"lowPriority\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":0\r\n }\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/resize?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/resize?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:41:59 GMT", + "date" : "Fri, 11 Feb 2022 00:52:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/resize", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/resize", "retry-after" : "0", - "request-id" : "3a1a084f-02d0-41f0-8a05-da191046cf27", + "request-id" : "eaf8d191-0111-43e0-ac5b-32106a7df3a7", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:42:00 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:52:03 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "02366224-bcc6-4ff4-854d-30639bceae37", - "etag" : "0x8D9510CB10EE285", + "client-request-id" : "cbb60e93-6dc8-4d7e-9558-bf7a3bfcbaf8", + "etag" : "0x8D9ECF8B85644E4", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:41:59 GMT", + "date" : "Fri, 11 Feb 2022 00:52:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "a346ac27-ac5f-4027-8cdd-6ac48e30b834", + "request-id" : "522ad60d-4910-48ac-aa1e-c2c995af9071", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:42:00 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:52:03 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "da0aa943-bc09-4fc9-80f8-ac195a994d3d", + "client-request-id" : "d862242d-8b04-443b-9e58-f8410d2c0a8b", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510CB10EE285", + "etag" : "0x8D9ECF8B85644E4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510CB10EE285\",\"lastModified\":\"2021-07-27T14:42:00.1635973Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T14:39:59.72297Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:42:00.1635973Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9ECF8B85644E4\",\"lastModified\":\"2022-02-11T00:52:03.834186Z\",\"creationTime\":\"2022-02-11T00:50:03.0024411Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:50:03.0024411Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:52:03.834186Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:41:59 GMT", + "date" : "Fri, 11 Feb 2022 00:52:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "aa2e6c8b-a3fd-43ad-8999-9e4ae8b5dfab", + "client-request-id" : "961545f7-3c7c-4164-8689-60db9c784bd1", "retry-after" : "0", - "request-id" : "2c839833-3f40-44e8-bed8-8f49ace75370", + "request-id" : "a2f4d7f0-c293-41df-801a-216b74bbdeff", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -211,215 +211,193 @@ } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:41:59 GMT", + "date" : "Fri, 11 Feb 2022 00:52:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "392785b2-fd61-40e2-80bf-a3a069b8806e", + "request-id" : "c53c02a5-f809-4c69-98f3-507faeb2ec9f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:42:00 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:52:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "4e52ea96-6bc8-4ffd-ac78-d2ce3bd7271b", + "client-request-id" : "b2a6dfe6-b0a7-4166-8235-9018d82426d2", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510CB1229179", + "etag" : "0x8D9ECF8B87DA322", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510CB1229179\",\"lastModified\":\"2021-07-27T14:42:00.2925945Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:42:00.2925945Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:42:00.2925945Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9ECF8B87DA322\",\"lastModified\":\"2022-02-11T00:52:04.092189Z\",\"creationTime\":\"2022-02-11T00:50:03.0024411Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:52:04.092189Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:52:04.092189Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:42:15 GMT", + "date" : "Fri, 11 Feb 2022 00:52:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "e6615418-cb02-4870-9437-2baa3896bfd2", + "request-id" : "1870fcc1-6dbe-4c00-b701-492af643d22f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:42:00 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:52:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9b352b9e-8b93-42e2-9ba4-4bc2064d9375", + "client-request-id" : "82fcb627-9b4b-4169-8f2a-c96216cabd44", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510CB1229179", + "etag" : "0x8D9ECF8B87DA322", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510CB1229179\",\"lastModified\":\"2021-07-27T14:42:00.2925945Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:42:00.2925945Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:42:00.4255955Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9ECF8B87DA322\",\"lastModified\":\"2022-02-11T00:52:04.092189Z\",\"creationTime\":\"2022-02-11T00:50:03.0024411Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:52:04.092189Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:52:09.5214729Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:42:30 GMT", + "date" : "Fri, 11 Feb 2022 00:52:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "c5bda201-6202-4c8e-8a66-4158ca09fecf", + "request-id" : "eeb993e0-fdae-4a50-8166-90265189fccf", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:42:00 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:52:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "41b69c0d-9306-4402-a729-9ca3d75a8354", + "client-request-id" : "439e8c81-785c-4e8f-aab4-3f2b638970a2", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510CB1229179", + "etag" : "0x8D9ECF8B87DA322", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510CB1229179\",\"lastModified\":\"2021-07-27T14:42:00.2925945Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:42:00.2925945Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:42:00.4255955Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9ECF8B87DA322\",\"lastModified\":\"2022-02-11T00:52:04.092189Z\",\"creationTime\":\"2022-02-11T00:50:03.0024411Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:52:04.092189Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:52:09.5214729Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:42:45 GMT", + "date" : "Fri, 11 Feb 2022 00:52:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "550fc093-6bd4-4b60-b6fa-66e754e82aaa", + "request-id" : "03a76a48-4946-4a85-987e-d8ece5bc11dd", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:42:00 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:52:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6276d2cc-00fe-4d7b-8f80-63b9df8814cd", + "client-request-id" : "515a15a9-dfdc-4785-af3d-de3423a85c1a", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510CB1229179", + "etag" : "0x8D9ECF8B87DA322", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510CB1229179\",\"lastModified\":\"2021-07-27T14:42:00.2925945Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:42:00.2925945Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:42:00.4255955Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9ECF8B87DA322\",\"lastModified\":\"2022-02-11T00:52:04.092189Z\",\"creationTime\":\"2022-02-11T00:50:03.0024411Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:52:04.092189Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:52:09.5214729Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:43:00 GMT", + "date" : "Fri, 11 Feb 2022 00:53:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "bb44f5d7-8b60-4cbc-a45d-3249b4b37ee6", + "request-id" : "ea05590a-97f5-471d-836b-48f6d5dfeb55", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:42:00 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:52:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d708e3b5-7a81-4cfa-bfb4-57fd79eaf27a", + "client-request-id" : "c43956b4-0bec-43f2-a0a5-9c7c46cb6e91", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510CB1229179", + "etag" : "0x8D9ECF8B87DA322", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510CB1229179\",\"lastModified\":\"2021-07-27T14:42:00.2925945Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:42:00.2925945Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:42:00.4255955Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9ECF8B87DA322\",\"lastModified\":\"2022-02-11T00:52:04.092189Z\",\"creationTime\":\"2022-02-11T00:50:03.0024411Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:52:04.092189Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:52:09.5214729Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:43:15 GMT", + "date" : "Fri, 11 Feb 2022 00:53:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "2e736a59-80f4-469d-aebd-a355a910dc5e", + "request-id" : "06c617e5-2172-4cc5-9989-7666b732007d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:42:00 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:52:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ad14bbb7-339d-45f3-97fe-b1bc98595a46", + "client-request-id" : "4ba91cfd-33f5-4429-be64-eb9b4df238f4", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510CB1229179", + "etag" : "0x8D9ECF8B87DA322", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510CB1229179\",\"lastModified\":\"2021-07-27T14:42:00.2925945Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:42:00.2925945Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:42:00.4255955Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9ECF8B87DA322\",\"lastModified\":\"2022-02-11T00:52:04.092189Z\",\"creationTime\":\"2022-02-11T00:50:03.0024411Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:52:04.092189Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:52:09.5214729Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:43:30 GMT", + "date" : "Fri, 11 Feb 2022 00:53:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "ffda361a-2705-4d09-92be-40cccd581287", + "request-id" : "dcf29d48-425c-4b3b-89d8-ca337635a4d7", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:42:00 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:52:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2ecebedf-8dd0-4064-830e-456cdbbffcdb", + "client-request-id" : "9687f2a0-0cda-45ba-b7c1-8ae07dd9f431", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510CB1229179", + "etag" : "0x8D9ECF8B87DA322", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510CB1229179\",\"lastModified\":\"2021-07-27T14:42:00.2925945Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:42:00.2925945Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:42:00.4255955Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9ECF8B87DA322\",\"lastModified\":\"2022-02-11T00:52:04.092189Z\",\"creationTime\":\"2022-02-11T00:50:03.0024411Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:52:04.092189Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:52:09.5214729Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:43:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "retry-after" : "0", - "request-id" : "8c445466-6920-4435-a2f5-0d1e887d865c", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:42:00 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "9d5ca2cd-648e-4f15-a857-2cfbacb6e971", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510CB1229179", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8D9510CB1229179\",\"lastModified\":\"2021-07-27T14:42:00.2925945Z\",\"creationTime\":\"2021-07-27T14:39:59.72297Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:42:00.2925945Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:42:00.4255955Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \"inboundNATPools\":[\r\n {\r\n \"name\":\"testinbound\",\"protocol\":\"tcp\",\"backendPort\":5000,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":60040\r\n }\r\n ]\r\n }\r\n }\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:00 GMT", - "content-length" : "346", + "date" : "Fri, 11 Feb 2022 00:53:54 GMT", + "content-length" : "332", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "d15a0e08-4114-4632-ad29-462be1f92081", + "client-request-id" : "c35213dd-aa7c-4f43-9b0f-23f012c28ce4", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "6e0191b0-e5e4-4022-9ef0-9d500e4e319f", + "request-id" : "da451b13-4fe7-4797-aeaa-569ef0805d16", "StatusCode" : "404", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool does not exist.\\nRequestId:6e0191b0-e5e4-4022-9ef0-9d500e4e319f\\nTime:2021-07-27T14:44:00.8461211Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool does not exist.\\nRequestId:da451b13-4fe7-4797-aeaa-569ef0805d16\\nTime:2022-02-11T00:53:54.5241263Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:00 GMT", + "date" : "Fri, 11 Feb 2022 00:53:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "7f0cc82d-f6b5-40aa-8b44-834a83d3669d", + "client-request-id" : "797f60f2-b3d6-428b-bfe2-eff6de3b6e3b", "retry-after" : "0", - "request-id" : "6578bfb2-3cf3-4e55-8c9a-bab207d83a91", + "request-id" : "8263a3b3-5e41-4597-9594-b9692d960e65", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDLowPriPaaSPool.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDLowPriPaaSPool.json index 02e4aaa5c4da..379080590e72 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDLowPriPaaSPool.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDLowPriPaaSPool.json @@ -1,18 +1,18 @@ { "networkCallRecords" : [ { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:38 GMT", + "date" : "Fri, 11 Feb 2022 00:58:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "d1623d9a-215a-4453-b648-e6475d538fca", + "client-request-id" : "6797a949-d5f7-437d-ae37-c51f5e49c419", "retry-after" : "0", - "request-id" : "6336d5db-c570-4803-a7a4-44d11b100451", + "request-id" : "f3796a72-fbf3-408b-b9d2-328bcfa9f0b0", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", @@ -20,43 +20,43 @@ } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:38 GMT", + "date" : "Fri, 11 Feb 2022 00:58:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4", "retry-after" : "0", - "request-id" : "b6444bf1-4a7e-4d73-84d4-6a15733615b1", + "request-id" : "f91add13-4691-4e86-bd92-ca8e302eb60d", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:44:38 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:58:06 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "b9308cfc-74a3-4c02-9234-b0b16d9ed5ac", - "etag" : "0x8D9510D0F2BE32F", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4", + "client-request-id" : "9e48261e-bea5-41d8-a547-69bd124c2832", + "etag" : "0x8D9ECF9903EE73C", + "location" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:38 GMT", - "last-modified" : "Tue, 27 Jul 2021 14:44:38 GMT", + "date" : "Fri, 11 Feb 2022 00:58:05 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:58:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "3b392d18-4837-4fee-97b8-3d72fc79f095", - "etag" : "0x8D9510D0F2BE32F", + "client-request-id" : "4bb2a049-a937-40ae-9a95-b6782af5141b", + "etag" : "0x8D9ECF9903EE73C", "retry-after" : "0", - "request-id" : "41060047-bee3-4da9-a3a1-ab2f2b1d4627", + "request-id" : "416320a4-c614-47c6-bb68-e6d04b2b63be", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "", @@ -64,586 +64,454 @@ } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:38 GMT", + "date" : "Fri, 11 Feb 2022 00:58:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "ef115751-bef3-490b-ad8f-0ffa9be41573", + "request-id" : "e5706190-f05e-4ccd-8cd7-cacf47e43415", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:44:38 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:58:06 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "309ebcf3-7059-4c9b-a563-484146c5168b", + "client-request-id" : "6ce13be7-1d9f-499b-ba38-d984be2016a4", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D0F2BE32F", + "etag" : "0x8D9ECF9903EE73C", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D0F2BE32F\",\"lastModified\":\"2021-07-27T14:44:38.0594991Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T14:44:38.0594991Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:44:38.0594991Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9903EE73C\",\"lastModified\":\"2022-02-11T00:58:06.0689212Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:45:08 GMT", + "date" : "Fri, 11 Feb 2022 00:58:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "8181f3ab-cd72-4cba-87a2-9e9c1af86a8e", + "request-id" : "34be6931-68c6-4f1e-9fc9-99e126148ac9", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:44:38 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:58:06 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "34c5f1b5-5b14-4657-936b-2e8853768a99", + "client-request-id" : "ca9ab3e9-29f6-4928-ae8a-31e01f9e7d2c", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D0F2BE32F", + "etag" : "0x8D9ECF9903EE73C", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D0F2BE32F\",\"lastModified\":\"2021-07-27T14:44:38.0594991Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T14:44:38.0594991Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:44:38.0594991Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9903EE73C\",\"lastModified\":\"2022-02-11T00:58:06.0689212Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:45:38 GMT", + "date" : "Fri, 11 Feb 2022 00:59:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "defba4f2-ca56-4491-bf9a-99302f1302fe", + "request-id" : "4ddce706-95f0-4397-9d06-268c91deee1e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:44:38 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:58:06 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "320aec29-a72c-47a6-902c-9a82df1834a6", + "client-request-id" : "d0c4331b-f29a-4c98-ae75-3ad09b74b72d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D0F2BE32F", + "etag" : "0x8D9ECF9903EE73C", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D0F2BE32F\",\"lastModified\":\"2021-07-27T14:44:38.0594991Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T14:44:38.0594991Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:44:38.0594991Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9903EE73C\",\"lastModified\":\"2022-02-11T00:58:06.0689212Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:46:08 GMT", + "date" : "Fri, 11 Feb 2022 00:59:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "b447ac37-9f0d-41a5-84dd-a74d7549d0e3", + "request-id" : "08f45dc6-da9d-478a-8597-0f76057144db", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:44:38 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:58:06 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "bd446a40-5adb-4515-b447-f04ff269d1f5", + "client-request-id" : "4174f54a-c02a-4f2f-a5a2-ab1a305a575f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D0F2BE32F", + "etag" : "0x8D9ECF9903EE73C", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D0F2BE32F\",\"lastModified\":\"2021-07-27T14:44:38.0594991Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T14:44:38.0594991Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:05.9858255Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" - } - }, { - "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4/resize?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 27 Jul 2021 14:46:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4/resize", - "retry-after" : "0", - "request-id" : "c1b79b2b-0d2f-4400-b7a2-4444b51f43df", - "StatusCode" : "202", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "905b1b56-f2c0-4b8f-9170-abba2ae63309", - "etag" : "0x8D9510D44FF15D5", - "dataserviceversion" : "3.0", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 27 Jul 2021 14:46:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "retry-after" : "0", - "request-id" : "0b9c2289-03ce-4514-ac6f-c728aecd9c3b", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "fc788c13-7d62-49da-86e3-93e81ffb4b6a", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D44FF15D5", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D44FF15D5\",\"lastModified\":\"2021-07-27T14:46:08.3628501Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T14:44:38.0594991Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.3628501Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" - } - }, { - "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 27 Jul 2021 14:46:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "x-content-type-options" : "nosniff", - "client-request-id" : "5d2de434-4aae-434f-8ff5-298be6a0c0f2", - "retry-after" : "0", - "request-id" : "1c1cde5d-caaf-4e7b-952d-bcb3b07f9dee", - "StatusCode" : "202", - "dataserviceversion" : "3.0", - "Body" : "", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 27 Jul 2021 14:46:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "retry-after" : "0", - "request-id" : "374736a2-f353-4e85-acf5-d24ee5d4b180", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "d81225b9-3f65-4190-b033-afab286bc4f8", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9903EE73C\",\"lastModified\":\"2022-02-11T00:58:06.0689212Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:46:23 GMT", + "date" : "Fri, 11 Feb 2022 01:00:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "5cb3562a-b4a2-469d-82f3-f4450837dc64", + "request-id" : "8f2ec8f7-1b29-468f-8482-253318056fe8", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:58:06 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "63f382f9-dcad-44b5-9755-81712398d5e9", + "client-request-id" : "7dcffb2f-26a9-49d3-96a6-a7fe5c383bc5", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9903EE73C", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9903EE73C\",\"lastModified\":\"2022-02-11T00:58:06.0689212Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:46:38 GMT", + "date" : "Fri, 11 Feb 2022 01:00:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "aca72925-c6f5-4b9e-91fa-eba14a1255d4", + "request-id" : "6fd3d890-82bc-43f6-96ff-0d2ae5393d10", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:58:06 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "56a78a8c-26fc-46a5-8d63-9e027b63f454", + "client-request-id" : "00c769ff-5db5-4c6d-830b-a2f89ab40a57", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9903EE73C", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9903EE73C\",\"lastModified\":\"2022-02-11T00:58:06.0689212Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:29.4669864Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { - "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 27 Jul 2021 14:46:53 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "retry-after" : "0", - "request-id" : "0f05b821-7f05-4984-a64f-bf3de9f7f196", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "d10a3f62-461f-474b-be72-4a77cd44de81", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Method" : "POST", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4/resize?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", + "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:47:08 GMT", + "date" : "Fri, 11 Feb 2022 01:00:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4/resize", "retry-after" : "0", - "request-id" : "8a90b1be-eb8b-4772-b696-0c0518fcccc1", - "StatusCode" : "200", + "request-id" : "479bd207-2b33-4a8b-ad9d-699c057d5ab5", + "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ded6235a-d7d4-4649-9ed5-7cd3027f9eb5", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "client-request-id" : "4d0e5430-f59f-4959-9907-c9e01b163806", + "etag" : "0x8D9ECF9EA42F455", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:47:24 GMT", + "date" : "Fri, 11 Feb 2022 01:00:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "829207c9-3d89-4c71-9d4b-25181d2c2054", + "request-id" : "5f998333-5dcb-4197-aab2-e9714570427e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "7a440163-bca7-4513-8c8a-5f176dabd55f", + "client-request-id" : "dac79936-8e50-40a4-bfe7-cf5e8d6d2a5c", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA42F455", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA42F455\",\"lastModified\":\"2022-02-11T01:00:37.0904149Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:58:06.0689212Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:37.0904149Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { - "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Method" : "DELETE", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:47:39 GMT", + "date" : "Fri, 11 Feb 2022 01:00:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "retry-after" : "0", - "request-id" : "73e3b510-2903-469f-aca0-d8bb49c04bac", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "31a3e0d0-886a-4363-8a3d-0585b9dae3ea", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 27 Jul 2021 14:47:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", + "client-request-id" : "af45bf6a-0e89-4c11-aca5-5bb8cfec661f", "retry-after" : "0", - "request-id" : "c2f1afaf-7137-4d06-8a66-727428d6ee83", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "0d0bc3cd-7960-4115-a21e-4620988e44d1", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "request-id" : "51779867-7283-45ce-9919-4510a9c6441e", + "StatusCode" : "202", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:48:09 GMT", + "date" : "Fri, 11 Feb 2022 01:00:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "70a5f862-e739-4993-b016-f799bec329b0", + "request-id" : "9e821968-c768-45c1-a4ca-9d7660156c7f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "969986fc-aa20-47bd-92f1-25c11136d009", + "client-request-id" : "34861c66-d746-4916-9e01-1c8e0af2bff5", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA679353", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA679353\",\"lastModified\":\"2022-02-11T01:00:37.3304147Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:48:24 GMT", + "date" : "Fri, 11 Feb 2022 01:00:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "129ec068-ef80-4840-ae3e-4bfbbcebc765", + "request-id" : "42e2488b-d7d6-4df9-87fd-e368ff09b34d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "bf5a2c49-386b-4dc6-b843-7f9025480313", + "client-request-id" : "ca617e68-30c1-42a7-a0ef-6d67e651fc3f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA679353", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA679353\",\"lastModified\":\"2022-02-11T01:00:37.3304147Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:47.7308043Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:48:39 GMT", + "date" : "Fri, 11 Feb 2022 01:01:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "7bc82730-da3b-4c04-bc4d-35e80231a719", + "request-id" : "a5154d5d-14cf-47c7-bf1e-10feaa3fbe2b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "1e29b2d0-946f-4082-a942-a9b913227494", + "client-request-id" : "58ed5d18-d5bb-4e88-96ae-e0991d042013", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA679353", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA679353\",\"lastModified\":\"2022-02-11T01:00:37.3304147Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:47.7308043Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:48:54 GMT", + "date" : "Fri, 11 Feb 2022 01:01:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "e9873c15-f73d-419c-b1ba-9ec191ed7675", + "request-id" : "0bc74a86-0a4f-470b-b4da-eea57da4df0d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ce247705-8af8-432e-8514-6c33e2211246", + "client-request-id" : "31027f0f-8606-4cf6-ab7c-9a1f9fdb1f59", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA679353", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA679353\",\"lastModified\":\"2022-02-11T01:00:37.3304147Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:47.7308043Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:49:09 GMT", + "date" : "Fri, 11 Feb 2022 01:01:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "61f666bd-4207-4667-bea8-ea45210a4631", + "request-id" : "b80983fe-9883-4a71-a051-e10944d17244", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "246f9ffa-1179-4946-9be4-516944b0ad80", + "client-request-id" : "8362d2fd-d299-4b03-8299-99c73a9904d9", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA679353", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA679353\",\"lastModified\":\"2022-02-11T01:00:37.3304147Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:47.7308043Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:49:24 GMT", + "date" : "Fri, 11 Feb 2022 01:01:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "67e20f32-6ad2-434f-95e9-7a7f9d437f99", + "request-id" : "a31cbf26-060c-4e38-ae3e-4b6219ce053a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "08b2f468-8436-4662-892c-70de94ede9c0", + "client-request-id" : "4d37bc2d-f25b-4f30-b955-06a1a22a4700", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA679353", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA679353\",\"lastModified\":\"2022-02-11T01:00:37.3304147Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:47.7308043Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:49:40 GMT", + "date" : "Fri, 11 Feb 2022 01:02:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "63ac0c2f-7020-4603-befb-40d5d57c02d3", + "request-id" : "bf9b9398-07ba-47ea-b3a1-cc2ad09f0684", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "be9b7d22-6608-4680-9b61-70dad760c8b5", + "client-request-id" : "b5209f18-e250-43d3-b115-947ad278a52c", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA679353", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA679353\",\"lastModified\":\"2022-02-11T01:00:37.3304147Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:47.7308043Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:49:55 GMT", + "date" : "Fri, 11 Feb 2022 01:02:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "912b2468-fd38-4eb4-ba49-9ca2baa6964c", + "request-id" : "8f8bd7b4-07e4-46e3-80eb-b336721f3ea3", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2ebf9d35-f2f1-4a79-a588-5ced788efb6b", + "client-request-id" : "a0956b16-9f81-4fb4-aa00-a3803dca718f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA679353", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA679353\",\"lastModified\":\"2022-02-11T01:00:37.3304147Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:47.7308043Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:50:10 GMT", + "date" : "Fri, 11 Feb 2022 01:02:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "35c8b987-f003-41fb-9caa-5e6427f875ba", + "request-id" : "31be695f-12ae-4a31-8219-cf7f5c0a763c", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "21d72a0e-6aad-40e6-a713-64d2f498285a", + "client-request-id" : "546534af-45f3-4ecc-a142-5c491a24d7d7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA679353", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA679353\",\"lastModified\":\"2022-02-11T01:00:37.3304147Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:47.7308043Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:50:25 GMT", + "date" : "Fri, 11 Feb 2022 01:02:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "8fb177cf-4bd1-4cba-8989-cfbee373135d", + "request-id" : "a6f252c2-306f-4caf-9f41-2deaed97b8b7", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:46:08 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:00:37 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "de3d054b-2871-407b-ab4a-ae86de39b63a", + "client-request-id" : "7b274417-6d48-4f05-8e54-7af53225ff21", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510D450ECD3A", + "etag" : "0x8D9ECF9EA679353", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9510D450ECD3A\",\"lastModified\":\"2021-07-27T14:46:08.465849Z\",\"creationTime\":\"2021-07-27T14:44:38.0594991Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T14:46:08.465849Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:46:08.5869452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8D9ECF9EA679353\",\"lastModified\":\"2022-02-11T01:00:37.3304147Z\",\"creationTime\":\"2022-02-11T00:58:06.0689212Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T01:00:37.3304147Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T01:00:47.7308043Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:50:40 GMT", - "content-length" : "346", + "date" : "Fri, 11 Feb 2022 01:03:07 GMT", + "content-length" : "332", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "a0cc8ea7-521c-4c73-9cd1-25d005d2aa2b", + "client-request-id" : "37ad5e42-251e-46bb-8d44-17baf27085f8", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "eee0eb45-237e-474b-994f-d452e7588443", + "request-id" : "b8d80191-6e85-4733-b2b5-59a19add5dcd", "StatusCode" : "404", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool does not exist.\\nRequestId:eee0eb45-237e-474b-994f-d452e7588443\\nTime:2021-07-27T14:50:40.2893132Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool does not exist.\\nRequestId:b8d80191-6e85-4733-b2b5-59a19add5dcd\\nTime:2022-02-11T01:03:08.5498184Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:50:40 GMT", + "date" : "Fri, 11 Feb 2022 01:03:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "6f1964c9-e19b-420a-8a9e-0679702e64a4", + "client-request-id" : "e645f2df-c4e6-4e52-a848-534df3b43827", "retry-after" : "0", - "request-id" : "4f88e5e2-467d-47b6-890f-91d2ecb72738", + "request-id" : "af7af655-1bce-41a2-9d15-9b73a74a465b", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDPaaSPool.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDPaaSPool.json index 51254706bcb2..be10b3e6b62f 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDPaaSPool.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDPaaSPool.json @@ -1,18 +1,18 @@ { "networkCallRecords" : [ { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:08:17 GMT", + "date" : "Fri, 11 Feb 2022 00:54:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "cf9ca93d-d025-466c-a56d-612eb3710036", + "client-request-id" : "22215a05-a398-4724-afbf-17ec99e5f5dc", "retry-after" : "0", - "request-id" : "1ba08efb-b672-4334-a126-55fdd4758137", + "request-id" : "398d8311-a79d-4d99-b2ae-39962e1859bc", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", @@ -20,43 +20,43 @@ } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:08:17 GMT", + "date" : "Fri, 11 Feb 2022 00:54:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS", "retry-after" : "0", - "request-id" : "bca6b9fb-cd10-400e-b5d4-e3db0888b6a2", + "request-id" : "6daeca02-ced2-452c-bc37-0095b17b24e7", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:08:17 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:54:00 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ca502899-4f76-455b-85e7-3af6b4b06582", - "etag" : "0x8D95131E43A651B", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS", + "client-request-id" : "4223d965-bf7f-478f-8052-085aeb0b7c63", + "etag" : "0x8D9ECF8FDFB2C20", + "location" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:08:17 GMT", - "last-modified" : "Tue, 27 Jul 2021 19:08:17 GMT", + "date" : "Fri, 11 Feb 2022 00:54:00 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:54:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "2b599cdf-d361-47bb-8ed2-96e3743f3c72", - "etag" : "0x8D95131E43A651B", + "client-request-id" : "39341df2-a294-456d-bb46-15310cef109c", + "etag" : "0x8D9ECF8FDFB2C20", "retry-after" : "0", - "request-id" : "e76c2cb7-ff73-48a2-a8f4-8383b1b639fb", + "request-id" : "d57fd3dc-7525-4f78-b8ca-039a1dcfa0e3", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "", @@ -64,301 +64,279 @@ } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:08:17 GMT", + "date" : "Fri, 11 Feb 2022 00:54:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "c768777d-438b-4668-af18-3780a349d1db", + "request-id" : "5aca32f0-f403-475a-a0d3-ba1057e06f31", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:08:17 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:54:00 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "8301b4ee-438e-4de5-9e4c-6e1facc350aa", + "client-request-id" : "f207dee3-7eb8-4eff-8e1f-0f69318ec0c0", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95131E43A651B", + "etag" : "0x8D9ECF8FDFB2C20", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95131E43A651B\",\"lastModified\":\"2021-07-27T19:08:17.3915419Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF8FDFB2C20\",\"lastModified\":\"2022-02-11T00:54:00.6776864Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:08:47 GMT", + "date" : "Fri, 11 Feb 2022 00:54:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "b3c016cc-5102-4a3b-9aab-655ca5a805f2", + "request-id" : "8bf49988-f8c7-4acd-9845-e0e34c6515bc", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:08:17 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:54:00 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "600c6b7b-dc3d-4ba2-8a18-0d53071a5f9e", + "client-request-id" : "0ea9b63c-caa5-4a45-89c7-0519ffa53ebc", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95131E43A651B", + "etag" : "0x8D9ECF8FDFB2C20", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95131E43A651B\",\"lastModified\":\"2021-07-27T19:08:17.3915419Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF8FDFB2C20\",\"lastModified\":\"2022-02-11T00:54:00.6776864Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:09:17 GMT", + "date" : "Fri, 11 Feb 2022 00:55:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "00bfe74f-de06-4638-b342-ab7ecab24f53", + "request-id" : "6c874393-097d-4c64-a6a6-fa624b20b2c7", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:08:17 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:54:00 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "815a597b-07c8-4b66-9cf6-46be0906a342", + "client-request-id" : "f2cd35ec-a9fc-4df5-b138-b5f9b6c47f61", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95131E43A651B", + "etag" : "0x8D9ECF8FDFB2C20", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95131E43A651B\",\"lastModified\":\"2021-07-27T19:08:17.3915419Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF8FDFB2C20\",\"lastModified\":\"2022-02-11T00:54:00.6776864Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:09:48 GMT", + "date" : "Fri, 11 Feb 2022 00:55:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "042e83b7-88f9-460b-987a-7824830543d5", + "request-id" : "f367ca36-cc27-4d46-905a-3e274349f1da", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:08:17 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:54:00 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "de90213d-41be-4aa8-a0ac-44af921c0ad4", + "client-request-id" : "58e1125a-c621-469e-9120-80eabab793a4", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95131E43A651B", + "etag" : "0x8D9ECF8FDFB2C20", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95131E43A651B\",\"lastModified\":\"2021-07-27T19:08:17.3915419Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF8FDFB2C20\",\"lastModified\":\"2022-02-11T00:54:00.6776864Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:10:18 GMT", + "date" : "Fri, 11 Feb 2022 00:56:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "90848028-6bfe-43f8-8e21-ff8919859166", + "request-id" : "0fd351df-164c-4a78-8fea-b8e54585a436", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:08:17 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:54:00 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "861b9dd7-5a85-4f5a-a6d6-0e38137c22b2", + "client-request-id" : "ef773b76-1ab7-476e-bb81-6f3e3323dd8e", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95131E43A651B", + "etag" : "0x8D9ECF8FDFB2C20", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95131E43A651B\",\"lastModified\":\"2021-07-27T19:08:17.3915419Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF8FDFB2C20\",\"lastModified\":\"2022-02-11T00:54:00.6776864Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:10:48 GMT", + "date" : "Fri, 11 Feb 2022 00:56:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "83b31a56-3584-4ee5-848a-c0ff3065611d", + "request-id" : "7a27ac82-a097-4bf0-98c3-4045b507a359", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:08:17 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:54:00 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "bf0920c1-11ce-4210-bcb0-fc72a5add8e8", + "client-request-id" : "b105019a-db49-49a3-91a8-78716d1579a7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95131E43A651B", + "etag" : "0x8D9ECF8FDFB2C20", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95131E43A651B\",\"lastModified\":\"2021-07-27T19:08:17.3915419Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF8FDFB2C20\",\"lastModified\":\"2022-02-11T00:54:00.6776864Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:13.4685751Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:18 GMT", + "date" : "Fri, 11 Feb 2022 00:56:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "retry-after" : "0", - "request-id" : "9c01ceea-e48a-47f1-ad02-5945f7faf393", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:08:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e521d6d1-4b01-4660-8223-d717d22242a5", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95131E43A651B", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95131E43A651B\",\"lastModified\":\"2021-07-27T19:08:17.3915419Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-27T19:10:55.3881429Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "x-content-type-options" : "nosniff", - "client-request-id" : "5e5ff7b0-0912-4395-886a-61d6ffe38072", + "client-request-id" : "b5ede015-cf45-46d6-83bb-c32034c039a7", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "bf458d98-979a-4a93-be48-74769a7b1632", + "request-id" : "af52cc1d-6421-46d0-8460-37de4386d5c5", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95131E43A651B\",\"lastModified\":\"2021-07-27T19:08:17.3915419Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-27T19:10:55.3881429Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n },{\r\n \"id\":\"BatchUser-testpool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool\",\"eTag\":\"0x8D9510269B8A29D\",\"lastModified\":\"2021-07-27T13:28:25.5128221Z\",\"creationTime\":\"2021-07-27T13:28:25.5128221Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T13:28:25.5128221Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-27T13:29:43.3925399Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user\",\"elevationLevel\":\"admin\",\"linuxUserConfiguration\":{\r\n \"uid\":5,\"gid\":5\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\"\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF8FDFB2C20\",\"lastModified\":\"2022-02-11T00:54:00.6776864Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:13.4685751Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n },{\r\n \"id\":\"BatchUser-testIaaSpool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testIaaSpool\",\"eTag\":\"0x8D9E13C62349063\",\"lastModified\":\"2022-01-27T02:26:11.1535203Z\",\"creationTime\":\"2022-01-27T02:26:11.1535203Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-27T02:26:11.1535203Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-01-27T02:27:08.9836318Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user\",\"elevationLevel\":\"admin\",\"linuxUserConfiguration\":{\r\n \"uid\":5,\"gid\":5\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\"\r\n }\r\n },{\r\n \"id\":\"BatchUser-testpool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool\",\"eTag\":\"0x8D9E138F8213617\",\"lastModified\":\"2022-01-27T02:01:44.6980119Z\",\"creationTime\":\"2022-01-27T02:01:44.6980119Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-27T02:01:44.6980119Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-01-27T02:03:22.6998358Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user\",\"elevationLevel\":\"admin\",\"linuxUserConfiguration\":{\r\n \"uid\":5,\"gid\":5\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\"\r\n }\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/nodecounts?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/nodecounts?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:18 GMT", + "date" : "Fri, 11 Feb 2022 00:56:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "6c334b09-df46-44a0-8ff5-f033b8193bbc", + "client-request-id" : "24c2f22a-c114-4209-8f1f-6623bea58c5c", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "ad73e9ea-f490-403e-8e02-db17cd8134ca", + "request-id" : "f7fda511-9e18-4585-8b44-a34fbdbdbd25", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#poolnodecounts\",\"value\":[\r\n {\r\n \"poolId\":\"BatchUser-CRUDPaaS\",\"dedicated\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":3,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":3\r\n },\"lowPriority\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":0\r\n }\r\n },{\r\n \"poolId\":\"BatchUser-testpool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":1,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":1\r\n },\"lowPriority\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":0\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#poolnodecounts\",\"value\":[\r\n {\r\n \"poolId\":\"BatchUser-CRUDPaaS\",\"dedicated\":{\r\n \"creating\":3,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":3\r\n },\"lowPriority\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":0\r\n }\r\n },{\r\n \"poolId\":\"BatchUser-testIaaSpool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":1,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":1\r\n },\"lowPriority\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":0\r\n }\r\n },{\r\n \"poolId\":\"BatchUser-testpool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":1,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":1\r\n },\"lowPriority\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":0,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":0\r\n }\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "PATCH", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:18 GMT", + "date" : "Fri, 11 Feb 2022 00:56:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS", "retry-after" : "0", - "request-id" : "f0259e7f-14a9-472f-ba72-e3b7043223f6", + "request-id" : "73dbd6fe-a1cb-402e-9ecc-90e01b36077d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:18 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "cf2c5821-4310-4988-822d-e6a589ef28d9", - "etag" : "0x8D951325053F082", + "client-request-id" : "6c75ffc1-df72-4ed4-947e-36014ceb1686", + "etag" : "0x8D9ECF9582FD2EC", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:18 GMT", + "date" : "Fri, 11 Feb 2022 00:56:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "bf4a83a1-2931-4bae-a3b6-162b562ac5ca", + "request-id" : "237c705b-f83e-4150-a455-ef61b7fcc348", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:18 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "935672ca-d007-49fd-a5a5-8d61dd2ffb76", + "client-request-id" : "ff4e1f1c-04bd-4e05-be6b-052f081effb5", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D951325053F082", + "etag" : "0x8D9ECF9582FD2EC", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D951325053F082\",\"lastModified\":\"2021-07-27T19:11:18.7528834Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-27T19:10:55.3881429Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"metadata\":[\r\n {\r\n \"name\":\"key1\",\"value\":\"value1\"\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF9582FD2EC\",\"lastModified\":\"2022-02-11T00:56:32.0176876Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:13.4685751Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"metadata\":[\r\n {\r\n \"name\":\"key1\",\"value\":\"value1\"\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS/updateproperties?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS/updateproperties?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:18 GMT", + "date" : "Fri, 11 Feb 2022 00:56:31 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS/updateproperties", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS/updateproperties", "retry-after" : "0", - "request-id" : "894505ee-86ea-463f-8593-fe58f99a192b", + "request-id" : "a4607988-2f49-4cb6-bd10-14beba1d9a94", "StatusCode" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:18 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "bd4b0bda-b0af-404f-a09d-9db5898e3876", - "etag" : "0x8D95132506BE556", + "client-request-id" : "61b2862a-3882-41a3-928c-65093fcfab3d", + "etag" : "0x8D9ECF9585423A5", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:18 GMT", + "date" : "Fri, 11 Feb 2022 00:56:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "89a6db25-7661-49e9-af22-45fff617719e", + "request-id" : "4c373877-eb0d-482a-a735-f68d243e6f61", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:18 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c968a4cf-68a3-4388-b6bf-e1e6a7a907f1", + "client-request-id" : "7f9ba39f-e9fc-49e9-b46c-c2cd751fd1c7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132506BE556", + "etag" : "0x8D9ECF9585423A5", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132506BE556\",\"lastModified\":\"2021-07-27T19:11:18.9098838Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T19:08:17.3915419Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-27T19:10:55.3881429Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF9585423A5\",\"lastModified\":\"2022-02-11T00:56:32.2556837Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:54:00.6776864Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:13.4685751Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:18 GMT", + "date" : "Fri, 11 Feb 2022 00:56:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "277010ed-9eaf-4c3e-94b8-0da8de2e1872", + "client-request-id" : "7df27d28-38e8-418c-a4b0-aa7bea34023f", "retry-after" : "0", - "request-id" : "44f897e9-029d-4dfe-95c0-802f43d21428", + "request-id" : "02de3dd1-5f89-43b7-af07-d6b1ac1484e6", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -366,391 +344,435 @@ } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 11 Feb 2022 00:56:32 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "b777f40f-c50f-44fb-b0cb-3010461a2a46", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "613a35bf-2963-406a-9634-1010bccab854", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8D9ECF95874F229", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Fri, 11 Feb 2022 00:56:37 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "3e297c86-bbad-48e5-b214-5190ea2a79de", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "1ecf394b-a7b0-433d-84f5-e7079f96cba2", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8D9ECF95874F229", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:18 GMT", + "date" : "Fri, 11 Feb 2022 00:56:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "caadbac0-cb4f-4060-b2d5-2468738c9613", + "request-id" : "61b95043-8c65-4653-ac62-7694795d2ae3", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f3e620ac-e64a-4616-94f6-f3930a6e00ca", + "client-request-id" : "680976c7-a8d8-46fa-a6d8-e1d4cab2d8c4", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:24 GMT", + "date" : "Fri, 11 Feb 2022 00:56:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "263b61e0-71d5-43c5-a13b-a980caaeb10d", + "request-id" : "a09384ac-233c-41f5-8312-a17ac2daab75", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d00e2450-de2b-403c-a4cb-30b09c0b6c92", + "client-request-id" : "f70c27f2-51fc-4d63-b23f-8c4771bac144", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:29 GMT", + "date" : "Fri, 11 Feb 2022 00:56:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "9e7b3685-5a1e-4c94-8739-cdd4084d6ed4", + "request-id" : "bc982173-e2ee-49de-a806-9a8ec82400eb", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c800557a-77c8-4851-8fe1-2aa261419d92", + "client-request-id" : "01466cb6-2b7e-4afd-bdd1-f3bde016820f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:34 GMT", + "date" : "Fri, 11 Feb 2022 00:56:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "d3194453-9cc9-4b13-9232-a71b1ed27f4a", + "request-id" : "cc2b39af-7b29-4ef7-9c59-beeb685ede7d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "55b7242a-6eb6-4027-a460-a77ca3b2df57", + "client-request-id" : "fe773419-a146-45f4-bf98-8ab3d3dcf215", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:39 GMT", + "date" : "Fri, 11 Feb 2022 00:57:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "9db1b1b8-b7d5-4225-9ab1-238f4ef4463b", + "request-id" : "5b8405d3-ff5c-485e-bb6c-0ada0f3dde21", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f48d6a49-08ca-44d0-a573-516a67c66880", + "client-request-id" : "eaba322c-f6cd-435f-a709-19081d41f47e", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:45 GMT", + "date" : "Fri, 11 Feb 2022 00:57:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "cd6ac728-4032-4424-a7e1-34526d8712c9", + "request-id" : "93510625-530f-4170-a9c5-31de09b48827", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2b98e34f-99b2-43f8-be82-52807d0ab523", + "client-request-id" : "f4ecc837-cd84-427a-b0bb-e08ed0095701", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:50 GMT", + "date" : "Fri, 11 Feb 2022 00:57:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "1d1a8db5-bc02-44de-a464-effc74183b2f", + "request-id" : "cfbc59b3-5ec6-4f45-b5ec-4e84f92fcd20", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c8d7d9bf-5a18-4cc4-ab0a-c14d4a49e68d", + "client-request-id" : "d6c3629d-e301-4203-a0fd-52acaa1c61eb", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:11:55 GMT", + "date" : "Fri, 11 Feb 2022 00:57:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "9b798ee9-4d54-495b-88d6-d34454c4625f", + "request-id" : "57235e56-8ba1-44d5-acc2-bb2511917c0f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "dfcbfe8f-47a8-4f1a-885f-41b9487262fd", + "client-request-id" : "adb5a927-62e9-4318-9409-c5179f98d251", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:12:00 GMT", + "date" : "Fri, 11 Feb 2022 00:57:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "7274344b-b16c-4fc2-9722-9e191f31c989", + "request-id" : "987d3929-b46d-471d-a2c9-e97041e00a01", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a65af08f-2540-4b8a-bd80-0d857dd8fb43", + "client-request-id" : "5d6076db-9eba-4c8e-8845-678661b4e5f6", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:12:05 GMT", + "date" : "Fri, 11 Feb 2022 00:57:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "57282094-59da-4a29-b73e-1298bbdb5268", + "request-id" : "a63c5fac-9f77-4cdd-8db7-337e8aca5ff8", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "44d3904c-4c56-4504-bc37-c432401dbf21", + "client-request-id" : "820d3124-abfa-48a7-b0f3-b6c351fc61a6", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:12:10 GMT", + "date" : "Fri, 11 Feb 2022 00:57:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "3eec0033-a357-4c45-9317-05b9b20c489b", + "request-id" : "9b702e6c-6028-4cc7-a284-98a6e186594b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a14fcc8c-3e85-4c7c-aaad-1dcd0223e368", + "client-request-id" : "3ed1b161-64d5-48bb-a70d-6cd461467b12", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:12:15 GMT", + "date" : "Fri, 11 Feb 2022 00:57:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "a5f20625-237c-4cfb-9301-a41d85d7daab", + "request-id" : "7a447a7d-b66c-4470-a163-85a5d9b4d120", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "1c0cfe2e-53b7-4c7f-a82e-24dbe8f5b0ff", + "client-request-id" : "7f77106e-1c8a-4138-b656-f91182b65bec", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:12:20 GMT", + "date" : "Fri, 11 Feb 2022 00:57:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "a510c502-2c6a-48f6-bd56-095c36ce7ec2", + "request-id" : "8c9f7ee6-f946-4897-be3d-aad840424174", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "5262d383-636c-43c5-8149-d71df303f669", + "client-request-id" : "623abef0-4ba4-4cc0-a6a2-ac94b036d7e9", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:12:25 GMT", + "date" : "Fri, 11 Feb 2022 00:57:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "a99b4370-3e7d-4940-9c35-16dbd2087966", + "request-id" : "01ff74f3-6ef4-4997-83e3-43de29bf8c43", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e76f076a-2527-491e-9cbb-71cea6d8187d", + "client-request-id" : "635a2860-e8cd-4699-9520-3e6bdc3a06e0", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:12:30 GMT", + "date" : "Fri, 11 Feb 2022 00:57:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "9371a6d2-f591-4531-afbb-08ef2c0e8d04", + "request-id" : "3bdc2c17-412d-4b27-a15d-dab51496060b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "85a34c3c-3d11-4c34-9fc8-62cb3d40398a", + "client-request-id" : "08ce3595-7da6-4276-b7a3-2e4871954e33", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:12:35 GMT", + "date" : "Fri, 11 Feb 2022 00:57:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "5df1450f-75f1-4892-9b36-ebfbad52a437", + "request-id" : "166ab2b0-1755-442c-ac26-598bd54d8dd8", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 19:11:19 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:56:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "35d34e39-4af9-4efa-8199-0b90bef2745b", + "client-request-id" : "1ccf651c-5e9d-4ef9-be4e-090c8775d39a", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95132508937C2", + "etag" : "0x8D9ECF95874F229", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D95132508937C2\",\"lastModified\":\"2021-07-27T19:11:19.1020482Z\",\"creationTime\":\"2021-07-27T19:08:17.3915419Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2021-07-27T19:11:19.1020482Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T19:11:19.1510637Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8D9ECF95874F229\",\"lastModified\":\"2022-02-11T00:56:32.4706857Z\",\"creationTime\":\"2022-02-11T00:54:00.6776864Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:56:32.4706857Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:56:32.4856875Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user-1\",\"elevationLevel\":\"nonadmin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n }\r\n ],\"certificateReferences\":[],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"4\",\"osVersion\":\"*\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:12:41 GMT", - "content-length" : "346", + "date" : "Fri, 11 Feb 2022 00:58:04 GMT", + "content-length" : "332", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "3c1ff8a0-7a30-4a82-8a47-cd6ca5368340", + "client-request-id" : "17384fa1-72ff-4ce2-b3ad-63156262bd6d", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "e187245d-2a6b-4951-838a-d98bbb84ba4f", + "request-id" : "eeaae387-4271-4227-8cf7-4b07b208ba60", "StatusCode" : "404", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool does not exist.\\nRequestId:e187245d-2a6b-4951-838a-d98bbb84ba4f\\nTime:2021-07-27T19:12:41.0171428Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"PoolNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified pool does not exist.\\nRequestId:eeaae387-4271-4227-8cf7-4b07b208ba60\\nTime:2022-02-11T00:58:04.6189641Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:b60972d4f63681958a9a340d1f9e2ee1d1866e03c5b2bf330b94b48646c9ac76 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 19:12:41 GMT", + "date" : "Fri, 11 Feb 2022 00:58:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "6739dd3b-6e13-41ef-adcc-6b69ae36a427", + "client-request-id" : "c679daf7-ec59-4fff-af7b-19ca907bdb19", "retry-after" : "0", - "request-id" : "dac20bee-d4bf-4cd9-bc25-ec8933f418a6", + "request-id" : "f44e02e3-cbf3-4b20-9f02-876a275252ab", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDTest.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDTest.json index 206cd602c717..3ebb70ffca5d 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDTest.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDTest.json @@ -1,256 +1,256 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:48 GMT", + "date" : "Fri, 11 Feb 2022 01:21:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "6b2f4510-a16d-4fb0-8425-ac504855d592", + "request-id" : "7f57177b-4157-4cd6-ad5c-968014961dd6", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:48 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:21:12 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c9a9a108-b390-461e-9a72-6203aae81f47", - "etag" : "0x8D950608E81F579", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "client-request-id" : "19e6e698-58e9-4605-b8ed-ed6338580ab6", + "etag" : "0x8D9ECFCCAA6D01A", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:48 GMT", + "date" : "Fri, 11 Feb 2022 01:21:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", "retry-after" : "0", - "request-id" : "33812465-e514-41a6-b052-539d2a41608b", + "request-id" : "0a57bc2b-97d4-4d15-8e1d-629ad2372e39", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:49 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:21:13 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2fec9501-4d5a-4bf8-885d-102f20ec6871", - "etag" : "0x8D950608EC57EE5", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", + "client-request-id" : "d42e64bd-433a-4d7c-8ecd-db55098a5cd6", + "etag" : "0x8D9ECFCCB1BE79F", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:48 GMT", + "date" : "Fri, 11 Feb 2022 01:21:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "7a4a1a1b-9046-41be-a106-90fa3e08615d", + "request-id" : "03ef2e3d-d513-49ad-bf1b-c87b7a4dd334", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:49 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:21:13 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "752e5c2c-16e1-45d4-9c9b-ff3dd933144d", + "client-request-id" : "38466b35-00d7-467d-b957-7db814b36997", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950608EC57EE5", + "etag" : "0x8D9ECFCCB1BE79F", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8D950608EC57EE5\",\"creationTime\":\"2021-07-26T18:09:49.2026085Z\",\"lastModified\":\"2021-07-26T18:09:49.2026085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:09:49.2026085Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://shpasterbatchteststorage.blob.core.windows.net/testaddtask/test.txt?sig=LEbSjWsoWCe5i3rPTtRfbe5SvrGvqcgQp9OIo5kIkjg%3D&se=2021-07-27T18%3A09%3A48Z&sv=2018-03-28&sp=r&sr=b\",\"filePath\":\"test.txt\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8D9ECFCCB1BE79F\",\"creationTime\":\"2022-02-11T01:21:13.3153183Z\",\"lastModified\":\"2022-02-11T01:21:13.3153183Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T01:21:13.3153183Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://javasdkstore.blob.core.windows.net/testaddtask/test.txt?sig=7cJNk5YaU8M5aQEP4BOfvAFwg5vqV81XeXOWD2L0s8E%3D&se=2022-02-12T01%3A21%3A13Z&sv=2018-03-28&sp=r&sr=b\",\"filePath\":\"test.txt\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n}" } }, { "Method" : "PUT", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:48 GMT", + "date" : "Fri, 11 Feb 2022 01:21:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", "retry-after" : "0", - "request-id" : "2ee9558d-3224-45b6-ad0e-756c76eff553", + "request-id" : "b76bddc5-2425-4e84-b311-2709fc5b088b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:49 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:21:13 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c6f8f249-dc18-4d57-a426-47b69f62cf9f", - "etag" : "0x8D950608EEC94B7", + "client-request-id" : "cc5522ce-214a-4e2d-9be9-b9f5527165f5", + "etag" : "0x8D9ECFCCB4C94D0", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:48 GMT", + "date" : "Fri, 11 Feb 2022 01:21:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "c710703f-84fc-4082-b060-f7271d6b3761", + "request-id" : "a63c092a-b1d4-4894-9049-41bdd9476cec", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:49 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:21:13 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "67e8a44b-5445-4914-b519-f28322b98fab", + "client-request-id" : "6f3755ce-e70f-4853-8f87-3591f4b785ab", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950608EEC94B7", + "etag" : "0x8D9ECFCCB4C94D0", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8D950608EEC94B7\",\"creationTime\":\"2021-07-26T18:09:49.2026085Z\",\"lastModified\":\"2021-07-26T18:09:49.4587575Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:09:49.2026085Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://shpasterbatchteststorage.blob.core.windows.net/testaddtask/test.txt?sig=LEbSjWsoWCe5i3rPTtRfbe5SvrGvqcgQp9OIo5kIkjg%3D&se=2021-07-27T18%3A09%3A48Z&sv=2018-03-28&sp=r&sr=b\",\"filePath\":\"test.txt\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":5\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8D9ECFCCB4C94D0\",\"creationTime\":\"2022-02-11T01:21:13.3153183Z\",\"lastModified\":\"2022-02-11T01:21:13.6343248Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T01:21:13.3153183Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://javasdkstore.blob.core.windows.net/testaddtask/test.txt?sig=7cJNk5YaU8M5aQEP4BOfvAFwg5vqV81XeXOWD2L0s8E%3D&se=2022-02-12T01%3A21%3A13Z&sv=2018-03-28&sp=r&sr=b\",\"filePath\":\"test.txt\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":5\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:48 GMT", + "date" : "Fri, 11 Feb 2022 01:21:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "dc995412-7a8e-4d5a-a437-14e28056cba6", + "client-request-id" : "cb580201-c9d5-4ad7-83a0-6ffe430f7a58", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "b457097c-6cc9-47de-9331-462f95fca1e0", + "request-id" : "d02e9a81-320f-4207-a682-f6d65c815a95", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8D950608EEC94B7\",\"creationTime\":\"2021-07-26T18:09:49.2026085Z\",\"lastModified\":\"2021-07-26T18:09:49.4587575Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:09:49.2026085Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://shpasterbatchteststorage.blob.core.windows.net/testaddtask/test.txt?sig=LEbSjWsoWCe5i3rPTtRfbe5SvrGvqcgQp9OIo5kIkjg%3D&se=2021-07-27T18%3A09%3A48Z&sv=2018-03-28&sp=r&sr=b\",\"filePath\":\"test.txt\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":5\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8D9ECFCCB4C94D0\",\"creationTime\":\"2022-02-11T01:21:13.3153183Z\",\"lastModified\":\"2022-02-11T01:21:13.6343248Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T01:21:13.3153183Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://javasdkstore.blob.core.windows.net/testaddtask/test.txt?sig=7cJNk5YaU8M5aQEP4BOfvAFwg5vqV81XeXOWD2L0s8E%3D&se=2022-02-12T01%3A21%3A13Z&sv=2018-03-28&sp=r&sr=b\",\"filePath\":\"test.txt\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":5\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:48 GMT", + "date" : "Fri, 11 Feb 2022 01:21:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "6dce1150-c1a7-4635-94d4-2a97d1118bd3", + "client-request-id" : "89d56687-e4b8-4e62-a603-5e22f41cb9f4", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "86f16595-3a20-415a-be23-9f88624483f1", + "request-id" : "97201afc-8b42-4429-ac05-06d6758266d6", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"active\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"active\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:59 GMT", + "date" : "Fri, 11 Feb 2022 01:21:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "5dbd1528-c1ce-467a-9438-9c283d89f51c", + "client-request-id" : "42f07e52-0006-4657-8067-8d281626c355", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "d3a655cc-4883-4e72-b054-8ab21b85f36a", + "request-id" : "0c54817f-ed57-4f1b-9099-56b1cfb8ecc4", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:59 GMT", + "date" : "Fri, 11 Feb 2022 01:21:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "91d50ab5-581f-4b8b-b0bc-93aeb0527702", + "request-id" : "504f6c5b-b8d8-4f73-a782-1700f096cb83", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:49 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:21:13 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "7b9c03af-79fd-4504-b9fa-7de7726085ad", + "client-request-id" : "4760610e-8fec-4210-b03d-dabd8fa84cd7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950608EEC94B7", + "etag" : "0x8D9ECFCCB4C94D0", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8D950608EEC94B7\",\"creationTime\":\"2021-07-26T18:09:49.2026085Z\",\"lastModified\":\"2021-07-26T18:09:49.4587575Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-26T18:09:51.424373Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2021-07-26T18:09:51.26293Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://shpasterbatchteststorage.blob.core.windows.net/testaddtask/test.txt?sig=LEbSjWsoWCe5i3rPTtRfbe5SvrGvqcgQp9OIo5kIkjg%3D&se=2021-07-27T18%3A09%3A48Z&sv=2018-03-28&sp=r&sr=b\",\"filePath\":\"test.txt\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":5\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:51.313148Z\",\"endTime\":\"2021-07-26T18:09:51.424373Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d\",\"nodeUrl\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d\",\"taskRootDirectory\":\"workitems/BatchUser-canCRUDTest/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d/files/workitems/BatchUser-canCRUDTest/job-1/mytask\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8D9ECFCCB4C94D0\",\"creationTime\":\"2022-02-11T01:21:13.3153183Z\",\"lastModified\":\"2022-02-11T01:21:13.6343248Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-02-11T01:21:14.396551Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2022-02-11T01:21:14.257335Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"https://javasdkstore.blob.core.windows.net/testaddtask/test.txt?sig=7cJNk5YaU8M5aQEP4BOfvAFwg5vqV81XeXOWD2L0s8E%3D&se=2022-02-12T01%3A21%3A13Z&sv=2018-03-28&sp=r&sr=b\",\"filePath\":\"test.txt\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":5\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T01:21:14.298857Z\",\"endTime\":\"2022-02-11T01:21:14.396551Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d\",\"nodeUrl\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d\",\"taskRootDirectory\":\"workitems/BatchUser-canCRUDTest/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d/files/workitems/BatchUser-canCRUDTest/job-1/mytask\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask/files/stdout.txt?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask/files/stdout.txt?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:59 GMT", + "date" : "Fri, 11 Feb 2022 01:21:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fshpasterbatch1.pilotprod2.eastus.batch.azure.com%2Fjobs%2FBatchUser-canCRUDTest%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fjavasdkacct.eastus.batch.azure.com%2Fjobs%2FBatchUser-canCRUDTest%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", "retry-after" : "0", - "request-id" : "9074cd64-5f7d-4d14-91c8-8522a35354f8", + "request-id" : "a7e6387f-db6e-4a54-8fd1-93d4b13a7202", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:51 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:21:14 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0ed7e4a2-24ec-4663-91f4-ecc4495c339e", + "client-request-id" : "3a9080ac-c8a2-472c-8871-4f44160c2361", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "This is an example" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d/uploadbatchservicelogs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d/uploadbatchservicelogs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:59 GMT", + "date" : "Fri, 11 Feb 2022 01:21:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "0584f1ae-769a-4997-abaf-bb8ce2a50515", + "client-request-id" : "45967a39-ec44-4241-9179-0b0b06381d35", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "7d57da1e-0606-464e-bf79-a8b475c36e31", + "request-id" : "a1e29614-febf-4e72-98a3-52d28c711d00", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.UploadBatchServiceLogsResult\",\"virtualDirectoryName\":\"shpasterbatch1-22F0E70172DE4EBA/batchuser-testiaaspool/tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d/7d57da1e-0606-464e-bf79-a8b475c36e31\",\"numberOfFilesUploaded\":1\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.UploadBatchServiceLogsResult\",\"virtualDirectoryName\":\"javasdkacct-22F047485B61C580/batchuser-testiaaspool/tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d/a1e29614-febf-4e72-98a3-52d28c711d00\",\"numberOfFilesUploaded\":1\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:59 GMT", + "date" : "Fri, 11 Feb 2022 01:21:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "204dcae3-5bc2-4313-b66b-ca35c25a589c", + "client-request-id" : "3aed3373-fcf9-4e68-98b2-47c48c41f755", "retry-after" : "0", - "request-id" : "d577385c-2710-4db2-a78b-51a29cebcf26", + "request-id" : "87134573-cb8a-46ba-932b-37577cd07e02", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "", @@ -258,39 +258,39 @@ } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:59 GMT", - "content-length" : "346", + "date" : "Fri, 11 Feb 2022 01:21:24 GMT", + "content-length" : "332", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "9feb61de-442e-48b6-8232-aa9f563728df", + "client-request-id" : "d689d572-1d21-453c-972b-fa12ca2302ba", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "f5086e80-1048-4ce9-b5d1-76fd97b5770b", + "request-id" : "f2fb1e7b-7420-4cce-9b43-7141934d88b0", "StatusCode" : "404", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"TaskNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified task does not exist.\\nRequestId:f5086e80-1048-4ce9-b5d1-76fd97b5770b\\nTime:2021-07-26T18:10:00.5060982Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"TaskNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified task does not exist.\\nRequestId:f2fb1e7b-7420-4cce-9b43-7141934d88b0\\nTime:2022-02-11T01:21:25.2884983Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-canCRUDTest?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:59 GMT", + "date" : "Fri, 11 Feb 2022 01:21:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "6118404c-5ab8-40ca-b160-0de1fb6c85dd", + "client-request-id" : "22c103e1-96c8-416a-9071-152f92a94d57", "retry-after" : "0", - "request-id" : "7890bb86-4726-49be-9117-95dc3cd16845", + "request-id" : "71a4251e-438f-4e30-bc00-07af5b6b40c7", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateCustomImageWithExpectedError.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateCustomImageWithExpectedError.json index 060745cb3a1c..808eee25c017 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateCustomImageWithExpectedError.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateCustomImageWithExpectedError.json @@ -1,39 +1,39 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:39:56 GMT", - "content-length" : "1072", + "date" : "Fri, 11 Feb 2022 00:50:00 GMT", + "content-length" : "1058", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "e080d95a-b057-4174-b78c-f760d354328f", + "client-request-id" : "a97c17d9-682f-484e-9b78-409badd13e59", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "b8a5efa7-32a0-4e3a-bf46-663e68ca6a62", + "request-id" : "0b9e95f5-55e4-467b-851a-152ebd7a3a0f", "StatusCode" : "400", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"InvalidPropertyValue\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The value provided for one of the properties in the request body is invalid.\\nRequestId:b8a5efa7-32a0-4e3a-bf46-663e68ca6a62\\nTime:2021-07-27T14:39:56.7503207Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"PropertyName\",\"value\":\"virtualMachineImageId\"\r\n },{\r\n \"key\":\"PropertyValue\",\"value\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/batchexp/providers/Microsoft.Compute/images/FakeImage\"\r\n },{\r\n \"key\":\"Reason\",\"value\":\"The specified resource id must be of the format /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName} or /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"InvalidPropertyValue\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The value provided for one of the properties in the request body is invalid.\\nRequestId:0b9e95f5-55e4-467b-851a-152ebd7a3a0f\\nTime:2022-02-11T00:50:00.8327060Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"PropertyName\",\"value\":\"virtualMachineImageId\"\r\n },{\r\n \"key\":\"PropertyValue\",\"value\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/batchexp/providers/Microsoft.Compute/images/FakeImage\"\r\n },{\r\n \"key\":\"Reason\",\"value\":\"The specified resource id must be of the format /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName} or /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-customImageExpErr?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-customImageExpErr?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:39:56 GMT", + "date" : "Fri, 11 Feb 2022 00:50:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "878e203e-224d-4539-966f-37d984078ee9", + "client-request-id" : "3f1fe511-e406-41bb-8ced-fd60f524d0d1", "retry-after" : "0", - "request-id" : "3fb870db-2721-42fc-92f7-0b0039f8be28", + "request-id" : "1dc3aa47-b5f2-4c73-8163-8919003b10df", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateDataDisk.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateDataDisk.json index 9c535506f809..0f9979ee455f 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateDataDisk.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateDataDisk.json @@ -1,65 +1,65 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:01 GMT", + "date" : "Fri, 11 Feb 2022 00:53:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool3", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool3", "retry-after" : "0", - "request-id" : "cf26194c-f8e5-4a34-aed1-b4e9d0dac6ee", + "request-id" : "b797eae6-c692-4333-9a06-6ef99198850a", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:44:01 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:53:56 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d7bc3df3-a6e1-416f-af32-29bbda6ce654", - "etag" : "0x8D9510CF9A09F2C", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool3", + "client-request-id" : "8619ac26-00a0-47e0-8310-aaa8c40a529d", + "etag" : "0x8D9ECF8FB614569", + "location" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool3", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool3?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool3?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:01 GMT", + "date" : "Fri, 11 Feb 2022 00:53:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "ac43687b-2cd2-4079-96ff-eacecce5446a", + "request-id" : "c17988e2-9b38-433e-8282-1305f4e66d61", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 14:44:01 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:53:56 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "7c115ab7-48e9-406b-84a1-01f0b88c1585", + "client-request-id" : "8ffc6fc2-029d-4aa5-891b-6576133f1c81", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510CF9A09F2C", + "etag" : "0x8D9ECF8FB614569", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool3\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool3\",\"eTag\":\"0x8D9510CF9A09F2C\",\"lastModified\":\"2021-07-27T14:44:01.914654Z\",\"creationTime\":\"2021-07-27T14:44:01.914654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T14:44:01.914654Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-27T14:44:01.914654Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"dataDisks\":[\r\n {\r\n \"lun\":50,\"caching\":\"none\",\"diskSizeGB\":50,\"storageAccountType\":\"standard_lrs\"\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool3\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool3\",\"eTag\":\"0x8D9ECF8FB614569\",\"lastModified\":\"2022-02-11T00:53:56.3136361Z\",\"creationTime\":\"2022-02-11T00:53:56.3136361Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:53:56.3136361Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-02-11T00:53:56.3136361Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"dataDisks\":[\r\n {\r\n \"lun\":50,\"caching\":\"none\",\"diskSizeGB\":50,\"storageAccountType\":\"standard_lrs\"\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\"\r\n }\r\n}" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool3?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool3?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:01 GMT", - "last-modified" : "Tue, 27 Jul 2021 14:44:01 GMT", + "date" : "Fri, 11 Feb 2022 00:53:56 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:53:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "86af17d5-8c1d-43d4-a658-fc96f6ef4814", - "etag" : "0x8D9510CF9A09F2C", + "client-request-id" : "c2d57cac-76e1-4023-9ee0-579cb6d8ae4d", + "etag" : "0x8D9ECF8FB614569", "retry-after" : "0", - "request-id" : "8ee7d116-e97b-4d74-9967-97af70fd1744", + "request-id" : "15ec37bb-b98c-418f-af60-58bf61048e04", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "", @@ -67,18 +67,18 @@ } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool3?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool3?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:03 GMT", + "date" : "Fri, 11 Feb 2022 00:53:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "749f8b03-13db-4173-9f9c-58337c58444a", + "client-request-id" : "def8bc78-b49d-4b0a-b1f5-5d427f290175", "retry-after" : "0", - "request-id" : "611c2a29-6d75-44ff-bf01-ee958b2e8906", + "request-id" : "d3767961-d8c4-4066-b4e1-3596adfd93c2", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canReadFromNode.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canReadFromNode.json index 7cd8523597eb..0e5b4c8507f3 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canReadFromNode.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canReadFromNode.json @@ -1,218 +1,193 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:14 GMT", + "date" : "Fri, 11 Feb 2022 00:49:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "3c652c4c-2f42-4950-bf2a-c7da25088b95", + "request-id" : "61638faa-8c9d-4de9-82d7-66a5c82ec51f", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:14 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:24 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "3188f287-daec-40f1-b1bc-8448800f4c10", - "etag" : "0x8D95060E59654A0", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "client-request-id" : "3ccc550d-aad2-4b00-acc5-59d8009fd14f", + "etag" : "0x8D9ECF8598C52F6", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:14 GMT", + "date" : "Fri, 11 Feb 2022 00:49:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask", "retry-after" : "0", - "request-id" : "272619fe-2461-493c-8b8d-4ce274ae8b58", + "request-id" : "23caef06-7c7e-4d67-9d07-f4e0c8f629d0", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:14 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:24 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "484ebe18-4bf5-4d35-9d8e-2e1710d38515", - "etag" : "0x8D95060E5A6B157", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask", + "client-request-id" : "6e135718-1c92-4c8a-aefb-11e7ded3647f", + "etag" : "0x8D9ECF8599E503F", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:14 GMT", + "date" : "Fri, 11 Feb 2022 00:49:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "a9f61b11-aaa1-4b59-b08b-bb6cc5c5ac9e", + "client-request-id" : "cc989b32-cee0-4395-9f33-2a5ee44d983d", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "3fb58bcc-d5fa-47b7-9a67-96395e162607", + "request-id" : "f77eb596-c360-4d0c-b077-a1b853ae7a90", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"active\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"active\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:25 GMT", + "date" : "Fri, 11 Feb 2022 00:49:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "54b5e8f4-19c0-4e73-a8c8-e892a175327f", + "client-request-id" : "05f30c2c-59ff-4d25-8ad4-10597d8017bb", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "bedf50c4-b7b5-4df2-85de-9793de89aff6", + "request-id" : "c16366d6-ba23-4c99-8b82-7e61fb61872d", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:25 GMT", + "date" : "Fri, 11 Feb 2022 00:49:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "356caf36-a961-4a5f-836d-b6deb20782ed", + "request-id" : "5f0214df-2c7b-45cd-8742-e095ead45c8e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:14 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:24 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e8580c71-74f2-4bfd-b2e8-4e82cefeb4ae", + "client-request-id" : "dcfacf31-1d97-4e86-8518-f3febf78136a", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95060E5A6B157", + "etag" : "0x8D9ECF8599E503F", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask\",\"eTag\":\"0x8D95060E5A6B157\",\"creationTime\":\"2021-07-26T18:12:14.9625175Z\",\"lastModified\":\"2021-07-26T18:12:14.9625175Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-26T18:12:15.664812Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2021-07-26T18:12:15.58203Z\",\"commandLine\":\"/bin/bash -c \\\"echo hello\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:12:15.620553Z\",\"endTime\":\"2021-07-26T18:12:15.664812Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d\",\"nodeUrl\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d\",\"poolId\":\"BatchUser-testpool\",\"nodeId\":\"tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d\",\"taskRootDirectory\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask\",\"eTag\":\"0x8D9ECF8599E503F\",\"creationTime\":\"2022-02-11T00:49:24.9227839Z\",\"lastModified\":\"2022-02-11T00:49:24.9227839Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-02-11T00:49:26.109245Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2022-02-11T00:49:25.982755Z\",\"commandLine\":\"/bin/bash -c \\\"echo hello\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T00:49:26.040825Z\",\"endTime\":\"2022-02-11T00:49:26.109245Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d\",\"nodeUrl\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d\",\"poolId\":\"BatchUser-testpool\",\"nodeId\":\"tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d\",\"taskRootDirectory\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files?recursive=true&api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files?recursive=true&api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:25 GMT", + "date" : "Fri, 11 Feb 2022 00:49:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "1e1e0444-093b-4a2e-8c66-074656768dd0", + "client-request-id" : "131262db-4cb8-48d7-82bc-f4a1f9b92ad1", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "9d0b54a6-9d1f-4ced-9236-6ed5318b5a47", + "request-id" : "ef5100ba-d38b-4efe-b48f-a8d4aecf3ac2", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#files\",\"value\":[\r\n {\r\n \"name\":\"workitems\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems\",\"isDirectory\":true\r\n },{\r\n \"name\":\"shared\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/shared\",\"isDirectory\":true\r\n },{\r\n \"name\":\"startup\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/startup\",\"isDirectory\":true\r\n },{\r\n \"name\":\"volatile\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/volatile\",\"isDirectory\":true\r\n },{\r\n \"name\":\"applications\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/applications\",\"isDirectory\":true\r\n },{\r\n \"name\":\"fsmounts\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/fsmounts\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems/BatchUser-Job-canReadFromNode\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromTaskFile\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems/BatchUser-Job-canReadFromTaskFile\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-testGetTaskCounts\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems/BatchUser-testGetTaskCounts\",\"isDirectory\":true\r\n },{\r\n \"name\":\"volatile/startup\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/volatile/startup\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems/BatchUser-Job-canReadFromNode/job-1\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stderr.txt\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2021-07-26T18:12:15.630257Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stdout.txt\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2021-07-26T18:12:15.654258Z\",\"contentLength\":\"6\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/certs\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/certs\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/wd\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/wd\",\"isDirectory\":true\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#files\",\"value\":[\r\n {\r\n \"name\":\"fsmounts\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/fsmounts\",\"isDirectory\":true\r\n },{\r\n \"name\":\"volatile\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/volatile\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems\",\"isDirectory\":true\r\n },{\r\n \"name\":\"applications\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/applications\",\"isDirectory\":true\r\n },{\r\n \"name\":\"shared\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/shared\",\"isDirectory\":true\r\n },{\r\n \"name\":\"startup\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/startup\",\"isDirectory\":true\r\n },{\r\n \"name\":\"volatile/startup\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/volatile/startup\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-testGetTaskCounts\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-testGetTaskCounts\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-testJobUser\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-testJobUser\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromTaskFile\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-Job-canReadFromTaskFile\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-Job-canReadFromNode\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-Job-canReadFromNode/job-1\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/wd\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/wd\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/certs\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/certs\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stdout.txt\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2022-02-11T00:49:26.093615Z\",\"contentLength\":\"6\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stderr.txt\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2022-02-11T00:49:26.053615Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:25 GMT", + "date" : "Fri, 11 Feb 2022 00:49:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fshpasterbatch1.pilotprod2.eastus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fjavasdkacct.eastus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", "retry-after" : "0", - "request-id" : "57f0da48-fe00-44fd-9a90-0a7f460695cc", + "request-id" : "57583bf4-01de-4acf-b667-3c8f0562d6b4", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:15 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:26 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "10fc5e18-fe8e-461a-bad4-2b53ad884a7a", + "client-request-id" : "9eb19001-81c6-444f-84cc-c7ad9ba8cea6", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "hello\n" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:25 GMT", + "date" : "Fri, 11 Feb 2022 00:49:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fshpasterbatch1.pilotprod2.eastus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fjavasdkacct.eastus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_47f3d54584fcdb1b04fdda28c0aa9745ac037bf7d13f9ed41aa334f29a24c25b_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", "retry-after" : "0", - "request-id" : "efcfdb40-1308-4bd8-8431-14132f6d9a2d", + "request-id" : "cfc6b237-7468-4f7d-8b3d-989c537e8856", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:15 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:26 GMT", "x-content-type-options" : "nosniff", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "hello\n" } - }, { - "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:26 GMT", - "content-length" : "6", - "server" : "Microsoft-HTTPAPI/2.0", - "ocp-batch-file-mode" : "0o100644", - "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fshpasterbatch1.pilotprod2.eastus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_1d5ab483cc518efe1f0026d93b6172c0320c4b277c74fd5ba9b91ff26bb62e22_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", - "retry-after" : "0", - "request-id" : "d33efa64-1734-45cd-a476-d8370101318c", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:15 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "6b9d47ff-0cc4-48b5-858a-a0b5baf585bf", - "content-type" : "text/plain", - "dataserviceversion" : "3.0", - "Body" : "" - } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:26 GMT", + "date" : "Fri, 11 Feb 2022 00:49:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "1fc92d2b-4d21-4638-8628-75eed163492f", + "client-request-id" : "dbf958c6-7117-4676-a7f2-dd2819c15c5a", "retry-after" : "0", - "request-id" : "e01d70f0-79b5-4401-8810-967385ca89c7", + "request-id" : "01e2c3dc-cc94-469d-808b-8bfa4dfbce48", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canReadFromTaskFile.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canReadFromTaskFile.json index 27222339b3cb..241333fb7003 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canReadFromTaskFile.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canReadFromTaskFile.json @@ -1,196 +1,171 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:02 GMT", + "date" : "Fri, 11 Feb 2022 00:49:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "cde9b1fa-8d5d-4c90-8d4b-48ddd43725c6", + "request-id" : "e0dc588b-d5ce-4885-acad-49add92939d4", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:02 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:12 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "941916e0-2a3b-4142-9728-92a8a966b995", - "etag" : "0x8D95060DE3EE8BA", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "client-request-id" : "4816d443-2b56-48ca-9758-58260c35f4c2", + "etag" : "0x8D9ECF8524818B5", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:02 GMT", + "date" : "Fri, 11 Feb 2022 00:49:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask", "retry-after" : "0", - "request-id" : "11b40d55-c52f-449d-97ac-3ba247e7540f", + "request-id" : "c37a6b18-94f6-40dd-8a73-c17a042dc2e9", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:02 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:12 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "3345504b-c942-4c10-96f4-6742bc03878a", - "etag" : "0x8D95060DE4764EE", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask", + "client-request-id" : "98d906f2-7d5a-486f-a691-451ec4dbb1c5", + "etag" : "0x8D9ECF852625564", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:02 GMT", + "date" : "Fri, 11 Feb 2022 00:49:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "531888e0-9608-4b9a-99a0-b1f3c3ef2ca8", + "client-request-id" : "dd1694da-098e-48ad-9357-8e89fa97f461", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "d0eb322d-efdc-4e3a-93d1-2b7adc87b741", + "request-id" : "bf132773-0a86-4f61-97e6-6c0c24cacf91", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"active\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"active\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:12 GMT", + "date" : "Fri, 11 Feb 2022 00:49:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "4fc09d12-f936-4858-aec8-0d14d24b9611", + "client-request-id" : "57b5e0d9-af07-409b-b7de-d04d02c3775c", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "91dcffe9-0274-43ef-bd07-183c175a4ced", + "request-id" : "1759c7b4-e030-41fb-a775-693c9d66b3e5", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:12 GMT", + "date" : "Fri, 11 Feb 2022 00:49:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "ff342593-3f51-456b-a1e0-2f06dbfb46dd", + "client-request-id" : "8a4d523b-583c-4ac5-a64a-5329b401e597", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "6a786df2-5882-40bf-901c-25ef0e20e86a", + "request-id" : "898dbe26-1911-4607-8f81-9d6e90315613", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#files\",\"value\":[\r\n {\r\n \"name\":\"stderr.txt\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2021-07-26T18:12:03.349771Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"stdout.txt\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2021-07-26T18:12:03.373772Z\",\"contentLength\":\"6\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"certs\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/certs\",\"isDirectory\":true\r\n },{\r\n \"name\":\"wd\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/wd\",\"isDirectory\":true\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#files\",\"value\":[\r\n {\r\n \"name\":\"wd\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/wd\",\"isDirectory\":true\r\n },{\r\n \"name\":\"certs\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/certs\",\"isDirectory\":true\r\n },{\r\n \"name\":\"stdout.txt\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2022-02-11T00:49:14.061529Z\",\"contentLength\":\"6\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"stderr.txt\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2022-02-11T00:49:14.021529Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:12 GMT", + "date" : "Fri, 11 Feb 2022 00:49:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fshpasterbatch1.pilotprod2.eastus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fjavasdkacct.eastus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", "retry-after" : "0", - "request-id" : "19e217a0-4798-49ce-ba07-674220c70d37", + "request-id" : "cb8656b6-6f2d-4f19-8437-d32915f85d5e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:03 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:14 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "3b8dcd70-8e79-480e-8136-2929ed963fe9", + "client-request-id" : "26024925-54b6-4b97-9d1c-32bc6630459d", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "hello\n" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:12 GMT", + "date" : "Fri, 11 Feb 2022 00:49:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fshpasterbatch1.pilotprod2.eastus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fjavasdkacct.eastus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", "retry-after" : "0", - "request-id" : "532da987-66b8-410b-94ca-ede37c2ac633", + "request-id" : "e709c4f2-f24f-46e7-8ca6-55c523f0f977", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:03 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:14 GMT", "x-content-type-options" : "nosniff", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "hello\n" } - }, { - "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:12 GMT", - "content-length" : "6", - "server" : "Microsoft-HTTPAPI/2.0", - "ocp-batch-file-mode" : "0o100644", - "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fshpasterbatch1.pilotprod2.eastus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", - "retry-after" : "0", - "request-id" : "b1fde0cc-144f-4576-846e-6e443f7f6053", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:12:03 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "0f1cc186-5a52-49a7-b391-79803d512d63", - "content-type" : "text/plain", - "dataserviceversion" : "3.0", - "Body" : "" - } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:12:12 GMT", + "date" : "Fri, 11 Feb 2022 00:49:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "98ce7e4b-9426-4e5d-8fa9-2d50019bd8f8", + "client-request-id" : "388660f8-8258-4e3c-8ff9-9182b8c29c49", "retry-after" : "0", - "request-id" : "0bc47676-8931-4f0b-b214-b6e9ddf95173", + "request-id" : "550a27d2-3973-45b1-962b-c0cef3278279", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canUpdateJobScheduleState.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canUpdateJobScheduleState.json index e183d6946cd4..6c260e03b20e 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canUpdateJobScheduleState.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canUpdateJobScheduleState.json @@ -1,219 +1,219 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:30 GMT", + "date" : "Fri, 11 Feb 2022 00:49:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState", "retry-after" : "0", - "request-id" : "7107b643-46b3-4239-8d53-a0e9d6e4ea0c", + "request-id" : "5a3a5908-e51b-4e86-bb71-c8b905244c68", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:30 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:40 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2bc97131-a541-4519-bbb7-6f922dbfcb36", - "etag" : "0x8D9505F65C2E976", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState", + "client-request-id" : "62e8e52e-7caa-44e5-ad06-8425329ab594", + "etag" : "0x8D9ECF862DA23D3", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:30 GMT", + "date" : "Fri, 11 Feb 2022 00:49:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "f6285485-f690-42f0-875d-1e9f5230ed2f", + "request-id" : "19509bb5-c734-490c-8c35-78f9c1c105c7", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:30 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:40 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e8200556-fddd-4dd3-8c85-00ea4f2d1432", + "client-request-id" : "d0470586-bfa9-4d9f-bbbd-465c026f39f6", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9505F65C2E976", + "etag" : "0x8D9ECF862DA23D3", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9505F65C2E976\",\"lastModified\":\"2021-07-26T18:01:30.9023606Z\",\"creationTime\":\"2021-07-26T18:01:30.9023606Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:01:30.9023606Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2021-07-26T18:01:29.089Z\",\"doNotRunAfter\":\"2021-07-26T23:01:29.089Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9ECF862DA23D3\",\"lastModified\":\"2022-02-11T00:49:40.4143571Z\",\"creationTime\":\"2022-02-11T00:49:40.4143571Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:49:40.4143571Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-02-11T00:49:38.367Z\",\"doNotRunAfter\":\"2022-02-11T05:49:38.367Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"nextRunTime\":\"2022-02-11T00:49:38.367Z\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/disable?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/disable?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:30 GMT", + "date" : "Fri, 11 Feb 2022 00:49:40 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/disable", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/disable", "retry-after" : "0", - "request-id" : "9b2767eb-4932-4111-a629-d7bfaa47a4a8", + "request-id" : "254d7066-5a95-499c-8788-ae95c462a924", "StatusCode" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:31 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:40 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "145882f4-72bb-4b48-afc2-f32018bc24f3", - "etag" : "0x8D9505F65F83EB1", + "client-request-id" : "709a2f43-0f69-4833-a263-72d52ac2e416", + "etag" : "0x8D9ECF863141FAF", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:30 GMT", + "date" : "Fri, 11 Feb 2022 00:49:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "1aa301ff-7374-42b3-85d5-fca281156d0b", + "request-id" : "132a45b6-f9e2-4ac5-94f4-c6f4cd33252f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:31 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:40 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "399db169-5ec9-4bfc-8ce0-6bd5c31c7718", + "client-request-id" : "5e6cfb82-e529-4b75-9212-fba2e2e52f00", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9505F65F83EB1", + "etag" : "0x8D9ECF863141FAF", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9505F65F83EB1\",\"lastModified\":\"2021-07-26T18:01:31.2518833Z\",\"creationTime\":\"2021-07-26T18:01:30.9023606Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2021-07-26T18:01:31.2518833Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:01:30.9023606Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2021-07-26T18:01:29.089Z\",\"doNotRunAfter\":\"2021-07-26T23:01:29.089Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9ECF863141FAF\",\"lastModified\":\"2022-02-11T00:49:40.7943599Z\",\"creationTime\":\"2022-02-11T00:49:40.4143571Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2022-02-11T00:49:40.7943599Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T00:49:40.4143571Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-02-11T00:49:38.367Z\",\"doNotRunAfter\":\"2022-02-11T05:49:38.367Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n }\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/enable?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/enable?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:30 GMT", + "date" : "Fri, 11 Feb 2022 00:49:40 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/enable", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/enable", "retry-after" : "0", - "request-id" : "b3efe8b8-dc0b-4b51-9bd9-772d1f75b170", + "request-id" : "ce4b9634-7f97-43da-a06d-39c35a046e30", "StatusCode" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:31 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:41 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "691a64b2-3a27-4d04-90a8-b450529edb08", - "etag" : "0x8D9505F66157FF2", + "client-request-id" : "f320d78f-9c60-4b2a-a787-caeab55ed214", + "etag" : "0x8D9ECF86333E319", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:30 GMT", + "date" : "Fri, 11 Feb 2022 00:49:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "4df2109e-a6bf-4ef9-a81b-fbcaddce4da4", + "request-id" : "e1bba0a3-b987-4c21-b1be-7951a560a08a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:31 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:41 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e9ae8eda-8c51-47db-a316-98ae3b331105", + "client-request-id" : "6b54d5af-99c9-4b0d-a07d-0890a30bebc0", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9505F66157FF2", + "etag" : "0x8D9ECF86333E319", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9505F66157FF2\",\"lastModified\":\"2021-07-26T18:01:31.4436082Z\",\"creationTime\":\"2021-07-26T18:01:30.9023606Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:01:31.4436082Z\",\"previousState\":\"disabled\",\"previousStateTransitionTime\":\"2021-07-26T18:01:31.2518833Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2021-07-26T18:01:29.089Z\",\"doNotRunAfter\":\"2021-07-26T23:01:29.089Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9ECF86333E319\",\"lastModified\":\"2022-02-11T00:49:41.0025241Z\",\"creationTime\":\"2022-02-11T00:49:40.4143571Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T00:49:41.0025241Z\",\"previousState\":\"disabled\",\"previousStateTransitionTime\":\"2022-02-11T00:49:40.7943599Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-02-11T00:49:38.367Z\",\"doNotRunAfter\":\"2022-02-11T05:49:38.367Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n }\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/terminate?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/terminate?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:30 GMT", + "date" : "Fri, 11 Feb 2022 00:49:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/terminate", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/terminate", "retry-after" : "0", - "request-id" : "fdbe9eee-a856-4895-92c8-f5f8206974e6", + "request-id" : "eabf16de-d15e-4d52-b526-e552c1521426", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:31 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:41 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "4c519652-fb70-4235-9843-f6a79bc7048e", - "etag" : "0x8D9505F662BF320", + "client-request-id" : "3967f9fc-2862-49f4-813c-28eb1c0f4859", + "etag" : "0x8D9ECF86353AB96", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:30 GMT", + "date" : "Fri, 11 Feb 2022 00:49:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "e6e67e90-7300-40c1-b640-b045a3fdb1a9", + "request-id" : "f3fbb918-eb39-4b15-a0a7-09b098f825c2", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:31 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:41 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "dfae2b5c-ce14-4dd1-bb44-29eedb423df9", + "client-request-id" : "e59914fe-609e-43d1-b3c5-54e8210166b6", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9505F662BF320", + "etag" : "0x8D9ECF86353AB96", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9505F662BF320\",\"lastModified\":\"2021-07-26T18:01:31.590736Z\",\"creationTime\":\"2021-07-26T18:01:30.9023606Z\",\"state\":\"terminating\",\"stateTransitionTime\":\"2021-07-26T18:01:31.590736Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:01:31.4436082Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2021-07-26T18:01:29.089Z\",\"doNotRunAfter\":\"2021-07-26T23:01:29.089Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n }\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9ECF86353AB96\",\"lastModified\":\"2022-02-11T00:49:41.2108182Z\",\"creationTime\":\"2022-02-11T00:49:40.4143571Z\",\"state\":\"terminating\",\"stateTransitionTime\":\"2022-02-11T00:49:41.2108182Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T00:49:41.0025241Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-02-11T00:49:38.367Z\",\"doNotRunAfter\":\"2022-02-11T05:49:38.367Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n }\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:33 GMT", + "date" : "Fri, 11 Feb 2022 00:49:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "8d57dece-bb03-4709-8d95-655f7aa72ee3", + "request-id" : "4b8f438a-bf76-4434-8c1b-98c47921ca87", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:01:31 GMT", + "last-modified" : "Fri, 11 Feb 2022 00:49:41 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "383712de-ac15-4d94-af10-e3d5666210e4", + "client-request-id" : "c233b007-40dc-4b96-b814-3a30c5a63bcc", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9505F662BF320", + "etag" : "0x8D9ECF86353AB96", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9505F662BF320\",\"lastModified\":\"2021-07-26T18:01:31.590736Z\",\"creationTime\":\"2021-07-26T18:01:30.9023606Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-26T18:01:32.097411Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:01:31.4436082Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2021-07-26T18:01:29.089Z\",\"doNotRunAfter\":\"2021-07-26T23:01:29.089Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n },\"endTime\":\"2021-07-26T18:01:32.097411Z\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9ECF86353AB96\",\"lastModified\":\"2022-02-11T00:49:41.2108182Z\",\"creationTime\":\"2022-02-11T00:49:40.4143571Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-02-11T00:49:42.359475Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T00:49:41.0025241Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-02-11T00:49:38.367Z\",\"doNotRunAfter\":\"2022-02-11T05:49:38.367Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n },\"endTime\":\"2022-02-11T00:49:42.359475Z\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:33 GMT", + "date" : "Fri, 11 Feb 2022 00:49:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "d0da4cc9-9435-427d-b747-2950c9fd2e0d", + "client-request-id" : "defa9766-0142-4e04-8fdd-600dab7efcdc", "retry-after" : "0", - "request-id" : "26fefd34-26f8-473e-b095-ebf29b917982", + "request-id" : "b4c17c31-a045-4bc4-905d-c32eb2a95e14", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -221,44 +221,45 @@ } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:33 GMT", - "content-length" : "361", + "date" : "Fri, 11 Feb 2022 00:49:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "2d457cd3-8827-4ddb-8e72-2e29b3116765", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Fri, 11 Feb 2022 00:49:41 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "fb3e02e7-05ad-414c-bb4a-a1a9c7eaefdd", + "client-request-id" : "6f2b61c8-f28f-44a7-b587-f58c5c561efc", "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "f2961d5f-3d98-4e2f-ae75-8740ccf3433d", - "StatusCode" : "404", + "etag" : "0x8D9ECF86353AB96", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"JobScheduleNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified job schedule does not exist.\\nRequestId:f2961d5f-3d98-4e2f-ae75-8740ccf3433d\\nTime:2021-07-26T18:01:33.8902512Z\"\r\n }\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8D9ECF86353AB96\",\"lastModified\":\"2022-02-11T00:49:41.2108182Z\",\"creationTime\":\"2022-02-11T00:49:40.4143571Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-02-11T00:49:43.5645905Z\",\"previousState\":\"completed\",\"previousStateTransitionTime\":\"2022-02-11T00:49:42.359475Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-02-11T00:49:38.367Z\",\"doNotRunAfter\":\"2022-02-11T05:49:38.367Z\",\"startWindow\":\"P5D\"\r\n },\"jobSpecification\":{\r\n \"priority\":100,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n }\r\n },\"executionInfo\":{\r\n \"recentJob\":{\r\n \"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n }\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:01:33 GMT", - "content-length" : "361", + "date" : "Fri, 11 Feb 2022 00:49:43 GMT", + "content-length" : "388", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "84653639-4376-43da-ae84-2071930112de", + "client-request-id" : "26fe91df-d4c8-4c20-a470-bb283f30f8c2", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "06c7c7e8-5f9e-4938-8c22-c3704f2abdfb", - "StatusCode" : "404", + "request-id" : "00fccb2e-8238-4f32-8075-d11cd57de15e", + "StatusCode" : "409", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"JobScheduleNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified job schedule does not exist.\\nRequestId:06c7c7e8-5f9e-4938-8c22-c3704f2abdfb\\nTime:2021-07-26T18:01:34.0012517Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"JobScheduleBeingDeleted\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified job schedule has been marked for deletion and is being reclaimed.\\nRequestId:00fccb2e-8238-4f32-8075-d11cd57de15e\\nTime:2022-02-11T00:49:43.8183439Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } } ], diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canUpdateJobState.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canUpdateJobState.json index 260f9de46eaf..a7cc58cc4a1d 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canUpdateJobState.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canUpdateJobState.json @@ -1,283 +1,283 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:37 GMT", + "date" : "Fri, 11 Feb 2022 01:16:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "17b0b654-48d4-4c32-b7c3-3edb844750cc", + "request-id" : "6924a5d4-904b-400f-b08e-2cae86dc4988", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:37 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:23 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "5b1e2223-27af-45ba-904b-47b2007f5334", - "etag" : "0x8D9506087BD0AF9", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "client-request-id" : "2b3a4723-e329-494a-b487-764e970fa880", + "etag" : "0x8D9ECFC1E77D4BA", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:37 GMT", + "date" : "Fri, 11 Feb 2022 01:16:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "10cfadb0-f98a-4616-b57a-159cff1a4541", + "request-id" : "9ddfe7c2-1ff5-4f44-8f29-00367167744a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:37 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:23 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c7618f4b-f8f0-455e-89e5-f99735d7a572", + "client-request-id" : "01a7f705-d966-4be0-bda3-706f1202e838", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9506087BD0AF9", + "etag" : "0x8D9ECFC1E77D4BA", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D9506087BD0AF9\",\"lastModified\":\"2021-07-26T18:09:37.4031609Z\",\"creationTime\":\"2021-07-26T18:09:37.3841603Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:09:37.4031609Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:37.4031609Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D9ECFC1E77D4BA\",\"lastModified\":\"2022-02-11T01:16:23.671929Z\",\"creationTime\":\"2022-02-11T01:16:23.6499278Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T01:16:23.671929Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T01:16:23.671929Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/disable?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/disable?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:37 GMT", + "date" : "Fri, 11 Feb 2022 01:16:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/disable", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/disable", "retry-after" : "0", - "request-id" : "137ce349-37d0-4a71-813f-e07200286746", + "request-id" : "59baa752-70d2-44b5-b0d8-150cf560e5db", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:37 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:23 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "b15387af-18d6-45c7-ac7a-7466540e1fe8", - "etag" : "0x8D9506087D4A163", + "client-request-id" : "ad3869e3-09fe-49ee-863c-a48eef1a9be2", + "etag" : "0x8D9ECFC1EA2D44E", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:37 GMT", + "date" : "Fri, 11 Feb 2022 01:16:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "a33c7af8-a2b4-4f97-ba2a-a033129c7c8d", + "request-id" : "9b9b1906-f195-4f8a-83fa-c3d79e83ccef", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:37 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:23 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "19b9d958-090b-49d9-8303-240144a0698c", + "client-request-id" : "731ad539-1f59-4a58-b694-310b1d927925", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9506087D4A163", + "etag" : "0x8D9ECFC1EA2D44E", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D9506087D4A163\",\"lastModified\":\"2021-07-26T18:09:37.5577443Z\",\"creationTime\":\"2021-07-26T18:09:37.3841603Z\",\"state\":\"disabling\",\"stateTransitionTime\":\"2021-07-26T18:09:37.5577443Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:09:37.4031609Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:37.4031609Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D9ECFC1EA2D44E\",\"lastModified\":\"2022-02-11T01:16:23.953723Z\",\"creationTime\":\"2022-02-11T01:16:23.6499278Z\",\"state\":\"disabling\",\"stateTransitionTime\":\"2022-02-11T01:16:23.953723Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T01:16:23.671929Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T01:16:23.671929Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:42 GMT", + "date" : "Fri, 11 Feb 2022 01:16:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "e6bf3326-01da-4d3c-a5ae-0a9e2bb41157", + "request-id" : "23d9a88b-b5dc-479d-b907-e98ffd1a4248", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:37 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:23 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "8f3bc392-8c30-4df1-ab61-a35cf577da41", + "client-request-id" : "0b62a318-c440-4319-b8ef-cdc40e2aee02", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9506087D4A163", + "etag" : "0x8D9ECFC1EA2D44E", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D9506087D4A163\",\"lastModified\":\"2021-07-26T18:09:37.5577443Z\",\"creationTime\":\"2021-07-26T18:09:37.3841603Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2021-07-26T18:09:37.7886633Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:09:37.4031609Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:37.4031609Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D9ECFC1EA2D44E\",\"lastModified\":\"2022-02-11T01:16:23.953723Z\",\"creationTime\":\"2022-02-11T01:16:23.6499278Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2022-02-11T01:16:24.7704702Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T01:16:23.671929Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T01:16:23.671929Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "PATCH", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:42 GMT", + "date" : "Fri, 11 Feb 2022 01:16:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState", "retry-after" : "0", - "request-id" : "cc15d38d-a8b9-4669-bf7f-46ae5c3c2058", + "request-id" : "4360f746-0746-45b4-9fa5-683e50983015", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:42 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:29 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "3927a5d6-4c94-45c8-b598-2cc64552650f", - "etag" : "0x8D950608B0118FD", + "client-request-id" : "a311b9da-61b3-4423-bab7-fdacc58f4c0d", + "etag" : "0x8D9ECFC21D5C0B4", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:42 GMT", + "date" : "Fri, 11 Feb 2022 01:16:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "f8583b84-fb53-4c2d-94b9-15bb4023e580", + "request-id" : "051f24b8-c49b-4fa0-bc74-aea0a56d4b4c", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:42 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:29 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "30b0431f-8061-497b-b945-3edad9d1ee1c", + "client-request-id" : "2fca5046-5c0f-42e4-a600-35487e5bfcd9", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950608B0118FD", + "etag" : "0x8D9ECFC21D5C0B4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D950608B0118FD\",\"lastModified\":\"2021-07-26T18:09:42.8823293Z\",\"creationTime\":\"2021-07-26T18:09:37.3841603Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2021-07-26T18:09:37.7886633Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:09:37.4031609Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:37.4031609Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D9ECFC21D5C0B4\",\"lastModified\":\"2022-02-11T01:16:29.3206196Z\",\"creationTime\":\"2022-02-11T01:16:23.6499278Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2022-02-11T01:16:24.7704702Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T01:16:23.671929Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T01:16:23.671929Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/enable?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/enable?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:42 GMT", + "date" : "Fri, 11 Feb 2022 01:16:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/enable", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/enable", "retry-after" : "0", - "request-id" : "15beb38e-9d38-4bd7-808b-06e67137e756", + "request-id" : "6ac4f302-be49-4da4-a433-9a253529a213", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:43 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:29 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "eb0882e5-33b8-4466-be77-5c435534f00d", - "etag" : "0x8D950608B26009E", + "client-request-id" : "daab1f0c-194d-47dd-8c05-49324c3ead10", + "etag" : "0x8D9ECFC21FA9658", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:42 GMT", + "date" : "Fri, 11 Feb 2022 01:16:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "02f9e023-c77e-4a0e-bac1-0fdd4d74f7e3", + "request-id" : "f81aedec-cc02-4ba7-8e52-62f8ae01ecff", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:43 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:29 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0cc9fe82-68ba-4584-adc3-5242022187d0", + "client-request-id" : "3a3d9c38-de21-4f35-9420-d02303c7b07f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950608B26009E", + "etag" : "0x8D9ECFC21FA9658", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D950608B26009E\",\"lastModified\":\"2021-07-26T18:09:43.1241886Z\",\"creationTime\":\"2021-07-26T18:09:37.3841603Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:09:43.1241886Z\",\"previousState\":\"disabled\",\"previousStateTransitionTime\":\"2021-07-26T18:09:37.7886633Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:37.4031609Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D9ECFC21FA9658\",\"lastModified\":\"2022-02-11T01:16:29.5620184Z\",\"creationTime\":\"2022-02-11T01:16:23.6499278Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T01:16:29.5620184Z\",\"previousState\":\"disabled\",\"previousStateTransitionTime\":\"2022-02-11T01:16:24.7704702Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T01:16:23.671929Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/terminate?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/terminate?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:42 GMT", + "date" : "Fri, 11 Feb 2022 01:16:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/terminate", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/terminate", "retry-after" : "0", - "request-id" : "988d7be5-6766-435e-83b1-db2015c283b4", + "request-id" : "9357eaa9-979b-45e7-8c0b-72fd61357930", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:43 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:29 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "58a1e36d-d2cc-422b-89b3-52cd37b3b6a5", - "etag" : "0x8D950608B35B579", + "client-request-id" : "4f681ffe-0b8c-4ff6-81ed-4647f63804f9", + "etag" : "0x8D9ECFC221FE58D", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:42 GMT", + "date" : "Fri, 11 Feb 2022 01:16:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "6110b5e0-2361-4b42-9e25-246f89e4372e", + "request-id" : "6bf155f6-f7c3-4140-84b1-d8e2b11d7140", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:43 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:29 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "fc3c9201-8230-4193-ab00-454ba5c3fbf7", + "client-request-id" : "79783d2f-8cff-47b9-9165-fe5f774b7f4e", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950608B35B579", + "etag" : "0x8D9ECFC221FE58D", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D950608B35B579\",\"lastModified\":\"2021-07-26T18:09:43.2271225Z\",\"creationTime\":\"2021-07-26T18:09:37.3841603Z\",\"state\":\"terminating\",\"stateTransitionTime\":\"2021-07-26T18:09:43.2271225Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:09:43.1241886Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:37.4031609Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"myreason\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D9ECFC221FE58D\",\"lastModified\":\"2022-02-11T01:16:29.8065293Z\",\"creationTime\":\"2022-02-11T01:16:23.6499278Z\",\"state\":\"terminating\",\"stateTransitionTime\":\"2022-02-11T01:16:29.8065293Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T01:16:29.5620184Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T01:16:23.671929Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"myreason\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:45 GMT", + "date" : "Fri, 11 Feb 2022 01:16:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "d6c9b77e-b4cc-43a6-977e-6117b06db0b2", + "request-id" : "fc7470ee-9633-48bf-bf22-0393fe50fa02", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:09:43 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:16:29 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "963395ad-ef01-490f-99fd-986341dd5e60", + "client-request-id" : "42c1c6d4-5ecc-48f3-a17f-bf7903c5260f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950608B35B579", + "etag" : "0x8D9ECFC221FE58D", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D950608B35B579\",\"lastModified\":\"2021-07-26T18:09:43.2271225Z\",\"creationTime\":\"2021-07-26T18:09:37.3841603Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-26T18:09:44.2275759Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-26T18:09:43.1241886Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:09:37.4031609Z\",\"endTime\":\"2021-07-26T18:09:44.2275759Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"myreason\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8D9ECFC221FE58D\",\"lastModified\":\"2022-02-11T01:16:29.8065293Z\",\"creationTime\":\"2022-02-11T01:16:23.6499278Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-02-11T01:16:30.7978576Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-02-11T01:16:29.5620184Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T01:16:23.671929Z\",\"endTime\":\"2022-02-11T01:16:30.7978576Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"myreason\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:09:45 GMT", + "date" : "Fri, 11 Feb 2022 01:16:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "e40eb4c2-f227-4ecc-92d5-e968dee32ed2", + "client-request-id" : "802eab9e-6700-49ce-a4de-d21841a9f5fb", "retry-after" : "0", - "request-id" : "e15a4ec7-7330-41c5-860b-e24df9ec3cd8", + "request-id" : "cb76d253-d8eb-44d2-afd9-7f4c17129b76", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/failCreateContainerTaskWithRegularPool.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/failCreateContainerTaskWithRegularPool.json index 4368ea52167b..6b4f01becccc 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/failCreateContainerTaskWithRegularPool.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/failCreateContainerTaskWithRegularPool.json @@ -1,64 +1,64 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:43 GMT", + "date" : "Fri, 11 Feb 2022 01:03:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "8862b1dc-81a7-4c86-857f-3c8aa30dad80", + "request-id" : "4a88e4a7-91e1-40fb-835e-562e5e34ffab", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:43 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:53 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "aa6a3d8c-0d44-4e83-b0d2-6ffce567359d", - "etag" : "0x8D95060AF0E94CA", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "client-request-id" : "6984ba7a-b7ed-4462-9ee3-27d8ca7d97a4", + "etag" : "0x8D9ECFA5F7D5781", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:43 GMT", + "date" : "Fri, 11 Feb 2022 01:03:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks/mytask", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks/mytask", "retry-after" : "0", - "request-id" : "38be5b2e-5f8c-451d-a106-0a2d5f2ef483", + "request-id" : "24200823-b1ee-4554-806c-8882c5f52d7a", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:43 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:53 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "1759d4fb-b8eb-43b8-b20a-1ed257bcb8a9", - "etag" : "0x8D95060AF1A0683", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks/mytask", + "client-request-id" : "1426b18a-5b89-44d5-9c15-a8b7b988938d", + "etag" : "0x8D9ECFA5F8F5F9C", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:43 GMT", + "date" : "Fri, 11 Feb 2022 01:03:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "bc90b8ab-78eb-4fb8-9c38-eb1a6f7090bf", + "client-request-id" : "e3e067b1-493b-4576-800c-219c4f1c5835", "retry-after" : "0", - "request-id" : "b8e2a9b3-d215-48d3-9458-95e872e66ca2", + "request-id" : "7fcd6388-a940-4b27-9a87-1ff9fb0a5888", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/failIfPoisonTaskTooLarge.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/failIfPoisonTaskTooLarge.json index 6c5bce1dbc5f..71ae957cee1a 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/failIfPoisonTaskTooLarge.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/failIfPoisonTaskTooLarge.json @@ -1,62 +1,62 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:20:32 GMT", + "date" : "Fri, 11 Feb 2022 01:03:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "04b01a46-b414-4f37-9567-7ae5d5c9e8de", + "request-id" : "bb4a522e-a0fc-4124-9a7c-3031481898e2", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:20:32 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:55 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ba684fee-8708-4131-86b7-3a79ae2a12f2", - "etag" : "0x8D950620E6AF0B9", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "client-request-id" : "ea0a9af1-460c-4b89-83a9-d581d216f711", + "etag" : "0x8D9ECFA60520D97", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-failIfPoisonTaskTooLarge/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-failIfPoisonTaskTooLarge/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:20:32 GMT", - "content-length" : "463", + "date" : "Fri, 11 Feb 2022 01:03:54 GMT", + "content-length" : "449", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "11173d26-cc70-4ea5-b5ce-7ddd35206346", + "client-request-id" : "faf2e612-d246-49d7-93fc-6de873d7c40a", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "3a5691ea-9af4-4c2c-9946-e3c92e6a484e", + "request-id" : "c08ca366-2d38-4bc6-ab3b-d8ebc82a545d", "StatusCode" : "413", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"RequestBodyTooLarge\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The request body is too large and exceeds the maximum permissible limit.\\nRequestId:3a5691ea-9af4-4c2c-9946-e3c92e6a484e\\nTime:2021-07-26T18:20:33.4702968Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"MaxLimit\",\"value\":\"1048576\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"RequestBodyTooLarge\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The request body is too large and exceeds the maximum permissible limit.\\nRequestId:c08ca366-2d38-4bc6-ab3b-d8ebc82a545d\\nTime:2022-02-11T01:03:55.7181313Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"MaxLimit\",\"value\":\"1048576\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-failIfPoisonTaskTooLarge?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-failIfPoisonTaskTooLarge?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:20:32 GMT", + "date" : "Fri, 11 Feb 2022 01:03:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "48e7b3db-5a54-4131-8926-38b8bc737564", + "client-request-id" : "210d9c95-5495-4389-bbbb-16f9c20a45b0", "retry-after" : "0", - "request-id" : "122a81ea-8aa8-439e-b9b6-7671fc6845c6", + "request-id" : "d6855f3e-d26f-49da-9a0b-63e5b2a949f7", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/shouldFailOnCreateContainerPoolWithRegularImage.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/shouldFailOnCreateContainerPoolWithRegularImage.json index 69d48d4e98f7..ac03b87167b8 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/shouldFailOnCreateContainerPoolWithRegularImage.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/shouldFailOnCreateContainerPoolWithRegularImage.json @@ -1,39 +1,39 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:05 GMT", - "content-length" : "651", + "date" : "Fri, 11 Feb 2022 00:53:58 GMT", + "content-length" : "637", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "a6a59ad8-0ac6-423e-92f5-ee3f84c65117", + "client-request-id" : "d0735ed6-abb3-4c25-8d6d-5ba39d20e257", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "2bbf375f-e4eb-4370-854f-c1a51f0d8ae7", + "request-id" : "ef66546c-94c8-4571-9da5-2441d0ef633d", "StatusCode" : "400", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"InvalidPropertyValue\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The value provided for one of the properties in the request body is invalid.\\nRequestId:2bbf375f-e4eb-4370-854f-c1a51f0d8ae7\\nTime:2021-07-27T14:44:05.4289832Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"PropertyName\",\"value\":\"containerConfiguration\"\r\n },{\r\n \"key\":\"Reason\",\"value\":\"The specified imageReference with publisher Canonical offer UbuntuServer sku 16.04-LTS does not support container feature.\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"InvalidPropertyValue\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The value provided for one of the properties in the request body is invalid.\\nRequestId:ef66546c-94c8-4571-9da5-2441d0ef633d\\nTime:2022-02-11T00:53:59.2833190Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"PropertyName\",\"value\":\"containerConfiguration\"\r\n },{\r\n \"key\":\"Reason\",\"value\":\"The specified imageReference with publisher Canonical offer UbuntuServer sku 18.04-lts does not support container feature.\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-createContainerRegImage?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-createContainerRegImage?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:05 GMT", + "date" : "Fri, 11 Feb 2022 00:53:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "9d53b05a-1ea6-4050-a577-d5f38078a3fe", + "client-request-id" : "1b115f45-297c-4695-b6dc-da95983866d4", "retry-after" : "0", - "request-id" : "40067f5e-709a-4cb6-87d2-008dae8578b5", + "request-id" : "1fb5085e-088d-425a-964b-004cade00760", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/shouldFailOnCreateLinuxPoolWithWindowsConfig.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/shouldFailOnCreateLinuxPoolWithWindowsConfig.json index d086b4bfba54..230ff7022462 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/shouldFailOnCreateLinuxPoolWithWindowsConfig.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/shouldFailOnCreateLinuxPoolWithWindowsConfig.json @@ -1,39 +1,39 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:50:41 GMT", - "content-length" : "682", + "date" : "Fri, 11 Feb 2022 01:03:09 GMT", + "content-length" : "668", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "cf8bd1a4-29fa-4c3a-9ee5-f34ac4b956b1", + "client-request-id" : "71ed0767-d5b9-43df-b595-b00b6ef63942", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "3e824a98-dda9-4e5a-87ec-00c7ebe0b886", + "request-id" : "1cc995db-9efa-424a-afd2-ce9e84ae8d9e", "StatusCode" : "400", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"InvalidPropertyValue\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The value provided for one of the properties in the request body is invalid.\\nRequestId:3e824a98-dda9-4e5a-87ec-00c7ebe0b886\\nTime:2021-07-27T14:50:41.2348334Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"PropertyName\",\"value\":\"windowsUserConfiguration\"\r\n },{\r\n \"key\":\"Reason\",\"value\":\"The user configuration for user account 'testaccount' has a mismatch with the OS (Windows/Linux) configuration specified in VirtualMachineConfiguration\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"InvalidPropertyValue\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The value provided for one of the properties in the request body is invalid.\\nRequestId:1cc995db-9efa-424a-afd2-ce9e84ae8d9e\\nTime:2022-02-11T01:03:09.6538101Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"PropertyName\",\"value\":\"windowsUserConfiguration\"\r\n },{\r\n \"key\":\"Reason\",\"value\":\"The user configuration for user account 'testaccount' has a mismatch with the OS (Windows/Linux) configuration specified in VirtualMachineConfiguration\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "HEAD", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-createLinuxPool?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-createLinuxPool?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:50:41 GMT", + "date" : "Fri, 11 Feb 2022 01:03:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "5e0e2ca5-a435-4895-9c11-2baebace26bb", + "client-request-id" : "183db4ba-6918-461d-ac1a-d8d92c160370", "retry-after" : "0", - "request-id" : "b3efd2d5-d94a-4f61-b262-b7940bcb8d73", + "request-id" : "e5b316aa-0b51-4969-a4e9-a1ba3a5eace8", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testAddMultiTasks.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testAddMultiTasks.json deleted file mode 100644 index 5a9c17b9a6cf..000000000000 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testAddMultiTasks.json +++ /dev/null @@ -1,279 +0,0 @@ -{ - "networkCallRecords" : [ { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1", - "retry-after" : "0", - "request-id" : "0306c57e-bc48-4265-91ed-c541b285106a", - "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 14 Apr 2020 17:37:43 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "7873c62b-01b2-4764-9443-30f01b3c912f", - "etag" : "0x8D7E09A89729F83", - "location" : "https://sdktest2.westcentralus.batch.azure.com/jobs/job-1", - "dataserviceversion" : "3.0", - "Body" : "" - } - }, { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/addtaskcollection?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "b85ba514-a9c5-435e-a86b-9397950f6d00", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "186da41d-c5e5-4967-a575-f17317ae8faa", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask600\",\"eTag\":\"0x8D7E09A898D79AE\",\"lastModified\":\"2020-04-14T17:37:43.3550254Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask600\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask601\",\"eTag\":\"0x8D7E09A898EB226\",\"lastModified\":\"2020-04-14T17:37:43.3630246Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask601\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask632\",\"eTag\":\"0x8D7E09A899C46E0\",\"lastModified\":\"2020-04-14T17:37:43.4520288Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask632\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask610\",\"eTag\":\"0x8D7E09A89B77009\",\"lastModified\":\"2020-04-14T17:37:43.6300297Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask610\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask607\",\"eTag\":\"0x8D7E09A89B77009\",\"lastModified\":\"2020-04-14T17:37:43.6300297Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask607\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask613\",\"eTag\":\"0x8D7E09A89C097D0\",\"lastModified\":\"2020-04-14T17:37:43.6900304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask613\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask623\",\"eTag\":\"0x8D7E09A89CAF813\",\"lastModified\":\"2020-04-14T17:37:43.7580307Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask623\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask620\",\"eTag\":\"0x8D7E09A89CAE713\",\"lastModified\":\"2020-04-14T17:37:43.7575955Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask620\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask627\",\"eTag\":\"0x8D7E09A899C4985\",\"lastModified\":\"2020-04-14T17:37:43.4520965Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask627\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask686\",\"eTag\":\"0x8D7E09A89D3F8C0\",\"lastModified\":\"2020-04-14T17:37:43.8170304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask686\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask603\",\"eTag\":\"0x8D7E09A89B2E603\",\"lastModified\":\"2020-04-14T17:37:43.6002819Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask603\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask602\",\"eTag\":\"0x8D7E09A89B30377\",\"lastModified\":\"2020-04-14T17:37:43.6010359Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask602\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask604\",\"eTag\":\"0x8D7E09A89B4D7F4\",\"lastModified\":\"2020-04-14T17:37:43.6130292Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask604\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask606\",\"eTag\":\"0x8D7E09A89B5DDC4\",\"lastModified\":\"2020-04-14T17:37:43.6197316Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask606\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask605\",\"eTag\":\"0x8D7E09A89B61074\",\"lastModified\":\"2020-04-14T17:37:43.6210292Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask605\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask609\",\"eTag\":\"0x8D7E09A89B61074\",\"lastModified\":\"2020-04-14T17:37:43.6210292Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask609\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask608\",\"eTag\":\"0x8D7E09A89B61074\",\"lastModified\":\"2020-04-14T17:37:43.6210292Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask608\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask614\",\"eTag\":\"0x8D7E09A89C0BEE6\",\"lastModified\":\"2020-04-14T17:37:43.691031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask614\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask617\",\"eTag\":\"0x8D7E09A89C0BEE6\",\"lastModified\":\"2020-04-14T17:37:43.691031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask617\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask611\",\"eTag\":\"0x8D7E09A89C1D667\",\"lastModified\":\"2020-04-14T17:37:43.6981863Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask611\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask612\",\"eTag\":\"0x8D7E09A89C1D667\",\"lastModified\":\"2020-04-14T17:37:43.6981863Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask612\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask615\",\"eTag\":\"0x8D7E09A89C0BEE6\",\"lastModified\":\"2020-04-14T17:37:43.691031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask615\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask616\",\"eTag\":\"0x8D7E09A89C097D0\",\"lastModified\":\"2020-04-14T17:37:43.6900304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask616\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask618\",\"eTag\":\"0x8D7E09A89C3A51D\",\"lastModified\":\"2020-04-14T17:37:43.7100317Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask618\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask626\",\"eTag\":\"0x8D7E09A89CB1F23\",\"lastModified\":\"2020-04-14T17:37:43.7590307Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask626\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask630\",\"eTag\":\"0x8D7E09A89CB4636\",\"lastModified\":\"2020-04-14T17:37:43.760031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask630\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask637\",\"eTag\":\"0x8D7E09A89CB4636\",\"lastModified\":\"2020-04-14T17:37:43.760031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask637\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask619\",\"eTag\":\"0x8D7E09A89C552C9\",\"lastModified\":\"2020-04-14T17:37:43.7210313Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask619\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask624\",\"eTag\":\"0x8D7E09A89CB1F23\",\"lastModified\":\"2020-04-14T17:37:43.7590307Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask624\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask622\",\"eTag\":\"0x8D7E09A89CAF813\",\"lastModified\":\"2020-04-14T17:37:43.7580307Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask622\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask631\",\"eTag\":\"0x8D7E09A89CB6D47\",\"lastModified\":\"2020-04-14T17:37:43.7610311Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask631\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask629\",\"eTag\":\"0x8D7E09A89CB4636\",\"lastModified\":\"2020-04-14T17:37:43.760031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask629\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask645\",\"eTag\":\"0x8D7E09A89CCA5C9\",\"lastModified\":\"2020-04-14T17:37:43.7690313Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask645\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask628\",\"eTag\":\"0x8D7E09A89CB1F23\",\"lastModified\":\"2020-04-14T17:37:43.7590307Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask628\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask633\",\"eTag\":\"0x8D7E09A89CC6D48\",\"lastModified\":\"2020-04-14T17:37:43.7675848Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask633\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask635\",\"eTag\":\"0x8D7E09A89CC6D48\",\"lastModified\":\"2020-04-14T17:37:43.7675848Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask635\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask642\",\"eTag\":\"0x8D7E09A89CCCCD8\",\"lastModified\":\"2020-04-14T17:37:43.7700312Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask642\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask638\",\"eTag\":\"0x8D7E09A89CC658D\",\"lastModified\":\"2020-04-14T17:37:43.7673869Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask638\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask641\",\"eTag\":\"0x8D7E09A89CCA5C9\",\"lastModified\":\"2020-04-14T17:37:43.7690313Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask641\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask653\",\"eTag\":\"0x8D7E09A89CF71FB\",\"lastModified\":\"2020-04-14T17:37:43.7873659Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask653\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask650\",\"eTag\":\"0x8D7E09A89CF71FB\",\"lastModified\":\"2020-04-14T17:37:43.7873659Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask650\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask646\",\"eTag\":\"0x8D7E09A89CCA5C9\",\"lastModified\":\"2020-04-14T17:37:43.7690313Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask646\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask639\",\"eTag\":\"0x8D7E09A89CCA5C9\",\"lastModified\":\"2020-04-14T17:37:43.7690313Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask639\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask640\",\"eTag\":\"0x8D7E09A89CC7EB9\",\"lastModified\":\"2020-04-14T17:37:43.7680313Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask640\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask644\",\"eTag\":\"0x8D7E09A89CC7EB9\",\"lastModified\":\"2020-04-14T17:37:43.7680313Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask644\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask643\",\"eTag\":\"0x8D7E09A89CC7EB9\",\"lastModified\":\"2020-04-14T17:37:43.7680313Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask643\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask625\",\"eTag\":\"0x8D7E09A89CAF813\",\"lastModified\":\"2020-04-14T17:37:43.7580307Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask625\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask651\",\"eTag\":\"0x8D7E09A89CE5372\",\"lastModified\":\"2020-04-14T17:37:43.7800306Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask651\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask634\",\"eTag\":\"0x8D7E09A89CB4636\",\"lastModified\":\"2020-04-14T17:37:43.760031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask634\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask621\",\"eTag\":\"0x8D7E09A89CAF813\",\"lastModified\":\"2020-04-14T17:37:43.7580307Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask621\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask649\",\"eTag\":\"0x8D7E09A89CCCCD8\",\"lastModified\":\"2020-04-14T17:37:43.7700312Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask649\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask636\",\"eTag\":\"0x8D7E09A89CB6D47\",\"lastModified\":\"2020-04-14T17:37:43.7610311Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask636\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask652\",\"eTag\":\"0x8D7E09A89CF6F5C\",\"lastModified\":\"2020-04-14T17:37:43.7872988Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask652\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask654\",\"eTag\":\"0x8D7E09A89CF71FB\",\"lastModified\":\"2020-04-14T17:37:43.7873659Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask654\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask657\",\"eTag\":\"0x8D7E09A89CF8BFC\",\"lastModified\":\"2020-04-14T17:37:43.7880316Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask657\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask647\",\"eTag\":\"0x8D7E09A89CCCCD8\",\"lastModified\":\"2020-04-14T17:37:43.7700312Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask647\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask648\",\"eTag\":\"0x8D7E09A89CE5372\",\"lastModified\":\"2020-04-14T17:37:43.7800306Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask648\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask655\",\"eTag\":\"0x8D7E09A89CF8BFC\",\"lastModified\":\"2020-04-14T17:37:43.7880316Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask655\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask656\",\"eTag\":\"0x8D7E09A89CFB373\",\"lastModified\":\"2020-04-14T17:37:43.7890419Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask656\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask666\",\"eTag\":\"0x8D7E09A89D2993E\",\"lastModified\":\"2020-04-14T17:37:43.8080318Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask666\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask659\",\"eTag\":\"0x8D7E09A89CFB373\",\"lastModified\":\"2020-04-14T17:37:43.7890419Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask659\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask665\",\"eTag\":\"0x8D7E09A89D27942\",\"lastModified\":\"2020-04-14T17:37:43.807213Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask665\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask668\",\"eTag\":\"0x8D7E09A89D27942\",\"lastModified\":\"2020-04-14T17:37:43.807213Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask668\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask664\",\"eTag\":\"0x8D7E09A89D27942\",\"lastModified\":\"2020-04-14T17:37:43.807213Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask664\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask661\",\"eTag\":\"0x8D7E09A89D2C042\",\"lastModified\":\"2020-04-14T17:37:43.8090306Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask661\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask675\",\"eTag\":\"0x8D7E09A89D41FE1\",\"lastModified\":\"2020-04-14T17:37:43.8180321Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask675\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask678\",\"eTag\":\"0x8D7E09A89D41FE1\",\"lastModified\":\"2020-04-14T17:37:43.8180321Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask678\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask671\",\"eTag\":\"0x8D7E09A89D2C042\",\"lastModified\":\"2020-04-14T17:37:43.8090306Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask671\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask669\",\"eTag\":\"0x8D7E09A89D3F8C0\",\"lastModified\":\"2020-04-14T17:37:43.8170304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask669\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask658\",\"eTag\":\"0x8D7E09A89D27942\",\"lastModified\":\"2020-04-14T17:37:43.807213Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask658\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask660\",\"eTag\":\"0x8D7E09A89D2993E\",\"lastModified\":\"2020-04-14T17:37:43.8080318Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask660\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask677\",\"eTag\":\"0x8D7E09A89D446E8\",\"lastModified\":\"2020-04-14T17:37:43.8190312Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask677\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask662\",\"eTag\":\"0x8D7E09A89D2993E\",\"lastModified\":\"2020-04-14T17:37:43.8080318Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask662\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask663\",\"eTag\":\"0x8D7E09A89D2C042\",\"lastModified\":\"2020-04-14T17:37:43.8090306Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask663\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask679\",\"eTag\":\"0x8D7E09A89D578B7\",\"lastModified\":\"2020-04-14T17:37:43.8268599Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask679\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask681\",\"eTag\":\"0x8D7E09A89D57F6A\",\"lastModified\":\"2020-04-14T17:37:43.8270314Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask681\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask676\",\"eTag\":\"0x8D7E09A89D41FE1\",\"lastModified\":\"2020-04-14T17:37:43.8180321Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask676\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask690\",\"eTag\":\"0x8D7E09A89D46DF6\",\"lastModified\":\"2020-04-14T17:37:43.820031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask690\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask685\",\"eTag\":\"0x8D7E09A89D46DF6\",\"lastModified\":\"2020-04-14T17:37:43.820031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask685\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask672\",\"eTag\":\"0x8D7E09A89D46DF6\",\"lastModified\":\"2020-04-14T17:37:43.820031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask672\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask680\",\"eTag\":\"0x8D7E09A89D446E8\",\"lastModified\":\"2020-04-14T17:37:43.8190312Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask680\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask667\",\"eTag\":\"0x8D7E09A89D2993E\",\"lastModified\":\"2020-04-14T17:37:43.8080318Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask667\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask684\",\"eTag\":\"0x8D7E09A89D46DF6\",\"lastModified\":\"2020-04-14T17:37:43.820031Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask684\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask689\",\"eTag\":\"0x8D7E09A89D57F6A\",\"lastModified\":\"2020-04-14T17:37:43.8270314Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask689\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask688\",\"eTag\":\"0x8D7E09A89D5A687\",\"lastModified\":\"2020-04-14T17:37:43.8280327Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask688\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask696\",\"eTag\":\"0x8D7E09A89D57F6A\",\"lastModified\":\"2020-04-14T17:37:43.8270314Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask696\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask673\",\"eTag\":\"0x8D7E09A89D3F8C0\",\"lastModified\":\"2020-04-14T17:37:43.8170304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask673\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask674\",\"eTag\":\"0x8D7E09A89D446E8\",\"lastModified\":\"2020-04-14T17:37:43.8190312Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask674\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask683\",\"eTag\":\"0x8D7E09A89D5A687\",\"lastModified\":\"2020-04-14T17:37:43.8280327Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask683\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask691\",\"eTag\":\"0x8D7E09A89D5A687\",\"lastModified\":\"2020-04-14T17:37:43.8280327Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask691\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask682\",\"eTag\":\"0x8D7E09A89D41FE1\",\"lastModified\":\"2020-04-14T17:37:43.8180321Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask682\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask693\",\"eTag\":\"0x8D7E09A89D88CA0\",\"lastModified\":\"2020-04-14T17:37:43.8470304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask693\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask687\",\"eTag\":\"0x8D7E09A89D5CD96\",\"lastModified\":\"2020-04-14T17:37:43.8290326Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask687\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask694\",\"eTag\":\"0x8D7E09A89D5CD96\",\"lastModified\":\"2020-04-14T17:37:43.8290326Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask694\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask670\",\"eTag\":\"0x8D7E09A89D88CA0\",\"lastModified\":\"2020-04-14T17:37:43.8470304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask670\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask695\",\"eTag\":\"0x8D7E09A89D8B3C1\",\"lastModified\":\"2020-04-14T17:37:43.8480321Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask695\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask699\",\"eTag\":\"0x8D7E09A89D88CA0\",\"lastModified\":\"2020-04-14T17:37:43.8470304Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask699\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask698\",\"eTag\":\"0x8D7E09A89DA3A58\",\"lastModified\":\"2020-04-14T17:37:43.8580312Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask698\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask697\",\"eTag\":\"0x8D7E09A89D5CD96\",\"lastModified\":\"2020-04-14T17:37:43.8290326Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask697\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask692\",\"eTag\":\"0x8D7E09A89D5A687\",\"lastModified\":\"2020-04-14T17:37:43.8280327Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask692\"\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/addtaskcollection?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "fd87df67-3dac-41ad-aa11-f4a3e09dd9a2", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "8f9f38ec-57db-44cf-b846-6897e4dfcf68", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask0\",\"eTag\":\"0x8D7E09A89D65B8F\",\"lastModified\":\"2020-04-14T17:37:43.8326671Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask0\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask8\",\"eTag\":\"0x8D7E09A89DAEF6E\",\"lastModified\":\"2020-04-14T17:37:43.862667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask8\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask41\",\"eTag\":\"0x8D7E09A89E9C3CA\",\"lastModified\":\"2020-04-14T17:37:43.9598538Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask41\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask3\",\"eTag\":\"0x8D7E09A8A02E9BD\",\"lastModified\":\"2020-04-14T17:37:44.1246653Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask3\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask5\",\"eTag\":\"0x8D7E09A8A02E9BD\",\"lastModified\":\"2020-04-14T17:37:44.1246653Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask5\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask26\",\"eTag\":\"0x8D7E09A8A13B2A5\",\"lastModified\":\"2020-04-14T17:37:44.2346661Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask26\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask27\",\"eTag\":\"0x8D7E09A8A13B2A5\",\"lastModified\":\"2020-04-14T17:37:44.2346661Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask27\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask124\",\"eTag\":\"0x8D7E09A8A26EC94\",\"lastModified\":\"2020-04-14T17:37:44.3606676Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask124\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask126\",\"eTag\":\"0x8D7E09A8A26EC94\",\"lastModified\":\"2020-04-14T17:37:44.3606676Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask126\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask1\",\"eTag\":\"0x8D7E09A8A0310CE\",\"lastModified\":\"2020-04-14T17:37:44.1256654Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask1\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask6\",\"eTag\":\"0x8D7E09A8A0310CE\",\"lastModified\":\"2020-04-14T17:37:44.1256654Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask6\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask7\",\"eTag\":\"0x8D7E09A8A0310CE\",\"lastModified\":\"2020-04-14T17:37:44.1256654Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask7\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask2\",\"eTag\":\"0x8D7E09A8A02E9BD\",\"lastModified\":\"2020-04-14T17:37:44.1246653Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask2\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask9\",\"eTag\":\"0x8D7E09A8A0337D4\",\"lastModified\":\"2020-04-14T17:37:44.1266644Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask9\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask4\",\"eTag\":\"0x8D7E09A8A02E9BD\",\"lastModified\":\"2020-04-14T17:37:44.1246653Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask4\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask10\",\"eTag\":\"0x8D7E09A8A075686\",\"lastModified\":\"2020-04-14T17:37:44.1536646Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask10\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask11\",\"eTag\":\"0x8D7E09A8A07CBC3\",\"lastModified\":\"2020-04-14T17:37:44.1566659Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask11\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask18\",\"eTag\":\"0x8D7E09A8A092B55\",\"lastModified\":\"2020-04-14T17:37:44.1656661Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask18\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask17\",\"eTag\":\"0x8D7E09A8A0A3CC7\",\"lastModified\":\"2020-04-14T17:37:44.1726663Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask17\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask12\",\"eTag\":\"0x8D7E09A8A095267\",\"lastModified\":\"2020-04-14T17:37:44.1666663Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask12\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask15\",\"eTag\":\"0x8D7E09A8A0DE63D\",\"lastModified\":\"2020-04-14T17:37:44.1966653Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask15\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask13\",\"eTag\":\"0x8D7E09A8A0A63D6\",\"lastModified\":\"2020-04-14T17:37:44.1736662Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask13\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask20\",\"eTag\":\"0x8D7E09A8A095267\",\"lastModified\":\"2020-04-14T17:37:44.1666663Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask20\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask16\",\"eTag\":\"0x8D7E09A8A0A3CC7\",\"lastModified\":\"2020-04-14T17:37:44.1726663Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask16\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask24\",\"eTag\":\"0x8D7E09A8A0AB1FE\",\"lastModified\":\"2020-04-14T17:37:44.175667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask24\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask22\",\"eTag\":\"0x8D7E09A8A0DBF57\",\"lastModified\":\"2020-04-14T17:37:44.1956695Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask22\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask14\",\"eTag\":\"0x8D7E09A8A095267\",\"lastModified\":\"2020-04-14T17:37:44.1666663Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask14\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask25\",\"eTag\":\"0x8D7E09A8A0DE63D\",\"lastModified\":\"2020-04-14T17:37:44.1966653Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask25\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask21\",\"eTag\":\"0x8D7E09A8A0A3CC7\",\"lastModified\":\"2020-04-14T17:37:44.1726663Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask21\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask23\",\"eTag\":\"0x8D7E09A8A0DBF57\",\"lastModified\":\"2020-04-14T17:37:44.1956695Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask23\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask19\",\"eTag\":\"0x8D7E09A8A092B55\",\"lastModified\":\"2020-04-14T17:37:44.1656661Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask19\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask29\",\"eTag\":\"0x8D7E09A8A14A90E\",\"lastModified\":\"2020-04-14T17:37:44.2409742Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask29\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask40\",\"eTag\":\"0x8D7E09A8A14EB2E\",\"lastModified\":\"2020-04-14T17:37:44.242667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask40\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask33\",\"eTag\":\"0x8D7E09A8A151229\",\"lastModified\":\"2020-04-14T17:37:44.2436649Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask33\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask31\",\"eTag\":\"0x8D7E09A8A14EB2E\",\"lastModified\":\"2020-04-14T17:37:44.242667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask31\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask35\",\"eTag\":\"0x8D7E09A8A14C411\",\"lastModified\":\"2020-04-14T17:37:44.2416657Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask35\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask51\",\"eTag\":\"0x8D7E09A8A1AB780\",\"lastModified\":\"2020-04-14T17:37:44.2806656Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask51\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask55\",\"eTag\":\"0x8D7E09A8A1ADEA6\",\"lastModified\":\"2020-04-14T17:37:44.2816678Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask55\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask30\",\"eTag\":\"0x8D7E09A8A19A628\",\"lastModified\":\"2020-04-14T17:37:44.273668Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask30\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask36\",\"eTag\":\"0x8D7E09A8A162771\",\"lastModified\":\"2020-04-14T17:37:44.2507633Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask36\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask37\",\"eTag\":\"0x8D7E09A8A197F10\",\"lastModified\":\"2020-04-14T17:37:44.2726672Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask37\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask48\",\"eTag\":\"0x8D7E09A8A197F10\",\"lastModified\":\"2020-04-14T17:37:44.2726672Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask48\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask56\",\"eTag\":\"0x8D7E09A8A1ADEA6\",\"lastModified\":\"2020-04-14T17:37:44.2816678Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask56\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask45\",\"eTag\":\"0x8D7E09A8A19A628\",\"lastModified\":\"2020-04-14T17:37:44.273668Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask45\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask32\",\"eTag\":\"0x8D7E09A8A14C411\",\"lastModified\":\"2020-04-14T17:37:44.2416657Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask32\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask42\",\"eTag\":\"0x8D7E09A8A14C411\",\"lastModified\":\"2020-04-14T17:37:44.2416657Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask42\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask28\",\"eTag\":\"0x8D7E09A8A151229\",\"lastModified\":\"2020-04-14T17:37:44.2436649Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask28\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask53\",\"eTag\":\"0x8D7E09A8A1ADEA6\",\"lastModified\":\"2020-04-14T17:37:44.2816678Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask53\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask34\",\"eTag\":\"0x8D7E09A8A14EB2E\",\"lastModified\":\"2020-04-14T17:37:44.242667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask34\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask44\",\"eTag\":\"0x8D7E09A8A1957F5\",\"lastModified\":\"2020-04-14T17:37:44.2716661Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask44\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask50\",\"eTag\":\"0x8D7E09A8A1AB780\",\"lastModified\":\"2020-04-14T17:37:44.2806656Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask50\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask43\",\"eTag\":\"0x8D7E09A8A1A9855\",\"lastModified\":\"2020-04-14T17:37:44.2798677Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask43\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask46\",\"eTag\":\"0x8D7E09A8A19A628\",\"lastModified\":\"2020-04-14T17:37:44.273668Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask46\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask39\",\"eTag\":\"0x8D7E09A8A15393F\",\"lastModified\":\"2020-04-14T17:37:44.2446655Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask39\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask38\",\"eTag\":\"0x8D7E09A8A151229\",\"lastModified\":\"2020-04-14T17:37:44.2436649Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask38\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask49\",\"eTag\":\"0x8D7E09A8A197F10\",\"lastModified\":\"2020-04-14T17:37:44.2726672Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask49\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask47\",\"eTag\":\"0x8D7E09A8A19A628\",\"lastModified\":\"2020-04-14T17:37:44.273668Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask47\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask52\",\"eTag\":\"0x8D7E09A8A1ADEA6\",\"lastModified\":\"2020-04-14T17:37:44.2816678Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask52\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask85\",\"eTag\":\"0x8D7E09A8A1DF334\",\"lastModified\":\"2020-04-14T17:37:44.3018548Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask85\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask79\",\"eTag\":\"0x8D7E09A8A1F0BED\",\"lastModified\":\"2020-04-14T17:37:44.3090413Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask79\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask78\",\"eTag\":\"0x8D7E09A8A1E12F1\",\"lastModified\":\"2020-04-14T17:37:44.3026673Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask78\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask75\",\"eTag\":\"0x8D7E09A8A1E12F1\",\"lastModified\":\"2020-04-14T17:37:44.3026673Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask75\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask73\",\"eTag\":\"0x8D7E09A8A1F4B5D\",\"lastModified\":\"2020-04-14T17:37:44.3106653Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask73\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask54\",\"eTag\":\"0x8D7E09A8A1B059F\",\"lastModified\":\"2020-04-14T17:37:44.2826655Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask54\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask93\",\"eTag\":\"0x8D7E09A8A212035\",\"lastModified\":\"2020-04-14T17:37:44.3226677Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask93\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask70\",\"eTag\":\"0x8D7E09A8A20F927\",\"lastModified\":\"2020-04-14T17:37:44.3216679Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask70\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask88\",\"eTag\":\"0x8D7E09A8A21473B\",\"lastModified\":\"2020-04-14T17:37:44.3236667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask88\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask63\",\"eTag\":\"0x8D7E09A8A1DC4CE\",\"lastModified\":\"2020-04-14T17:37:44.300667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask63\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask86\",\"eTag\":\"0x8D7E09A8A219566\",\"lastModified\":\"2020-04-14T17:37:44.3256678Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask86\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask81\",\"eTag\":\"0x8D7E09A8A1F4B5D\",\"lastModified\":\"2020-04-14T17:37:44.3106653Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask81\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask120\",\"eTag\":\"0x8D7E09A8A216E48\",\"lastModified\":\"2020-04-14T17:37:44.3246664Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask120\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask57\",\"eTag\":\"0x8D7E09A8A1B059F\",\"lastModified\":\"2020-04-14T17:37:44.2826655Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask57\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask64\",\"eTag\":\"0x8D7E09A8A1C8C4D\",\"lastModified\":\"2020-04-14T17:37:44.2926669Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask64\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask58\",\"eTag\":\"0x8D7E09A8A1C3E2E\",\"lastModified\":\"2020-04-14T17:37:44.290667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask58\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask68\",\"eTag\":\"0x8D7E09A8A1DF334\",\"lastModified\":\"2020-04-14T17:37:44.3018548Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask68\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask61\",\"eTag\":\"0x8D7E09A8A1F2467\",\"lastModified\":\"2020-04-14T17:37:44.3096679Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask61\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask67\",\"eTag\":\"0x8D7E09A8A1E12F1\",\"lastModified\":\"2020-04-14T17:37:44.3026673Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask67\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask92\",\"eTag\":\"0x8D7E09A8A1E12F1\",\"lastModified\":\"2020-04-14T17:37:44.3026673Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask92\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask76\",\"eTag\":\"0x8D7E09A8A212035\",\"lastModified\":\"2020-04-14T17:37:44.3226677Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask76\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask66\",\"eTag\":\"0x8D7E09A8A1C8C4D\",\"lastModified\":\"2020-04-14T17:37:44.2926669Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask66\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask59\",\"eTag\":\"0x8D7E09A8A20F927\",\"lastModified\":\"2020-04-14T17:37:44.3216679Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask59\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask91\",\"eTag\":\"0x8D7E09A8A1F4B5D\",\"lastModified\":\"2020-04-14T17:37:44.3106653Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask91\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask106\",\"eTag\":\"0x8D7E09A8A21473B\",\"lastModified\":\"2020-04-14T17:37:44.3236667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask106\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask65\",\"eTag\":\"0x8D7E09A8A1E12F1\",\"lastModified\":\"2020-04-14T17:37:44.3026673Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask65\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask90\",\"eTag\":\"0x8D7E09A8A21473B\",\"lastModified\":\"2020-04-14T17:37:44.3236667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask90\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask62\",\"eTag\":\"0x8D7E09A8A212035\",\"lastModified\":\"2020-04-14T17:37:44.3226677Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask62\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask84\",\"eTag\":\"0x8D7E09A8A220DE7\",\"lastModified\":\"2020-04-14T17:37:44.3287527Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask84\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask122\",\"eTag\":\"0x8D7E09A8A22320C\",\"lastModified\":\"2020-04-14T17:37:44.329678Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask122\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask72\",\"eTag\":\"0x8D7E09A8A22320C\",\"lastModified\":\"2020-04-14T17:37:44.329678Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask72\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask71\",\"eTag\":\"0x8D7E09A8A212035\",\"lastModified\":\"2020-04-14T17:37:44.3226677Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask71\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask87\",\"eTag\":\"0x8D7E09A8A220DE7\",\"lastModified\":\"2020-04-14T17:37:44.3287527Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask87\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask89\",\"eTag\":\"0x8D7E09A8A1F2467\",\"lastModified\":\"2020-04-14T17:37:44.3096679Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask89\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask74\",\"eTag\":\"0x8D7E09A8A216E48\",\"lastModified\":\"2020-04-14T17:37:44.3246664Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask74\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask69\",\"eTag\":\"0x8D7E09A8A1C8C4D\",\"lastModified\":\"2020-04-14T17:37:44.2926669Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask69\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask60\",\"eTag\":\"0x8D7E09A8A1DF334\",\"lastModified\":\"2020-04-14T17:37:44.3018548Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask60\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask82\",\"eTag\":\"0x8D7E09A8A2396CD\",\"lastModified\":\"2020-04-14T17:37:44.3388109Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask82\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask83\",\"eTag\":\"0x8D7E09A8A20F927\",\"lastModified\":\"2020-04-14T17:37:44.3216679Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask83\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask119\",\"eTag\":\"0x8D7E09A8A21473B\",\"lastModified\":\"2020-04-14T17:37:44.3236667Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask119\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask121\",\"eTag\":\"0x8D7E09A8A29F9D8\",\"lastModified\":\"2020-04-14T17:37:44.380668Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask121\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask77\",\"eTag\":\"0x8D7E09A8A1F4B5D\",\"lastModified\":\"2020-04-14T17:37:44.3106653Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask77\"\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/addtaskcollection?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "36c9dc45-86f9-412d-b9ec-47a3aa8d1609", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "fb30a7f5-d76d-4e2c-9987-596aad32c922", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask800\",\"eTag\":\"0x8D7E09A89D673A7\",\"lastModified\":\"2020-04-14T17:37:43.8332839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask800\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask820\",\"eTag\":\"0x8D7E09A89E3FD06\",\"lastModified\":\"2020-04-14T17:37:43.9219974Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask820\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask899\",\"eTag\":\"0x8D7E09A89FF06F4\",\"lastModified\":\"2020-04-14T17:37:44.0991988Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask899\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask803\",\"eTag\":\"0x8D7E09A89FF2D21\",\"lastModified\":\"2020-04-14T17:37:44.1001761Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask803\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask802\",\"eTag\":\"0x8D7E09A89FF06F4\",\"lastModified\":\"2020-04-14T17:37:44.0991988Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask802\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask819\",\"eTag\":\"0x8D7E09A8A0D0FDA\",\"lastModified\":\"2020-04-14T17:37:44.191177Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask819\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask818\",\"eTag\":\"0x8D7E09A8A0FF608\",\"lastModified\":\"2020-04-14T17:37:44.2101768Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask818\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask827\",\"eTag\":\"0x8D7E09A8A0FF608\",\"lastModified\":\"2020-04-14T17:37:44.2101768Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask827\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask889\",\"eTag\":\"0x8D7E09A8A1DB1C3\",\"lastModified\":\"2020-04-14T17:37:44.3001795Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask889\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask887\",\"eTag\":\"0x8D7E09A8A1EEA47\",\"lastModified\":\"2020-04-14T17:37:44.3081799Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask887\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask872\",\"eTag\":\"0x8D7E09A8A1EEA47\",\"lastModified\":\"2020-04-14T17:37:44.3081799Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask872\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask807\",\"eTag\":\"0x8D7E09A89FF2D21\",\"lastModified\":\"2020-04-14T17:37:44.1001761Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask807\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask801\",\"eTag\":\"0x8D7E09A89FF2D21\",\"lastModified\":\"2020-04-14T17:37:44.1001761Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask801\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask804\",\"eTag\":\"0x8D7E09A89FF2D21\",\"lastModified\":\"2020-04-14T17:37:44.1001761Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask804\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask809\",\"eTag\":\"0x8D7E09A8A043641\",\"lastModified\":\"2020-04-14T17:37:44.1331777Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask809\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask806\",\"eTag\":\"0x8D7E09A8A040F1A\",\"lastModified\":\"2020-04-14T17:37:44.1321754Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask806\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask810\",\"eTag\":\"0x8D7E09A8A043641\",\"lastModified\":\"2020-04-14T17:37:44.1331777Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask810\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask812\",\"eTag\":\"0x8D7E09A8A056EB9\",\"lastModified\":\"2020-04-14T17:37:44.1411769Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask812\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask811\",\"eTag\":\"0x8D7E09A8A05963C\",\"lastModified\":\"2020-04-14T17:37:44.1421884Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask811\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask890\",\"eTag\":\"0x8D7E09A8A3817AA\",\"lastModified\":\"2020-04-14T17:37:44.4731818Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask890\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask805\",\"eTag\":\"0x8D7E09A8A040F1A\",\"lastModified\":\"2020-04-14T17:37:44.1321754Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask805\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask813\",\"eTag\":\"0x8D7E09A8A0A02A1\",\"lastModified\":\"2020-04-14T17:37:44.1711777Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask813\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask814\",\"eTag\":\"0x8D7E09A8A0B183D\",\"lastModified\":\"2020-04-14T17:37:44.1782845Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask814\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask821\",\"eTag\":\"0x8D7E09A8A0CE8D2\",\"lastModified\":\"2020-04-14T17:37:44.1901778Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask821\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask828\",\"eTag\":\"0x8D7E09A8A0D0FDA\",\"lastModified\":\"2020-04-14T17:37:44.191177Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask828\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask822\",\"eTag\":\"0x8D7E09A8A0D0FDA\",\"lastModified\":\"2020-04-14T17:37:44.191177Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask822\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask815\",\"eTag\":\"0x8D7E09A8A0A02A1\",\"lastModified\":\"2020-04-14T17:37:44.1711777Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask815\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask817\",\"eTag\":\"0x8D7E09A8A101D2C\",\"lastModified\":\"2020-04-14T17:37:44.2111788Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask817\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask825\",\"eTag\":\"0x8D7E09A8A0FF608\",\"lastModified\":\"2020-04-14T17:37:44.2101768Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask825\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask824\",\"eTag\":\"0x8D7E09A8A0D0FDA\",\"lastModified\":\"2020-04-14T17:37:44.191177Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask824\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask826\",\"eTag\":\"0x8D7E09A8A101D2C\",\"lastModified\":\"2020-04-14T17:37:44.2111788Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask826\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask831\",\"eTag\":\"0x8D7E09A8A101D2C\",\"lastModified\":\"2020-04-14T17:37:44.2111788Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask831\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask830\",\"eTag\":\"0x8D7E09A8A112E93\",\"lastModified\":\"2020-04-14T17:37:44.2181779Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask830\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask832\",\"eTag\":\"0x8D7E09A8A117CB5\",\"lastModified\":\"2020-04-14T17:37:44.2201781Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask832\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask834\",\"eTag\":\"0x8D7E09A8A117CB5\",\"lastModified\":\"2020-04-14T17:37:44.2201781Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask834\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask808\",\"eTag\":\"0x8D7E09A8A05208A\",\"lastModified\":\"2020-04-14T17:37:44.1391754Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask808\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask829\",\"eTag\":\"0x8D7E09A8A112E93\",\"lastModified\":\"2020-04-14T17:37:44.2181779Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask829\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask833\",\"eTag\":\"0x8D7E09A8A117CB5\",\"lastModified\":\"2020-04-14T17:37:44.2201781Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask833\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask838\",\"eTag\":\"0x8D7E09A8A143BD2\",\"lastModified\":\"2020-04-14T17:37:44.2381778Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask838\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask839\",\"eTag\":\"0x8D7E09A8A143BD2\",\"lastModified\":\"2020-04-14T17:37:44.2381778Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask839\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask842\",\"eTag\":\"0x8D7E09A8A148A02\",\"lastModified\":\"2020-04-14T17:37:44.2401794Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask842\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask845\",\"eTag\":\"0x8D7E09A8A148A02\",\"lastModified\":\"2020-04-14T17:37:44.2401794Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask845\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask847\",\"eTag\":\"0x8D7E09A8A17717A\",\"lastModified\":\"2020-04-14T17:37:44.2592122Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask847\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask837\",\"eTag\":\"0x8D7E09A8A14B118\",\"lastModified\":\"2020-04-14T17:37:44.24118Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask837\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask841\",\"eTag\":\"0x8D7E09A8A148A02\",\"lastModified\":\"2020-04-14T17:37:44.2401794Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask841\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask854\",\"eTag\":\"0x8D7E09A8A179731\",\"lastModified\":\"2020-04-14T17:37:44.2601777Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask854\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask849\",\"eTag\":\"0x8D7E09A8A17BE58\",\"lastModified\":\"2020-04-14T17:37:44.26118Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask849\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask855\",\"eTag\":\"0x8D7E09A8A17BE58\",\"lastModified\":\"2020-04-14T17:37:44.26118Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask855\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask853\",\"eTag\":\"0x8D7E09A8A179731\",\"lastModified\":\"2020-04-14T17:37:44.2601777Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask853\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask860\",\"eTag\":\"0x8D7E09A8A179731\",\"lastModified\":\"2020-04-14T17:37:44.2601777Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask860\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask816\",\"eTag\":\"0x8D7E09A8A143BD2\",\"lastModified\":\"2020-04-14T17:37:44.2381778Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask816\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask836\",\"eTag\":\"0x8D7E09A8A1462F2\",\"lastModified\":\"2020-04-14T17:37:44.2391794Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask836\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask843\",\"eTag\":\"0x8D7E09A8A1462F2\",\"lastModified\":\"2020-04-14T17:37:44.2391794Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask843\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask858\",\"eTag\":\"0x8D7E09A8A17717A\",\"lastModified\":\"2020-04-14T17:37:44.2592122Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask858\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask840\",\"eTag\":\"0x8D7E09A8A14B118\",\"lastModified\":\"2020-04-14T17:37:44.24118Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask840\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask852\",\"eTag\":\"0x8D7E09A8A17717A\",\"lastModified\":\"2020-04-14T17:37:44.2592122Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask852\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask835\",\"eTag\":\"0x8D7E09A8A132A6F\",\"lastModified\":\"2020-04-14T17:37:44.2311791Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask835\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask856\",\"eTag\":\"0x8D7E09A8A17BE58\",\"lastModified\":\"2020-04-14T17:37:44.26118Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask856\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask850\",\"eTag\":\"0x8D7E09A8A17E5DC\",\"lastModified\":\"2020-04-14T17:37:44.2621916Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask850\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask846\",\"eTag\":\"0x8D7E09A8A17E5DC\",\"lastModified\":\"2020-04-14T17:37:44.2621916Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask846\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask848\",\"eTag\":\"0x8D7E09A8A17E5DC\",\"lastModified\":\"2020-04-14T17:37:44.2621916Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask848\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask857\",\"eTag\":\"0x8D7E09A8A18DAAC\",\"lastModified\":\"2020-04-14T17:37:44.2684588Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask857\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask859\",\"eTag\":\"0x8D7E09A8A17BE58\",\"lastModified\":\"2020-04-14T17:37:44.26118Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask859\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask861\",\"eTag\":\"0x8D7E09A8A1A5E39\",\"lastModified\":\"2020-04-14T17:37:44.2783801Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask861\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask851\",\"eTag\":\"0x8D7E09A8A18DAAC\",\"lastModified\":\"2020-04-14T17:37:44.2684588Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask851\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask865\",\"eTag\":\"0x8D7E09A8A1A7D74\",\"lastModified\":\"2020-04-14T17:37:44.2791796Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask865\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask844\",\"eTag\":\"0x8D7E09A8A14B118\",\"lastModified\":\"2020-04-14T17:37:44.24118Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask844\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask823\",\"eTag\":\"0x8D7E09A8A0CE8D2\",\"lastModified\":\"2020-04-14T17:37:44.1901778Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask823\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask871\",\"eTag\":\"0x8D7E09A8A1A7D74\",\"lastModified\":\"2020-04-14T17:37:44.2791796Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask871\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask863\",\"eTag\":\"0x8D7E09A8A1AA480\",\"lastModified\":\"2020-04-14T17:37:44.2801792Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask863\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask879\",\"eTag\":\"0x8D7E09A8A1DD8E0\",\"lastModified\":\"2020-04-14T17:37:44.3011808Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask879\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask876\",\"eTag\":\"0x8D7E09A8A1DD8E0\",\"lastModified\":\"2020-04-14T17:37:44.3011808Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask876\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask880\",\"eTag\":\"0x8D7E09A8A1DD8E0\",\"lastModified\":\"2020-04-14T17:37:44.3011808Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask880\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask881\",\"eTag\":\"0x8D7E09A8A1DB1C3\",\"lastModified\":\"2020-04-14T17:37:44.3001795Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask881\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask897\",\"eTag\":\"0x8D7E09A8A22E1E9\",\"lastModified\":\"2020-04-14T17:37:44.3341801Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask897\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask868\",\"eTag\":\"0x8D7E09A8A226CC5\",\"lastModified\":\"2020-04-14T17:37:44.3311813Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask868\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask875\",\"eTag\":\"0x8D7E09A8A1C5239\",\"lastModified\":\"2020-04-14T17:37:44.2911801Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask875\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask862\",\"eTag\":\"0x8D7E09A8A179731\",\"lastModified\":\"2020-04-14T17:37:44.2601777Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask862\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask870\",\"eTag\":\"0x8D7E09A8A1D8AB8\",\"lastModified\":\"2020-04-14T17:37:44.29918Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask870\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask869\",\"eTag\":\"0x8D7E09A8A1D6386\",\"lastModified\":\"2020-04-14T17:37:44.2981766Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask869\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask885\",\"eTag\":\"0x8D7E09A8A224682\",\"lastModified\":\"2020-04-14T17:37:44.3302018Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask885\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask873\",\"eTag\":\"0x8D7E09A8A1F115F\",\"lastModified\":\"2020-04-14T17:37:44.3091807Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask873\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask877\",\"eTag\":\"0x8D7E09A8A1C5239\",\"lastModified\":\"2020-04-14T17:37:44.2911801Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask877\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask884\",\"eTag\":\"0x8D7E09A8A1C5239\",\"lastModified\":\"2020-04-14T17:37:44.2911801Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask884\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask867\",\"eTag\":\"0x8D7E09A8A1F115F\",\"lastModified\":\"2020-04-14T17:37:44.3091807Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask867\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask888\",\"eTag\":\"0x8D7E09A8A2509F6\",\"lastModified\":\"2020-04-14T17:37:44.3483126Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask888\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask886\",\"eTag\":\"0x8D7E09A8A23F35A\",\"lastModified\":\"2020-04-14T17:37:44.3411802Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask886\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask891\",\"eTag\":\"0x8D7E09A8A2509F6\",\"lastModified\":\"2020-04-14T17:37:44.3483126Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask891\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask878\",\"eTag\":\"0x8D7E09A8A1C040A\",\"lastModified\":\"2020-04-14T17:37:44.2891786Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask878\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask864\",\"eTag\":\"0x8D7E09A8A2293D1\",\"lastModified\":\"2020-04-14T17:37:44.3321809Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask864\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask892\",\"eTag\":\"0x8D7E09A8A23F35A\",\"lastModified\":\"2020-04-14T17:37:44.3411802Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask892\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask895\",\"eTag\":\"0x8D7E09A8A23A57B\",\"lastModified\":\"2020-04-14T17:37:44.3391867Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask895\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask866\",\"eTag\":\"0x8D7E09A8A226CC5\",\"lastModified\":\"2020-04-14T17:37:44.3311813Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask866\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask874\",\"eTag\":\"0x8D7E09A8A1F115F\",\"lastModified\":\"2020-04-14T17:37:44.3091807Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask874\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask894\",\"eTag\":\"0x8D7E09A8A2509F6\",\"lastModified\":\"2020-04-14T17:37:44.3483126Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask894\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask898\",\"eTag\":\"0x8D7E09A8A2509F6\",\"lastModified\":\"2020-04-14T17:37:44.3483126Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask898\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask896\",\"eTag\":\"0x8D7E09A8A23CC4D\",\"lastModified\":\"2020-04-14T17:37:44.3401805Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask896\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask882\",\"eTag\":\"0x8D7E09A8A24FF79\",\"lastModified\":\"2020-04-14T17:37:44.3480441Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask882\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask883\",\"eTag\":\"0x8D7E09A8A1DD8E0\",\"lastModified\":\"2020-04-14T17:37:44.3011808Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask883\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask893\",\"eTag\":\"0x8D7E09A8A252BD8\",\"lastModified\":\"2020-04-14T17:37:44.34918Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask893\"\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/addtaskcollection?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "a2070c7c-0deb-4f9f-8e8d-fe2b5adc5825", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "85abc199-be03-4b79-9cb2-7ab8e6a1385d", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask200\",\"eTag\":\"0x8D7E09A89D0B6C9\",\"lastModified\":\"2020-04-14T17:37:43.7956809Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask200\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask202\",\"eTag\":\"0x8D7E09A89D71F82\",\"lastModified\":\"2020-04-14T17:37:43.8376834Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask202\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask218\",\"eTag\":\"0x8D7E09A89E1A6D4\",\"lastModified\":\"2020-04-14T17:37:43.9066836Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask218\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask264\",\"eTag\":\"0x8D7E09A89F1AC4B\",\"lastModified\":\"2020-04-14T17:37:44.0116811Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask264\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask201\",\"eTag\":\"0x8D7E09A8A033891\",\"lastModified\":\"2020-04-14T17:37:44.1266833Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask201\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask210\",\"eTag\":\"0x8D7E09A8A061EB7\",\"lastModified\":\"2020-04-14T17:37:44.1456823Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask210\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask215\",\"eTag\":\"0x8D7E09A8A0FE2C7\",\"lastModified\":\"2020-04-14T17:37:44.2096839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask215\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask222\",\"eTag\":\"0x8D7E09A8A13DA68\",\"lastModified\":\"2020-04-14T17:37:44.235684Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask222\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask279\",\"eTag\":\"0x8D7E09A8A1F5BD8\",\"lastModified\":\"2020-04-14T17:37:44.3110872Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask279\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask287\",\"eTag\":\"0x8D7E09A8A273BDC\",\"lastModified\":\"2020-04-14T17:37:44.3626972Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask287\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask205\",\"eTag\":\"0x8D7E09A8A0386B4\",\"lastModified\":\"2020-04-14T17:37:44.1286836Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask205\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask203\",\"eTag\":\"0x8D7E09A8A033891\",\"lastModified\":\"2020-04-14T17:37:44.1266833Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask203\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask204\",\"eTag\":\"0x8D7E09A8A0386B4\",\"lastModified\":\"2020-04-14T17:37:44.1286836Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask204\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask207\",\"eTag\":\"0x8D7E09A8A0693F3\",\"lastModified\":\"2020-04-14T17:37:44.1486835Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask207\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask206\",\"eTag\":\"0x8D7E09A8A066CEB\",\"lastModified\":\"2020-04-14T17:37:44.1476843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask206\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask209\",\"eTag\":\"0x8D7E09A8A095317\",\"lastModified\":\"2020-04-14T17:37:44.1666839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask209\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask208\",\"eTag\":\"0x8D7E09A8A0A6A05\",\"lastModified\":\"2020-04-14T17:37:44.1738245Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask208\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask211\",\"eTag\":\"0x8D7E09A8A097A27\",\"lastModified\":\"2020-04-14T17:37:44.1676839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask211\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask213\",\"eTag\":\"0x8D7E09A8A0B00B2\",\"lastModified\":\"2020-04-14T17:37:44.1776818Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask213\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask212\",\"eTag\":\"0x8D7E09A8A0BE0A1\",\"lastModified\":\"2020-04-14T17:37:44.1834145Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask212\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask214\",\"eTag\":\"0x8D7E09A8A10CD25\",\"lastModified\":\"2020-04-14T17:37:44.2156837Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask214\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask217\",\"eTag\":\"0x8D7E09A8A10CD25\",\"lastModified\":\"2020-04-14T17:37:44.2156837Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask217\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask224\",\"eTag\":\"0x8D7E09A8A10CD25\",\"lastModified\":\"2020-04-14T17:37:44.2156837Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask224\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask216\",\"eTag\":\"0x8D7E09A8A0FBBBA\",\"lastModified\":\"2020-04-14T17:37:44.2086842Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask216\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask219\",\"eTag\":\"0x8D7E09A8A10CD25\",\"lastModified\":\"2020-04-14T17:37:44.2156837Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask219\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask225\",\"eTag\":\"0x8D7E09A8A1253BC\",\"lastModified\":\"2020-04-14T17:37:44.2256828Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask225\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask223\",\"eTag\":\"0x8D7E09A8A1253BC\",\"lastModified\":\"2020-04-14T17:37:44.2256828Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask223\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask221\",\"eTag\":\"0x8D7E09A8A156107\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask221\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask226\",\"eTag\":\"0x8D7E09A8A13DA68\",\"lastModified\":\"2020-04-14T17:37:44.235684Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask226\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask228\",\"eTag\":\"0x8D7E09A8A156107\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask228\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask231\",\"eTag\":\"0x8D7E09A8A1539F4\",\"lastModified\":\"2020-04-14T17:37:44.2446836Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask231\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask227\",\"eTag\":\"0x8D7E09A8A156107\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask227\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask230\",\"eTag\":\"0x8D7E09A8A156107\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask230\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask229\",\"eTag\":\"0x8D7E09A8A156107\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask229\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask233\",\"eTag\":\"0x8D7E09A8A170EA6\",\"lastModified\":\"2020-04-14T17:37:44.2566822Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask233\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask234\",\"eTag\":\"0x8D7E09A8A170EA6\",\"lastModified\":\"2020-04-14T17:37:44.2566822Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask234\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask251\",\"eTag\":\"0x8D7E09A8A182030\",\"lastModified\":\"2020-04-14T17:37:44.2636848Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask251\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask246\",\"eTag\":\"0x8D7E09A8A182030\",\"lastModified\":\"2020-04-14T17:37:44.2636848Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask246\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask250\",\"eTag\":\"0x8D7E09A8A1735C2\",\"lastModified\":\"2020-04-14T17:37:44.2576834Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask250\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask249\",\"eTag\":\"0x8D7E09A8A17D954\",\"lastModified\":\"2020-04-14T17:37:44.2618708Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask249\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask235\",\"eTag\":\"0x8D7E09A8A184732\",\"lastModified\":\"2020-04-14T17:37:44.2646834Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask235\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask236\",\"eTag\":\"0x8D7E09A8A182030\",\"lastModified\":\"2020-04-14T17:37:44.2636848Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask236\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask220\",\"eTag\":\"0x8D7E09A8A156107\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask220\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask240\",\"eTag\":\"0x8D7E09A8A17D954\",\"lastModified\":\"2020-04-14T17:37:44.2618708Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask240\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask239\",\"eTag\":\"0x8D7E09A8A17F91E\",\"lastModified\":\"2020-04-14T17:37:44.2626846Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask239\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask252\",\"eTag\":\"0x8D7E09A8A182030\",\"lastModified\":\"2020-04-14T17:37:44.2636848Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask252\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask237\",\"eTag\":\"0x8D7E09A8A184732\",\"lastModified\":\"2020-04-14T17:37:44.2646834Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask237\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask253\",\"eTag\":\"0x8D7E09A8A186ECA\",\"lastModified\":\"2020-04-14T17:37:44.265697Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask253\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask241\",\"eTag\":\"0x8D7E09A8A186ECA\",\"lastModified\":\"2020-04-14T17:37:44.265697Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask241\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask244\",\"eTag\":\"0x8D7E09A8A170EA6\",\"lastModified\":\"2020-04-14T17:37:44.2566822Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask244\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask242\",\"eTag\":\"0x8D7E09A8A186ECA\",\"lastModified\":\"2020-04-14T17:37:44.265697Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask242\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask248\",\"eTag\":\"0x8D7E09A8A184732\",\"lastModified\":\"2020-04-14T17:37:44.2646834Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask248\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask247\",\"eTag\":\"0x8D7E09A8A19A6FC\",\"lastModified\":\"2020-04-14T17:37:44.2736892Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask247\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask254\",\"eTag\":\"0x8D7E09A8A19CDD3\",\"lastModified\":\"2020-04-14T17:37:44.2746835Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask254\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask258\",\"eTag\":\"0x8D7E09A8A1B2D67\",\"lastModified\":\"2020-04-14T17:37:44.2836839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask258\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask259\",\"eTag\":\"0x8D7E09A8A1ADF45\",\"lastModified\":\"2020-04-14T17:37:44.2816837Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask259\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask238\",\"eTag\":\"0x8D7E09A8A197F96\",\"lastModified\":\"2020-04-14T17:37:44.2726806Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask238\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask243\",\"eTag\":\"0x8D7E09A8A19A6FC\",\"lastModified\":\"2020-04-14T17:37:44.2736892Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask243\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask256\",\"eTag\":\"0x8D7E09A8A1B0663\",\"lastModified\":\"2020-04-14T17:37:44.2826851Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask256\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask255\",\"eTag\":\"0x8D7E09A8A1B0663\",\"lastModified\":\"2020-04-14T17:37:44.2826851Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask255\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask263\",\"eTag\":\"0x8D7E09A8A1B2D67\",\"lastModified\":\"2020-04-14T17:37:44.2836839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask263\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask257\",\"eTag\":\"0x8D7E09A8A1B5478\",\"lastModified\":\"2020-04-14T17:37:44.284684Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask257\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask245\",\"eTag\":\"0x8D7E09A8A167276\",\"lastModified\":\"2020-04-14T17:37:44.2526838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask245\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask260\",\"eTag\":\"0x8D7E09A8A1ADF45\",\"lastModified\":\"2020-04-14T17:37:44.2816837Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask260\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask261\",\"eTag\":\"0x8D7E09A8A1CDB22\",\"lastModified\":\"2020-04-14T17:37:44.294685Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask261\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask262\",\"eTag\":\"0x8D7E09A8A1CDB22\",\"lastModified\":\"2020-04-14T17:37:44.294685Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask262\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask284\",\"eTag\":\"0x8D7E09A8A1F737D\",\"lastModified\":\"2020-04-14T17:37:44.3116925Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask284\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask270\",\"eTag\":\"0x8D7E09A8A1F9A3D\",\"lastModified\":\"2020-04-14T17:37:44.3126845Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask270\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask268\",\"eTag\":\"0x8D7E09A8A1F9A3D\",\"lastModified\":\"2020-04-14T17:37:44.3126845Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask268\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask273\",\"eTag\":\"0x8D7E09A8A23DFFE\",\"lastModified\":\"2020-04-14T17:37:44.3406846Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask273\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask267\",\"eTag\":\"0x8D7E09A8A23DFFE\",\"lastModified\":\"2020-04-14T17:37:44.3406846Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask267\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask278\",\"eTag\":\"0x8D7E09A8A24070B\",\"lastModified\":\"2020-04-14T17:37:44.3416843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask278\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask272\",\"eTag\":\"0x8D7E09A8A242E24\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask272\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask276\",\"eTag\":\"0x8D7E09A8A1F9A3D\",\"lastModified\":\"2020-04-14T17:37:44.3126845Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask276\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask290\",\"eTag\":\"0x8D7E09A8A242E24\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask290\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask280\",\"eTag\":\"0x8D7E09A8A242E24\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask280\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask232\",\"eTag\":\"0x8D7E09A8A186ECA\",\"lastModified\":\"2020-04-14T17:37:44.265697Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask232\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask277\",\"eTag\":\"0x8D7E09A8A24070B\",\"lastModified\":\"2020-04-14T17:37:44.3416843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask277\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask271\",\"eTag\":\"0x8D7E09A8A24070B\",\"lastModified\":\"2020-04-14T17:37:44.3416843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask271\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask282\",\"eTag\":\"0x8D7E09A8A242E24\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask282\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask269\",\"eTag\":\"0x8D7E09A8A24070B\",\"lastModified\":\"2020-04-14T17:37:44.3416843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask269\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask285\",\"eTag\":\"0x8D7E09A8A273BDC\",\"lastModified\":\"2020-04-14T17:37:44.3626972Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask285\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask265\",\"eTag\":\"0x8D7E09A8A242E24\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask265\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask291\",\"eTag\":\"0x8D7E09A8A25B4CA\",\"lastModified\":\"2020-04-14T17:37:44.3526858Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask291\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask274\",\"eTag\":\"0x8D7E09A8A242E24\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask274\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask275\",\"eTag\":\"0x8D7E09A8A242E24\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask275\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask292\",\"eTag\":\"0x8D7E09A8A25B4CA\",\"lastModified\":\"2020-04-14T17:37:44.3526858Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask292\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask266\",\"eTag\":\"0x8D7E09A8A23DFFE\",\"lastModified\":\"2020-04-14T17:37:44.3406846Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask266\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask286\",\"eTag\":\"0x8D7E09A8A25B4CA\",\"lastModified\":\"2020-04-14T17:37:44.3526858Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask286\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask283\",\"eTag\":\"0x8D7E09A8A25B4CA\",\"lastModified\":\"2020-04-14T17:37:44.3526858Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask283\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask289\",\"eTag\":\"0x8D7E09A8A258DEA\",\"lastModified\":\"2020-04-14T17:37:44.3516906Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask289\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask299\",\"eTag\":\"0x8D7E09A8A273BDC\",\"lastModified\":\"2020-04-14T17:37:44.3626972Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask299\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask296\",\"eTag\":\"0x8D7E09A8A299CE8\",\"lastModified\":\"2020-04-14T17:37:44.3782888Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask296\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask297\",\"eTag\":\"0x8D7E09A8A289AEB\",\"lastModified\":\"2020-04-14T17:37:44.3716843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask297\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask295\",\"eTag\":\"0x8D7E09A8A271434\",\"lastModified\":\"2020-04-14T17:37:44.361682Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask295\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask281\",\"eTag\":\"0x8D7E09A8A25B4CA\",\"lastModified\":\"2020-04-14T17:37:44.3526858Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask281\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask293\",\"eTag\":\"0x8D7E09A8A2C928A\",\"lastModified\":\"2020-04-14T17:37:44.3976842Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask293\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask288\",\"eTag\":\"0x8D7E09A8A289AEB\",\"lastModified\":\"2020-04-14T17:37:44.3716843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask288\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask294\",\"eTag\":\"0x8D7E09A8A273BDC\",\"lastModified\":\"2020-04-14T17:37:44.3626972Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask294\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask298\",\"eTag\":\"0x8D7E09A8A2B812D\",\"lastModified\":\"2020-04-14T17:37:44.3906861Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask298\"\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/addtaskcollection?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "c30b28bc-33e4-4ef6-b3ca-c198f1c8eaca", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "bee512c8-d6e0-468c-9260-f44d8231d557", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask900\",\"eTag\":\"0x8D7E09A89D45367\",\"lastModified\":\"2020-04-14T17:37:43.8193511Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask900\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask902\",\"eTag\":\"0x8D7E09A89D8BEE7\",\"lastModified\":\"2020-04-14T17:37:43.8483175Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask902\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask929\",\"eTag\":\"0x8D7E09A89E987AF\",\"lastModified\":\"2020-04-14T17:37:43.9583151Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask929\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask901\",\"eTag\":\"0x8D7E09A8A035125\",\"lastModified\":\"2020-04-14T17:37:44.1273125Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask901\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask906\",\"eTag\":\"0x8D7E09A8A035125\",\"lastModified\":\"2020-04-14T17:37:44.1273125Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask906\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask926\",\"eTag\":\"0x8D7E09A8A118875\",\"lastModified\":\"2020-04-14T17:37:44.2204789Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask926\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask923\",\"eTag\":\"0x8D7E09A8A1185DC\",\"lastModified\":\"2020-04-14T17:37:44.2204124Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask923\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask965\",\"eTag\":\"0x8D7E09A8A1D68CA\",\"lastModified\":\"2020-04-14T17:37:44.2983114Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask965\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask971\",\"eTag\":\"0x8D7E09A8A1D8FD4\",\"lastModified\":\"2020-04-14T17:37:44.2993108Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask971\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask968\",\"eTag\":\"0x8D7E09A8A1D8FD4\",\"lastModified\":\"2020-04-14T17:37:44.2993108Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask968\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask907\",\"eTag\":\"0x8D7E09A8A044571\",\"lastModified\":\"2020-04-14T17:37:44.1335665Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask907\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask904\",\"eTag\":\"0x8D7E09A8A035125\",\"lastModified\":\"2020-04-14T17:37:44.1273125Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask904\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask905\",\"eTag\":\"0x8D7E09A8A035125\",\"lastModified\":\"2020-04-14T17:37:44.1273125Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask905\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask903\",\"eTag\":\"0x8D7E09A8A035125\",\"lastModified\":\"2020-04-14T17:37:44.1273125Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask903\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask943\",\"eTag\":\"0x8D7E09A8A2F4329\",\"lastModified\":\"2020-04-14T17:37:44.4153129Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask943\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask999\",\"eTag\":\"0x8D7E09A8A308C51\",\"lastModified\":\"2020-04-14T17:37:44.4237393Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask999\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask909\",\"eTag\":\"0x8D7E09A8A0796E7\",\"lastModified\":\"2020-04-14T17:37:44.1553127Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask909\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask908\",\"eTag\":\"0x8D7E09A8A0796E7\",\"lastModified\":\"2020-04-14T17:37:44.1553127Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask908\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask910\",\"eTag\":\"0x8D7E09A8A07BE6B\",\"lastModified\":\"2020-04-14T17:37:44.1563243Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask910\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask913\",\"eTag\":\"0x8D7E09A8A08AEC0\",\"lastModified\":\"2020-04-14T17:37:44.1624768Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask913\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask912\",\"eTag\":\"0x8D7E09A8A08F679\",\"lastModified\":\"2020-04-14T17:37:44.1643129Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask912\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask915\",\"eTag\":\"0x8D7E09A8A0EE9EB\",\"lastModified\":\"2020-04-14T17:37:44.2033131Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask915\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask919\",\"eTag\":\"0x8D7E09A8A1097C3\",\"lastModified\":\"2020-04-14T17:37:44.2143171Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask919\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask914\",\"eTag\":\"0x8D7E09A8A0EC2EC\",\"lastModified\":\"2020-04-14T17:37:44.2023148Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask914\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask918\",\"eTag\":\"0x8D7E09A8A0F1161\",\"lastModified\":\"2020-04-14T17:37:44.2043233Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask918\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask916\",\"eTag\":\"0x8D7E09A8A0EE9EB\",\"lastModified\":\"2020-04-14T17:37:44.2033131Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask916\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask922\",\"eTag\":\"0x8D7E09A8A0DA40E\",\"lastModified\":\"2020-04-14T17:37:44.194971Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask922\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask917\",\"eTag\":\"0x8D7E09A8A0EC2EC\",\"lastModified\":\"2020-04-14T17:37:44.2023148Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask917\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask924\",\"eTag\":\"0x8D7E09A8A118875\",\"lastModified\":\"2020-04-14T17:37:44.2204789Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask924\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask925\",\"eTag\":\"0x8D7E09A8A11F724\",\"lastModified\":\"2020-04-14T17:37:44.2233124Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask925\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask920\",\"eTag\":\"0x8D7E09A8A11A905\",\"lastModified\":\"2020-04-14T17:37:44.2213125Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask920\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask911\",\"eTag\":\"0x8D7E09A8A094506\",\"lastModified\":\"2020-04-14T17:37:44.1663238Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask911\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask937\",\"eTag\":\"0x8D7E09A8A1663E1\",\"lastModified\":\"2020-04-14T17:37:44.2523105Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask937\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask930\",\"eTag\":\"0x8D7E09A8A163CD8\",\"lastModified\":\"2020-04-14T17:37:44.2513112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask930\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask938\",\"eTag\":\"0x8D7E09A8A1663E1\",\"lastModified\":\"2020-04-14T17:37:44.2523105Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask938\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask931\",\"eTag\":\"0x8D7E09A8A1663E1\",\"lastModified\":\"2020-04-14T17:37:44.2523105Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask931\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask936\",\"eTag\":\"0x8D7E09A8A17755C\",\"lastModified\":\"2020-04-14T17:37:44.2593116Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask936\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask932\",\"eTag\":\"0x8D7E09A8A163CD8\",\"lastModified\":\"2020-04-14T17:37:44.2513112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask932\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask933\",\"eTag\":\"0x8D7E09A8A1762E4\",\"lastModified\":\"2020-04-14T17:37:44.2588388Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask933\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask935\",\"eTag\":\"0x8D7E09A8A1762E4\",\"lastModified\":\"2020-04-14T17:37:44.2588388Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask935\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask927\",\"eTag\":\"0x8D7E09A8A1615BB\",\"lastModified\":\"2020-04-14T17:37:44.2503099Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask927\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask934\",\"eTag\":\"0x8D7E09A8A17755C\",\"lastModified\":\"2020-04-14T17:37:44.2593116Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask934\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask940\",\"eTag\":\"0x8D7E09A8A179C72\",\"lastModified\":\"2020-04-14T17:37:44.2603122Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask940\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask939\",\"eTag\":\"0x8D7E09A8A17755C\",\"lastModified\":\"2020-04-14T17:37:44.2593116Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask939\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask928\",\"eTag\":\"0x8D7E09A8A179C72\",\"lastModified\":\"2020-04-14T17:37:44.2603122Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask928\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask941\",\"eTag\":\"0x8D7E09A8A17755C\",\"lastModified\":\"2020-04-14T17:37:44.2593116Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask941\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask921\",\"eTag\":\"0x8D7E09A8A17C377\",\"lastModified\":\"2020-04-14T17:37:44.2613111Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask921\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask946\",\"eTag\":\"0x8D7E09A8A1AD10F\",\"lastModified\":\"2020-04-14T17:37:44.2813199Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask946\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask944\",\"eTag\":\"0x8D7E09A8A1AA99A\",\"lastModified\":\"2020-04-14T17:37:44.2803098Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask944\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask942\",\"eTag\":\"0x8D7E09A8A17EAFB\",\"lastModified\":\"2020-04-14T17:37:44.2623227Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask942\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask945\",\"eTag\":\"0x8D7E09A8A1AD10F\",\"lastModified\":\"2020-04-14T17:37:44.2813199Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask945\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask986\",\"eTag\":\"0x8D7E09A8A1D8FD4\",\"lastModified\":\"2020-04-14T17:37:44.2993108Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask986\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask950\",\"eTag\":\"0x8D7E09A8A1EBBD2\",\"lastModified\":\"2020-04-14T17:37:44.3069906Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask950\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask975\",\"eTag\":\"0x8D7E09A8A1DB6E4\",\"lastModified\":\"2020-04-14T17:37:44.3003108Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask975\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask949\",\"eTag\":\"0x8D7E09A8A1D8FD4\",\"lastModified\":\"2020-04-14T17:37:44.2993108Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask949\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask961\",\"eTag\":\"0x8D7E09A8A209D15\",\"lastModified\":\"2020-04-14T17:37:44.3193109Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask961\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask976\",\"eTag\":\"0x8D7E09A8A21D597\",\"lastModified\":\"2020-04-14T17:37:44.3273111Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask976\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask974\",\"eTag\":\"0x8D7E09A8A21AEDC\",\"lastModified\":\"2020-04-14T17:37:44.3263196Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask974\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask959\",\"eTag\":\"0x8D7E09A8A20C472\",\"lastModified\":\"2020-04-14T17:37:44.3203186Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask959\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask981\",\"eTag\":\"0x8D7E09A8A209D15\",\"lastModified\":\"2020-04-14T17:37:44.3193109Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask981\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask953\",\"eTag\":\"0x8D7E09A8A1D8FD4\",\"lastModified\":\"2020-04-14T17:37:44.2993108Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask953\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask947\",\"eTag\":\"0x8D7E09A8A1DB6E4\",\"lastModified\":\"2020-04-14T17:37:44.3003108Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask947\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask963\",\"eTag\":\"0x8D7E09A8A1EEF6D\",\"lastModified\":\"2020-04-14T17:37:44.3083117Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask963\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask948\",\"eTag\":\"0x8D7E09A8A203792\",\"lastModified\":\"2020-04-14T17:37:44.3167122Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask948\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask972\",\"eTag\":\"0x8D7E09A8A1DB6E4\",\"lastModified\":\"2020-04-14T17:37:44.3003108Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask972\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask951\",\"eTag\":\"0x8D7E09A8A1DB6E4\",\"lastModified\":\"2020-04-14T17:37:44.3003108Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask951\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask970\",\"eTag\":\"0x8D7E09A8A1EC859\",\"lastModified\":\"2020-04-14T17:37:44.3073113Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask970\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask980\",\"eTag\":\"0x8D7E09A8A21FCA8\",\"lastModified\":\"2020-04-14T17:37:44.3283112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask980\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask982\",\"eTag\":\"0x8D7E09A8A21FCA8\",\"lastModified\":\"2020-04-14T17:37:44.3283112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask982\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask969\",\"eTag\":\"0x8D7E09A8A2075FC\",\"lastModified\":\"2020-04-14T17:37:44.31831Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask969\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask966\",\"eTag\":\"0x8D7E09A8A20C472\",\"lastModified\":\"2020-04-14T17:37:44.3203186Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask966\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask952\",\"eTag\":\"0x8D7E09A8A21D597\",\"lastModified\":\"2020-04-14T17:37:44.3273111Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask952\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask993\",\"eTag\":\"0x8D7E09A8A24BBB0\",\"lastModified\":\"2020-04-14T17:37:44.3463088Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask993\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask988\",\"eTag\":\"0x8D7E09A8A2509E5\",\"lastModified\":\"2020-04-14T17:37:44.3483109Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask988\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask960\",\"eTag\":\"0x8D7E09A8A20C472\",\"lastModified\":\"2020-04-14T17:37:44.3203186Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask960\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask955\",\"eTag\":\"0x8D7E09A8A2223B8\",\"lastModified\":\"2020-04-14T17:37:44.3293112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask955\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask964\",\"eTag\":\"0x8D7E09A8A2223B8\",\"lastModified\":\"2020-04-14T17:37:44.3293112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask964\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask985\",\"eTag\":\"0x8D7E09A8A24BBB0\",\"lastModified\":\"2020-04-14T17:37:44.3463088Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask985\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask956\",\"eTag\":\"0x8D7E09A8A23351E\",\"lastModified\":\"2020-04-14T17:37:44.3363102Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask956\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask958\",\"eTag\":\"0x8D7E09A8A21FCA8\",\"lastModified\":\"2020-04-14T17:37:44.3283112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask958\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask973\",\"eTag\":\"0x8D7E09A8A2223B8\",\"lastModified\":\"2020-04-14T17:37:44.3293112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask973\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask991\",\"eTag\":\"0x8D7E09A8A21FCA8\",\"lastModified\":\"2020-04-14T17:37:44.3283112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask991\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask967\",\"eTag\":\"0x8D7E09A8A2223B8\",\"lastModified\":\"2020-04-14T17:37:44.3293112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask967\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask962\",\"eTag\":\"0x8D7E09A8A21D597\",\"lastModified\":\"2020-04-14T17:37:44.3273111Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask962\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask996\",\"eTag\":\"0x8D7E09A8A2530F8\",\"lastModified\":\"2020-04-14T17:37:44.3493112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask996\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask984\",\"eTag\":\"0x8D7E09A8A2223B8\",\"lastModified\":\"2020-04-14T17:37:44.3293112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask984\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask954\",\"eTag\":\"0x8D7E09A8A2530F8\",\"lastModified\":\"2020-04-14T17:37:44.3493112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask954\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask998\",\"eTag\":\"0x8D7E09A8A292885\",\"lastModified\":\"2020-04-14T17:37:44.3753093Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask998\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask994\",\"eTag\":\"0x8D7E09A8A26905F\",\"lastModified\":\"2020-04-14T17:37:44.3583071Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask994\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask978\",\"eTag\":\"0x8D7E09A8A27A25C\",\"lastModified\":\"2020-04-14T17:37:44.3653212Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask978\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask977\",\"eTag\":\"0x8D7E09A8A2530F8\",\"lastModified\":\"2020-04-14T17:37:44.3493112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask977\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask983\",\"eTag\":\"0x8D7E09A8A27C8FC\",\"lastModified\":\"2020-04-14T17:37:44.36631Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask983\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask989\",\"eTag\":\"0x8D7E09A8A2530F8\",\"lastModified\":\"2020-04-14T17:37:44.3493112Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask989\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask987\",\"eTag\":\"0x8D7E09A8A26905F\",\"lastModified\":\"2020-04-14T17:37:44.3583071Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask987\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask995\",\"eTag\":\"0x8D7E09A8A281746\",\"lastModified\":\"2020-04-14T17:37:44.3683142Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask995\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask990\",\"eTag\":\"0x8D7E09A8A26905F\",\"lastModified\":\"2020-04-14T17:37:44.3583071Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask990\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask957\",\"eTag\":\"0x8D7E09A8A26905F\",\"lastModified\":\"2020-04-14T17:37:44.3583071Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask957\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask979\",\"eTag\":\"0x8D7E09A8A27F003\",\"lastModified\":\"2020-04-14T17:37:44.3673091Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask979\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask997\",\"eTag\":\"0x8D7E09A8A27A25C\",\"lastModified\":\"2020-04-14T17:37:44.3653212Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask997\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask992\",\"eTag\":\"0x8D7E09A8A26905F\",\"lastModified\":\"2020-04-14T17:37:44.3583071Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask992\"\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/addtaskcollection?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "49ef9d57-18a1-42ab-b33c-48b5ffae713d", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "221a8462-1f02-4c31-bbb4-6e399dfe14b2", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask300\",\"eTag\":\"0x8D7E09A89CBD498\",\"lastModified\":\"2020-04-14T17:37:43.763676Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask300\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask304\",\"eTag\":\"0x8D7E09A89CE4597\",\"lastModified\":\"2020-04-14T17:37:43.7796759Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask304\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask319\",\"eTag\":\"0x8D7E09A89DC0139\",\"lastModified\":\"2020-04-14T17:37:43.8696761Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask319\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask302\",\"eTag\":\"0x8D7E09A89E242C4\",\"lastModified\":\"2020-04-14T17:37:43.9106756Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask302\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask301\",\"eTag\":\"0x8D7E09A89EC2DC8\",\"lastModified\":\"2020-04-14T17:37:43.9756744Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask301\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask303\",\"eTag\":\"0x8D7E09A89FB7019\",\"lastModified\":\"2020-04-14T17:37:44.0756761Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask303\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask306\",\"eTag\":\"0x8D7E09A89FF67D0\",\"lastModified\":\"2020-04-14T17:37:44.1016784Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask306\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask325\",\"eTag\":\"0x8D7E09A8A10A5C8\",\"lastModified\":\"2020-04-14T17:37:44.214676Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask325\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask326\",\"eTag\":\"0x8D7E09A8A11BE42\",\"lastModified\":\"2020-04-14T17:37:44.2218562Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask326\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask397\",\"eTag\":\"0x8D7E09A8A258D49\",\"lastModified\":\"2020-04-14T17:37:44.3516745Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask397\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask389\",\"eTag\":\"0x8D7E09A89EF621C\",\"lastModified\":\"2020-04-14T17:37:43.9966748Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask389\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask399\",\"eTag\":\"0x8D7E09A8A29D3F4\",\"lastModified\":\"2020-04-14T17:37:44.379698Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask399\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask307\",\"eTag\":\"0x8D7E09A89FFDCD7\",\"lastModified\":\"2020-04-14T17:37:44.1046743Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask307\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask309\",\"eTag\":\"0x8D7E09A89FF67D0\",\"lastModified\":\"2020-04-14T17:37:44.1016784Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask309\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask305\",\"eTag\":\"0x8D7E09A89FF67D0\",\"lastModified\":\"2020-04-14T17:37:44.1016784Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask305\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask308\",\"eTag\":\"0x8D7E09A8A002B00\",\"lastModified\":\"2020-04-14T17:37:44.1066752Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask308\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask311\",\"eTag\":\"0x8D7E09A8A01D8B6\",\"lastModified\":\"2020-04-14T17:37:44.1176758Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask311\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask312\",\"eTag\":\"0x8D7E09A8A01B19D\",\"lastModified\":\"2020-04-14T17:37:44.1166749Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask312\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask310\",\"eTag\":\"0x8D7E09A8A0003F6\",\"lastModified\":\"2020-04-14T17:37:44.1056758Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask310\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask315\",\"eTag\":\"0x8D7E09A8A0708C4\",\"lastModified\":\"2020-04-14T17:37:44.151674Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask315\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask314\",\"eTag\":\"0x8D7E09A8A0708C4\",\"lastModified\":\"2020-04-14T17:37:44.151674Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask314\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask316\",\"eTag\":\"0x8D7E09A8A0708C4\",\"lastModified\":\"2020-04-14T17:37:44.151674Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask316\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask313\",\"eTag\":\"0x8D7E09A8A0733CE\",\"lastModified\":\"2020-04-14T17:37:44.1527758Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask313\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask320\",\"eTag\":\"0x8D7E09A8A0733CE\",\"lastModified\":\"2020-04-14T17:37:44.1527758Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask320\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask318\",\"eTag\":\"0x8D7E09A8A07CC2B\",\"lastModified\":\"2020-04-14T17:37:44.1566763Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask318\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask321\",\"eTag\":\"0x8D7E09A8A0A6432\",\"lastModified\":\"2020-04-14T17:37:44.1736754Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask321\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask317\",\"eTag\":\"0x8D7E09A8A092BB0\",\"lastModified\":\"2020-04-14T17:37:44.1656752Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask317\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask324\",\"eTag\":\"0x8D7E09A8A0F1F2A\",\"lastModified\":\"2020-04-14T17:37:44.2046762Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask324\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask323\",\"eTag\":\"0x8D7E09A8A0ED102\",\"lastModified\":\"2020-04-14T17:37:44.2026754Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask323\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask322\",\"eTag\":\"0x8D7E09A8A0F1F2A\",\"lastModified\":\"2020-04-14T17:37:44.2046762Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask322\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask328\",\"eTag\":\"0x8D7E09A8A12536D\",\"lastModified\":\"2020-04-14T17:37:44.2256749Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask328\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask327\",\"eTag\":\"0x8D7E09A8A11DE37\",\"lastModified\":\"2020-04-14T17:37:44.2226743Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask327\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask330\",\"eTag\":\"0x8D7E09A8A1364E0\",\"lastModified\":\"2020-04-14T17:37:44.2326752Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask330\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask331\",\"eTag\":\"0x8D7E09A8A1364E0\",\"lastModified\":\"2020-04-14T17:37:44.2326752Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask331\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask333\",\"eTag\":\"0x8D7E09A8A13B2F4\",\"lastModified\":\"2020-04-14T17:37:44.234674Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask333\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask329\",\"eTag\":\"0x8D7E09A8A13B2F4\",\"lastModified\":\"2020-04-14T17:37:44.234674Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask329\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask334\",\"eTag\":\"0x8D7E09A8A13B2F4\",\"lastModified\":\"2020-04-14T17:37:44.234674Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask334\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask345\",\"eTag\":\"0x8D7E09A8A14C461\",\"lastModified\":\"2020-04-14T17:37:44.2416737Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask345\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask340\",\"eTag\":\"0x8D7E09A8A16C035\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask340\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask339\",\"eTag\":\"0x8D7E09A8A16C035\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask339\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask335\",\"eTag\":\"0x8D7E09A8A14BDB1\",\"lastModified\":\"2020-04-14T17:37:44.2415025Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask335\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask343\",\"eTag\":\"0x8D7E09A8A17C507\",\"lastModified\":\"2020-04-14T17:37:44.2613511Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask343\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask350\",\"eTag\":\"0x8D7E09A8A14EB89\",\"lastModified\":\"2020-04-14T17:37:44.2426761Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask350\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask342\",\"eTag\":\"0x8D7E09A8A16C035\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask342\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask338\",\"eTag\":\"0x8D7E09A8A16C035\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask338\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask355\",\"eTag\":\"0x8D7E09A8A17D1AA\",\"lastModified\":\"2020-04-14T17:37:44.2616746Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask355\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask347\",\"eTag\":\"0x8D7E09A8A14C461\",\"lastModified\":\"2020-04-14T17:37:44.2416737Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask347\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask351\",\"eTag\":\"0x8D7E09A8A186DEB\",\"lastModified\":\"2020-04-14T17:37:44.2656747Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask351\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask344\",\"eTag\":\"0x8D7E09A8A16C035\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask344\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask341\",\"eTag\":\"0x8D7E09A8A16C035\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask341\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask346\",\"eTag\":\"0x8D7E09A8A1846D6\",\"lastModified\":\"2020-04-14T17:37:44.2646742Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask346\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask349\",\"eTag\":\"0x8D7E09A8A186DEB\",\"lastModified\":\"2020-04-14T17:37:44.2656747Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask349\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask352\",\"eTag\":\"0x8D7E09A8A195855\",\"lastModified\":\"2020-04-14T17:37:44.2716757Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask352\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask348\",\"eTag\":\"0x8D7E09A8A186DEB\",\"lastModified\":\"2020-04-14T17:37:44.2656747Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask348\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask361\",\"eTag\":\"0x8D7E09A8A19CD79\",\"lastModified\":\"2020-04-14T17:37:44.2746745Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask361\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask353\",\"eTag\":\"0x8D7E09A8A193E39\",\"lastModified\":\"2020-04-14T17:37:44.2710073Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask353\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask354\",\"eTag\":\"0x8D7E09A8A194362\",\"lastModified\":\"2020-04-14T17:37:44.2711394Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask354\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask356\",\"eTag\":\"0x8D7E09A8A19CD79\",\"lastModified\":\"2020-04-14T17:37:44.2746745Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask356\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask336\",\"eTag\":\"0x8D7E09A8A186DEB\",\"lastModified\":\"2020-04-14T17:37:44.2656747Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask336\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask357\",\"eTag\":\"0x8D7E09A8A19CD79\",\"lastModified\":\"2020-04-14T17:37:44.2746745Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask357\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask358\",\"eTag\":\"0x8D7E09A8A19CD79\",\"lastModified\":\"2020-04-14T17:37:44.2746745Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask358\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask332\",\"eTag\":\"0x8D7E09A8A13B2F4\",\"lastModified\":\"2020-04-14T17:37:44.234674Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask332\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask364\",\"eTag\":\"0x8D7E09A8A1BF068\",\"lastModified\":\"2020-04-14T17:37:44.288676Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask364\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask370\",\"eTag\":\"0x8D7E09A8A1C3E75\",\"lastModified\":\"2020-04-14T17:37:44.2906741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask370\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask382\",\"eTag\":\"0x8D7E09A8A24562D\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask382\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask378\",\"eTag\":\"0x8D7E09A8A1C3E75\",\"lastModified\":\"2020-04-14T17:37:44.2906741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask378\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask394\",\"eTag\":\"0x8D7E09A8A258D49\",\"lastModified\":\"2020-04-14T17:37:44.3516745Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask394\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask365\",\"eTag\":\"0x8D7E09A8A1BCA6C\",\"lastModified\":\"2020-04-14T17:37:44.2877036Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask365\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask360\",\"eTag\":\"0x8D7E09A8A1AC70E\",\"lastModified\":\"2020-04-14T17:37:44.2810638Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask360\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask385\",\"eTag\":\"0x8D7E09A8A24562D\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask385\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask367\",\"eTag\":\"0x8D7E09A8A1BF068\",\"lastModified\":\"2020-04-14T17:37:44.288676Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask367\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask379\",\"eTag\":\"0x8D7E09A8A24562D\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask379\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask376\",\"eTag\":\"0x8D7E09A8A1F4F4B\",\"lastModified\":\"2020-04-14T17:37:44.3107659Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask376\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask381\",\"eTag\":\"0x8D7E09A8A1F425D\",\"lastModified\":\"2020-04-14T17:37:44.3104349Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask381\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask390\",\"eTag\":\"0x8D7E09A8A242DB5\",\"lastModified\":\"2020-04-14T17:37:44.3426741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask390\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask366\",\"eTag\":\"0x8D7E09A8A1CDABE\",\"lastModified\":\"2020-04-14T17:37:44.294675Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask366\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask337\",\"eTag\":\"0x8D7E09A8A133DB7\",\"lastModified\":\"2020-04-14T17:37:44.2316727Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask337\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask387\",\"eTag\":\"0x8D7E09A8A24562D\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask387\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask384\",\"eTag\":\"0x8D7E09A8A1F99DE\",\"lastModified\":\"2020-04-14T17:37:44.312675Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask384\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask359\",\"eTag\":\"0x8D7E09A8A1ABF3F\",\"lastModified\":\"2020-04-14T17:37:44.2808639Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask359\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask395\",\"eTag\":\"0x8D7E09A8A258D49\",\"lastModified\":\"2020-04-14T17:37:44.3516745Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask395\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask368\",\"eTag\":\"0x8D7E09A8A1BCA6C\",\"lastModified\":\"2020-04-14T17:37:44.2877036Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask368\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask383\",\"eTag\":\"0x8D7E09A8A25B455\",\"lastModified\":\"2020-04-14T17:37:44.3526741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask383\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask393\",\"eTag\":\"0x8D7E09A8A26CC73\",\"lastModified\":\"2020-04-14T17:37:44.3598451Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask393\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask398\",\"eTag\":\"0x8D7E09A8A25B455\",\"lastModified\":\"2020-04-14T17:37:44.3526741Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask398\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask386\",\"eTag\":\"0x8D7E09A8A2713DB\",\"lastModified\":\"2020-04-14T17:37:44.3616731Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask386\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask369\",\"eTag\":\"0x8D7E09A8A1C1764\",\"lastModified\":\"2020-04-14T17:37:44.289674Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask369\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask377\",\"eTag\":\"0x8D7E09A8A1CB3A9\",\"lastModified\":\"2020-04-14T17:37:44.2936745Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask377\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask388\",\"eTag\":\"0x8D7E09A8A24562D\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask388\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask392\",\"eTag\":\"0x8D7E09A8A258D49\",\"lastModified\":\"2020-04-14T17:37:44.3516745Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask392\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask363\",\"eTag\":\"0x8D7E09A8A1CDABE\",\"lastModified\":\"2020-04-14T17:37:44.294675Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask363\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask374\",\"eTag\":\"0x8D7E09A8A255606\",\"lastModified\":\"2020-04-14T17:37:44.3502598Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask374\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask373\",\"eTag\":\"0x8D7E09A8A24562D\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask373\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask380\",\"eTag\":\"0x8D7E09A8A25664C\",\"lastModified\":\"2020-04-14T17:37:44.3506764Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask380\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask391\",\"eTag\":\"0x8D7E09A8A255606\",\"lastModified\":\"2020-04-14T17:37:44.3502598Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask391\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask371\",\"eTag\":\"0x8D7E09A8A1C1764\",\"lastModified\":\"2020-04-14T17:37:44.289674Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask371\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask396\",\"eTag\":\"0x8D7E09A8A26ECDD\",\"lastModified\":\"2020-04-14T17:37:44.3606749Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask396\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask375\",\"eTag\":\"0x8D7E09A8A24562D\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask375\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask362\",\"eTag\":\"0x8D7E09A8A1CDABE\",\"lastModified\":\"2020-04-14T17:37:44.294675Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask362\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask372\",\"eTag\":\"0x8D7E09A8A1CDABE\",\"lastModified\":\"2020-04-14T17:37:44.294675Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask372\"\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/addtaskcollection?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "6ab76ac0-0400-406e-9a87-4b61b8ff7e9c", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "798e9c56-b52a-46d9-891c-2302cf51088d", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask700\",\"eTag\":\"0x8D7E09A89D5CBDC\",\"lastModified\":\"2020-04-14T17:37:43.8289884Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask700\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask702\",\"eTag\":\"0x8D7E09A89D9BD00\",\"lastModified\":\"2020-04-14T17:37:43.8548224Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask702\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask710\",\"eTag\":\"0x8D7E09A89E507A7\",\"lastModified\":\"2020-04-14T17:37:43.9288231Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask710\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask760\",\"eTag\":\"0x8D7E09A8A03B31C\",\"lastModified\":\"2020-04-14T17:37:44.1298204Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask760\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask701\",\"eTag\":\"0x8D7E09A8A070F6F\",\"lastModified\":\"2020-04-14T17:37:44.1518447Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask701\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask704\",\"eTag\":\"0x8D7E09A8A07D1C6\",\"lastModified\":\"2020-04-14T17:37:44.1568198Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask704\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask714\",\"eTag\":\"0x8D7E09A8A116EAA\",\"lastModified\":\"2020-04-14T17:37:44.2198186Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask714\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask712\",\"eTag\":\"0x8D7E09A8A116EAA\",\"lastModified\":\"2020-04-14T17:37:44.2198186Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask712\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask711\",\"eTag\":\"0x8D7E09A8A116EAA\",\"lastModified\":\"2020-04-14T17:37:44.2198186Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask711\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask752\",\"eTag\":\"0x8D7E09A8A234901\",\"lastModified\":\"2020-04-14T17:37:44.3368193Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask752\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask766\",\"eTag\":\"0x8D7E09A8A234901\",\"lastModified\":\"2020-04-14T17:37:44.3368193Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask766\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask756\",\"eTag\":\"0x8D7E09A8A234901\",\"lastModified\":\"2020-04-14T17:37:44.3368193Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask756\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask705\",\"eTag\":\"0x8D7E09A8A081FEE\",\"lastModified\":\"2020-04-14T17:37:44.1588206Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask705\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask703\",\"eTag\":\"0x8D7E09A8A084713\",\"lastModified\":\"2020-04-14T17:37:44.1598227Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask703\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask707\",\"eTag\":\"0x8D7E09A8A084713\",\"lastModified\":\"2020-04-14T17:37:44.1598227Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask707\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask706\",\"eTag\":\"0x8D7E09A8A09301F\",\"lastModified\":\"2020-04-14T17:37:44.1657887Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask706\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask799\",\"eTag\":\"0x8D7E09A8A35719E\",\"lastModified\":\"2020-04-14T17:37:44.4558238Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask799\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask796\",\"eTag\":\"0x8D7E09A8A35719E\",\"lastModified\":\"2020-04-14T17:37:44.4558238Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask796\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask767\",\"eTag\":\"0x8D7E09A8A37E242\",\"lastModified\":\"2020-04-14T17:37:44.4718146Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask767\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask709\",\"eTag\":\"0x8D7E09A8A0B2D26\",\"lastModified\":\"2020-04-14T17:37:44.1788198Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask709\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask708\",\"eTag\":\"0x8D7E09A8A0AB7F1\",\"lastModified\":\"2020-04-14T17:37:44.1758193Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask708\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask713\",\"eTag\":\"0x8D7E09A8A1195CA\",\"lastModified\":\"2020-04-14T17:37:44.2208202Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask713\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask716\",\"eTag\":\"0x8D7E09A8A123204\",\"lastModified\":\"2020-04-14T17:37:44.2248196Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask716\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask715\",\"eTag\":\"0x8D7E09A8A123204\",\"lastModified\":\"2020-04-14T17:37:44.2248196Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask715\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask729\",\"eTag\":\"0x8D7E09A8A1A2139\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask729\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask725\",\"eTag\":\"0x8D7E09A8A1A2139\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask725\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask733\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask733\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask728\",\"eTag\":\"0x8D7E09A8A1B80C9\",\"lastModified\":\"2020-04-14T17:37:44.2858185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask728\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask723\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask723\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask724\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask724\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask726\",\"eTag\":\"0x8D7E09A8A1A2139\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask726\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask730\",\"eTag\":\"0x8D7E09A8A1A2139\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask730\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask718\",\"eTag\":\"0x8D7E09A8A1A2139\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask718\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask717\",\"eTag\":\"0x8D7E09A8A19AC19\",\"lastModified\":\"2020-04-14T17:37:44.2738201Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask717\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask721\",\"eTag\":\"0x8D7E09A8A1A2139\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask721\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask722\",\"eTag\":\"0x8D7E09A8A1A2139\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask722\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask719\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask719\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask720\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask720\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask741\",\"eTag\":\"0x8D7E09A8A1CE065\",\"lastModified\":\"2020-04-14T17:37:44.2948197Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask741\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask727\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask727\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask731\",\"eTag\":\"0x8D7E09A8A1B80C9\",\"lastModified\":\"2020-04-14T17:37:44.2858185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask731\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask737\",\"eTag\":\"0x8D7E09A8A1D078A\",\"lastModified\":\"2020-04-14T17:37:44.2958218Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask737\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask736\",\"eTag\":\"0x8D7E09A8A1D078A\",\"lastModified\":\"2020-04-14T17:37:44.2958218Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask736\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask734\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask734\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask744\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask744\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask738\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask738\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask743\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask743\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask732\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask732\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask735\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask735\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask739\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask739\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask742\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask742\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask748\",\"eTag\":\"0x8D7E09A8A1FC691\",\"lastModified\":\"2020-04-14T17:37:44.3138193Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask748\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask746\",\"eTag\":\"0x8D7E09A8A1FEDA5\",\"lastModified\":\"2020-04-14T17:37:44.3148197Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask746\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask747\",\"eTag\":\"0x8D7E09A8A1FC691\",\"lastModified\":\"2020-04-14T17:37:44.3138193Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask747\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask745\",\"eTag\":\"0x8D7E09A8A1FAFC9\",\"lastModified\":\"2020-04-14T17:37:44.3132361Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask745\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask750\",\"eTag\":\"0x8D7E09A8A2321F0\",\"lastModified\":\"2020-04-14T17:37:44.3358192Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask750\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask758\",\"eTag\":\"0x8D7E09A8A2321F0\",\"lastModified\":\"2020-04-14T17:37:44.3358192Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask758\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask751\",\"eTag\":\"0x8D7E09A8A2130C5\",\"lastModified\":\"2020-04-14T17:37:44.3230917Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask751\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask740\",\"eTag\":\"0x8D7E09A8A2014B4\",\"lastModified\":\"2020-04-14T17:37:44.3158196Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask740\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask755\",\"eTag\":\"0x8D7E09A8A243567\",\"lastModified\":\"2020-04-14T17:37:44.3428711Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask755\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask763\",\"eTag\":\"0x8D7E09A8A243802\",\"lastModified\":\"2020-04-14T17:37:44.3429378Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask763\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask749\",\"eTag\":\"0x8D7E09A8A2014B4\",\"lastModified\":\"2020-04-14T17:37:44.3158196Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask749\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask754\",\"eTag\":\"0x8D7E09A8A22FAD9\",\"lastModified\":\"2020-04-14T17:37:44.3348185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask754\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask753\",\"eTag\":\"0x8D7E09A8A243802\",\"lastModified\":\"2020-04-14T17:37:44.3429378Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask753\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask757\",\"eTag\":\"0x8D7E09A8A22FAD9\",\"lastModified\":\"2020-04-14T17:37:44.3348185Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask757\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask769\",\"eTag\":\"0x8D7E09A8A24A883\",\"lastModified\":\"2020-04-14T17:37:44.3458179Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask769\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask761\",\"eTag\":\"0x8D7E09A8A245A6C\",\"lastModified\":\"2020-04-14T17:37:44.3438188Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask761\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask759\",\"eTag\":\"0x8D7E09A8A24A883\",\"lastModified\":\"2020-04-14T17:37:44.3458179Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask759\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask765\",\"eTag\":\"0x8D7E09A8A245A6C\",\"lastModified\":\"2020-04-14T17:37:44.3438188Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask765\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask773\",\"eTag\":\"0x8D7E09A8A262F22\",\"lastModified\":\"2020-04-14T17:37:44.3558178Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask773\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask762\",\"eTag\":\"0x8D7E09A8A243802\",\"lastModified\":\"2020-04-14T17:37:44.3429378Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask762\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask770\",\"eTag\":\"0x8D7E09A8A262F22\",\"lastModified\":\"2020-04-14T17:37:44.3558178Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask770\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask771\",\"eTag\":\"0x8D7E09A8A274083\",\"lastModified\":\"2020-04-14T17:37:44.3628163Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask771\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask787\",\"eTag\":\"0x8D7E09A8A2767B3\",\"lastModified\":\"2020-04-14T17:37:44.3638195Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask787\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask774\",\"eTag\":\"0x8D7E09A8A274083\",\"lastModified\":\"2020-04-14T17:37:44.3628163Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask774\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask781\",\"eTag\":\"0x8D7E09A8A278EBF\",\"lastModified\":\"2020-04-14T17:37:44.3648191Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask781\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask775\",\"eTag\":\"0x8D7E09A8A274083\",\"lastModified\":\"2020-04-14T17:37:44.3628163Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask775\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask797\",\"eTag\":\"0x8D7E09A8A27B5BB\",\"lastModified\":\"2020-04-14T17:37:44.3658171Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask797\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask791\",\"eTag\":\"0x8D7E09A8A28C041\",\"lastModified\":\"2020-04-14T17:37:44.3726401Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask791\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask778\",\"eTag\":\"0x8D7E09A8A2F2FD1\",\"lastModified\":\"2020-04-14T17:37:44.4148177Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask778\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask788\",\"eTag\":\"0x8D7E09A8A2C49AC\",\"lastModified\":\"2020-04-14T17:37:44.3958188Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask788\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask779\",\"eTag\":\"0x8D7E09A8A27B5BB\",\"lastModified\":\"2020-04-14T17:37:44.3658171Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask779\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask764\",\"eTag\":\"0x8D7E09A8A274083\",\"lastModified\":\"2020-04-14T17:37:44.3628163Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask764\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask777\",\"eTag\":\"0x8D7E09A8A27B5BB\",\"lastModified\":\"2020-04-14T17:37:44.3658171Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask777\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask786\",\"eTag\":\"0x8D7E09A8A2D826F\",\"lastModified\":\"2020-04-14T17:37:44.4038255Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask786\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask789\",\"eTag\":\"0x8D7E09A8A2A4DC0\",\"lastModified\":\"2020-04-14T17:37:44.382816Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask789\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask782\",\"eTag\":\"0x8D7E09A8A2A4678\",\"lastModified\":\"2020-04-14T17:37:44.3826296Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask782\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask798\",\"eTag\":\"0x8D7E09A8A28C72E\",\"lastModified\":\"2020-04-14T17:37:44.3728174Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask798\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask784\",\"eTag\":\"0x8D7E09A8A2767B3\",\"lastModified\":\"2020-04-14T17:37:44.3638195Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask784\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask790\",\"eTag\":\"0x8D7E09A8A2F7DFF\",\"lastModified\":\"2020-04-14T17:37:44.4168191Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask790\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask792\",\"eTag\":\"0x8D7E09A8A2C49AC\",\"lastModified\":\"2020-04-14T17:37:44.3958188Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask792\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask795\",\"eTag\":\"0x8D7E09A8A2F2FD1\",\"lastModified\":\"2020-04-14T17:37:44.4148177Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask795\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask783\",\"eTag\":\"0x8D7E09A8A27B5BB\",\"lastModified\":\"2020-04-14T17:37:44.3658171Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask783\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask768\",\"eTag\":\"0x8D7E09A8A262F22\",\"lastModified\":\"2020-04-14T17:37:44.3558178Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask768\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask780\",\"eTag\":\"0x8D7E09A8A2F08C8\",\"lastModified\":\"2020-04-14T17:37:44.4138184Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask780\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask776\",\"eTag\":\"0x8D7E09A8A2F7DFF\",\"lastModified\":\"2020-04-14T17:37:44.4168191Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask776\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask772\",\"eTag\":\"0x8D7E09A8A326420\",\"lastModified\":\"2020-04-14T17:37:44.4358176Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask772\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask794\",\"eTag\":\"0x8D7E09A8A2F56EE\",\"lastModified\":\"2020-04-14T17:37:44.415819Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask794\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask785\",\"eTag\":\"0x8D7E09A8A326420\",\"lastModified\":\"2020-04-14T17:37:44.4358176Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask785\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask793\",\"eTag\":\"0x8D7E09A8A2EE1C2\",\"lastModified\":\"2020-04-14T17:37:44.4128194Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask793\"\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/addtaskcollection?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "204d0510-3700-4637-9b65-7b7158dc9094", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "ed6a8db7-0219-4127-b9fe-639582fe27ed", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask500\",\"eTag\":\"0x8D7E09A89D971AF\",\"lastModified\":\"2020-04-14T17:37:43.8528943Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask500\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask502\",\"eTag\":\"0x8D7E09A89DE0DEA\",\"lastModified\":\"2020-04-14T17:37:43.8831082Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask502\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask518\",\"eTag\":\"0x8D7E09A89EC17A5\",\"lastModified\":\"2020-04-14T17:37:43.9751077Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask518\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask503\",\"eTag\":\"0x8D7E09A8A08EE69\",\"lastModified\":\"2020-04-14T17:37:44.1641065Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask503\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask505\",\"eTag\":\"0x8D7E09A8A09157D\",\"lastModified\":\"2020-04-14T17:37:44.1651069Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask505\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask590\",\"eTag\":\"0x8D7E09A8A08C752\",\"lastModified\":\"2020-04-14T17:37:44.1631058Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask590\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask514\",\"eTag\":\"0x8D7E09A8A121637\",\"lastModified\":\"2020-04-14T17:37:44.2241079Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask514\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask512\",\"eTag\":\"0x8D7E09A8A121637\",\"lastModified\":\"2020-04-14T17:37:44.2241079Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask512\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask517\",\"eTag\":\"0x8D7E09A8A1AA1AE\",\"lastModified\":\"2020-04-14T17:37:44.280107Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask517\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask543\",\"eTag\":\"0x8D7E09A8A25EC53\",\"lastModified\":\"2020-04-14T17:37:44.3541075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask543\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask536\",\"eTag\":\"0x8D7E09A8A268C6F\",\"lastModified\":\"2020-04-14T17:37:44.3582063Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask536\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask580\",\"eTag\":\"0x8D7E09A8A32966C\",\"lastModified\":\"2020-04-14T17:37:44.4371052Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask580\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask507\",\"eTag\":\"0x8D7E09A8A09157D\",\"lastModified\":\"2020-04-14T17:37:44.1651069Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask507\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask506\",\"eTag\":\"0x8D7E09A8A0A26F5\",\"lastModified\":\"2020-04-14T17:37:44.1721077Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask506\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask504\",\"eTag\":\"0x8D7E09A8A09157D\",\"lastModified\":\"2020-04-14T17:37:44.1651069Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask504\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask501\",\"eTag\":\"0x8D7E09A8A09157D\",\"lastModified\":\"2020-04-14T17:37:44.1651069Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask501\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask510\",\"eTag\":\"0x8D7E09A8A101A4D\",\"lastModified\":\"2020-04-14T17:37:44.2111053Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask510\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask513\",\"eTag\":\"0x8D7E09A8A11EF1B\",\"lastModified\":\"2020-04-14T17:37:44.2231067Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask513\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask516\",\"eTag\":\"0x8D7E09A8A11C821\",\"lastModified\":\"2020-04-14T17:37:44.2221089Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask516\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask509\",\"eTag\":\"0x8D7E09A8A11C821\",\"lastModified\":\"2020-04-14T17:37:44.2221089Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask509\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask511\",\"eTag\":\"0x8D7E09A8A108F93\",\"lastModified\":\"2020-04-14T17:37:44.2141075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask511\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask515\",\"eTag\":\"0x8D7E09A8A104173\",\"lastModified\":\"2020-04-14T17:37:44.2121075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask515\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask508\",\"eTag\":\"0x8D7E09A8A121637\",\"lastModified\":\"2020-04-14T17:37:44.2241079Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask508\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask526\",\"eTag\":\"0x8D7E09A8A1C767D\",\"lastModified\":\"2020-04-14T17:37:44.2921085Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask526\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask520\",\"eTag\":\"0x8D7E09A8A1C9D81\",\"lastModified\":\"2020-04-14T17:37:44.2931073Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask520\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask519\",\"eTag\":\"0x8D7E09A8A2290EB\",\"lastModified\":\"2020-04-14T17:37:44.3321067Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask519\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask528\",\"eTag\":\"0x8D7E09A8A1E2429\",\"lastModified\":\"2020-04-14T17:37:44.3031081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask528\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask527\",\"eTag\":\"0x8D7E09A8A1E2429\",\"lastModified\":\"2020-04-14T17:37:44.3031081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask527\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask524\",\"eTag\":\"0x8D7E09A8A1DD602\",\"lastModified\":\"2020-04-14T17:37:44.3011074Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask524\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask530\",\"eTag\":\"0x8D7E09A8A1E2429\",\"lastModified\":\"2020-04-14T17:37:44.3031081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask530\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask531\",\"eTag\":\"0x8D7E09A8A1C9D81\",\"lastModified\":\"2020-04-14T17:37:44.2931073Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask531\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask529\",\"eTag\":\"0x8D7E09A8A1DA58D\",\"lastModified\":\"2020-04-14T17:37:44.2998669Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask529\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask523\",\"eTag\":\"0x8D7E09A8A1C767D\",\"lastModified\":\"2020-04-14T17:37:44.2921085Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask523\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask521\",\"eTag\":\"0x8D7E09A8A1DFD14\",\"lastModified\":\"2020-04-14T17:37:44.3021076Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask521\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask522\",\"eTag\":\"0x8D7E09A8A2290EB\",\"lastModified\":\"2020-04-14T17:37:44.3321067Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask522\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask525\",\"eTag\":\"0x8D7E09A8A1E2429\",\"lastModified\":\"2020-04-14T17:37:44.3031081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask525\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask533\",\"eTag\":\"0x8D7E09A8A1DAEF6\",\"lastModified\":\"2020-04-14T17:37:44.3001078Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask533\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask532\",\"eTag\":\"0x8D7E09A8A2290EB\",\"lastModified\":\"2020-04-14T17:37:44.3321067Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask532\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask535\",\"eTag\":\"0x8D7E09A8A26D6A3\",\"lastModified\":\"2020-04-14T17:37:44.3601059Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask535\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask552\",\"eTag\":\"0x8D7E09A8A26AF9D\",\"lastModified\":\"2020-04-14T17:37:44.3591069Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask552\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask537\",\"eTag\":\"0x8D7E09A8A26D6A3\",\"lastModified\":\"2020-04-14T17:37:44.3601059Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask537\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask540\",\"eTag\":\"0x8D7E09A8A25EC53\",\"lastModified\":\"2020-04-14T17:37:44.3541075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask540\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask541\",\"eTag\":\"0x8D7E09A8A2613D6\",\"lastModified\":\"2020-04-14T17:37:44.355119Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask541\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask534\",\"eTag\":\"0x8D7E09A8A25EC53\",\"lastModified\":\"2020-04-14T17:37:44.3541075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask534\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask549\",\"eTag\":\"0x8D7E09A8A2724C5\",\"lastModified\":\"2020-04-14T17:37:44.3621061Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask549\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask544\",\"eTag\":\"0x8D7E09A8A281021\",\"lastModified\":\"2020-04-14T17:37:44.3681313Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask544\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask539\",\"eTag\":\"0x8D7E09A8A2724C5\",\"lastModified\":\"2020-04-14T17:37:44.3621061Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask539\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask547\",\"eTag\":\"0x8D7E09A8A28365A\",\"lastModified\":\"2020-04-14T17:37:44.3691098Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask547\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask561\",\"eTag\":\"0x8D7E09A8A285D66\",\"lastModified\":\"2020-04-14T17:37:44.3701094Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask561\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask542\",\"eTag\":\"0x8D7E09A8A2724C5\",\"lastModified\":\"2020-04-14T17:37:44.3621061Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask542\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask538\",\"eTag\":\"0x8D7E09A8A26FDC0\",\"lastModified\":\"2020-04-14T17:37:44.3611072Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask538\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask556\",\"eTag\":\"0x8D7E09A8A2724C5\",\"lastModified\":\"2020-04-14T17:37:44.3621061Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask556\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask566\",\"eTag\":\"0x8D7E09A8A288457\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask566\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask570\",\"eTag\":\"0x8D7E09A8A285D66\",\"lastModified\":\"2020-04-14T17:37:44.3701094Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask570\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask565\",\"eTag\":\"0x8D7E09A8A29BD50\",\"lastModified\":\"2020-04-14T17:37:44.3791184Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask565\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask562\",\"eTag\":\"0x8D7E09A8A288457\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask562\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask548\",\"eTag\":\"0x8D7E09A8A288457\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask548\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask560\",\"eTag\":\"0x8D7E09A8A29BD50\",\"lastModified\":\"2020-04-14T17:37:44.3791184Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask560\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask551\",\"eTag\":\"0x8D7E09A8A29E3F9\",\"lastModified\":\"2020-04-14T17:37:44.3801081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask551\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask574\",\"eTag\":\"0x8D7E09A8A2E29B3\",\"lastModified\":\"2020-04-14T17:37:44.4081075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask574\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask579\",\"eTag\":\"0x8D7E09A8A2FD814\",\"lastModified\":\"2020-04-14T17:37:44.4191252Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask579\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask553\",\"eTag\":\"0x8D7E09A8A29E3F9\",\"lastModified\":\"2020-04-14T17:37:44.3801081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask553\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask555\",\"eTag\":\"0x8D7E09A8A2812BA\",\"lastModified\":\"2020-04-14T17:37:44.3681978Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask555\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask563\",\"eTag\":\"0x8D7E09A8A288457\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask563\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask568\",\"eTag\":\"0x8D7E09A8A288457\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask568\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask554\",\"eTag\":\"0x8D7E09A8A2724C5\",\"lastModified\":\"2020-04-14T17:37:44.3621061Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask554\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask558\",\"eTag\":\"0x8D7E09A8A2995CA\",\"lastModified\":\"2020-04-14T17:37:44.3781066Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask558\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask567\",\"eTag\":\"0x8D7E09A8A2989FD\",\"lastModified\":\"2020-04-14T17:37:44.3778045Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask567\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask573\",\"eTag\":\"0x8D7E09A8A2E29B3\",\"lastModified\":\"2020-04-14T17:37:44.4081075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask573\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask572\",\"eTag\":\"0x8D7E09A8A2E50CB\",\"lastModified\":\"2020-04-14T17:37:44.4091083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask572\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask557\",\"eTag\":\"0x8D7E09A8A29E3F9\",\"lastModified\":\"2020-04-14T17:37:44.3801081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask557\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask575\",\"eTag\":\"0x8D7E09A8A2E29B3\",\"lastModified\":\"2020-04-14T17:37:44.4081075Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask575\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask550\",\"eTag\":\"0x8D7E09A8A2B07C8\",\"lastModified\":\"2020-04-14T17:37:44.3875784Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask550\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask571\",\"eTag\":\"0x8D7E09A8A2E50CB\",\"lastModified\":\"2020-04-14T17:37:44.4091083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask571\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask576\",\"eTag\":\"0x8D7E09A8A2B1C76\",\"lastModified\":\"2020-04-14T17:37:44.3881078Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask576\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask564\",\"eTag\":\"0x8D7E09A8A2E50CB\",\"lastModified\":\"2020-04-14T17:37:44.4091083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask564\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask545\",\"eTag\":\"0x8D7E09A8A288457\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask545\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask577\",\"eTag\":\"0x8D7E09A8A318514\",\"lastModified\":\"2020-04-14T17:37:44.4301076Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask577\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask569\",\"eTag\":\"0x8D7E09A8A315DFA\",\"lastModified\":\"2020-04-14T17:37:44.4291066Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask569\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask578\",\"eTag\":\"0x8D7E09A8A315DFA\",\"lastModified\":\"2020-04-14T17:37:44.4291066Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask578\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask559\",\"eTag\":\"0x8D7E09A8A318514\",\"lastModified\":\"2020-04-14T17:37:44.4301076Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask559\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask586\",\"eTag\":\"0x8D7E09A8A32E498\",\"lastModified\":\"2020-04-14T17:37:44.4391064Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask586\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask581\",\"eTag\":\"0x8D7E09A8A330C14\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask581\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask593\",\"eTag\":\"0x8D7E09A8A330C14\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask593\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask584\",\"eTag\":\"0x8D7E09A8A346B4D\",\"lastModified\":\"2020-04-14T17:37:44.4491085Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask584\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask583\",\"eTag\":\"0x8D7E09A8A341D1C\",\"lastModified\":\"2020-04-14T17:37:44.4471068Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask583\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask587\",\"eTag\":\"0x8D7E09A8A330C14\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask587\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask582\",\"eTag\":\"0x8D7E09A8A32E498\",\"lastModified\":\"2020-04-14T17:37:44.4391064Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask582\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask592\",\"eTag\":\"0x8D7E09A8A330C14\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask592\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask588\",\"eTag\":\"0x8D7E09A8A330C14\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask588\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask596\",\"eTag\":\"0x8D7E09A8A344439\",\"lastModified\":\"2020-04-14T17:37:44.4481081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask596\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask585\",\"eTag\":\"0x8D7E09A8A330C14\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask585\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask591\",\"eTag\":\"0x8D7E09A8A341D1C\",\"lastModified\":\"2020-04-14T17:37:44.4471068Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask591\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask594\",\"eTag\":\"0x8D7E09A8A34925B\",\"lastModified\":\"2020-04-14T17:37:44.4501083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask594\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask589\",\"eTag\":\"0x8D7E09A8A344439\",\"lastModified\":\"2020-04-14T17:37:44.4481081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask589\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask595\",\"eTag\":\"0x8D7E09A8A344439\",\"lastModified\":\"2020-04-14T17:37:44.4481081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask595\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask546\",\"eTag\":\"0x8D7E09A8A34925B\",\"lastModified\":\"2020-04-14T17:37:44.4501083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask546\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask599\",\"eTag\":\"0x8D7E09A8A344439\",\"lastModified\":\"2020-04-14T17:37:44.4481081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask599\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask597\",\"eTag\":\"0x8D7E09A8A34925B\",\"lastModified\":\"2020-04-14T17:37:44.4501083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask597\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask598\",\"eTag\":\"0x8D7E09A8A346B4D\",\"lastModified\":\"2020-04-14T17:37:44.4491085Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask598\"\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/addtaskcollection?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "6f75fcfa-8f94-4b7c-8fbd-3aa850f99295", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "ea0599a5-a73f-4a15-8668-fbf382779f3b", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask400\",\"eTag\":\"0x8D7E09A89FF9E80\",\"lastModified\":\"2020-04-14T17:37:44.1030784Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask400\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask430\",\"eTag\":\"0x8D7E09A8A6CB857\",\"lastModified\":\"2020-04-14T17:37:44.8180823Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask430\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask411\",\"eTag\":\"0x8D7E09A8A6ABC9F\",\"lastModified\":\"2020-04-14T17:37:44.8050847Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask411\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask401\",\"eTag\":\"0x8D7E09A8A664FE5\",\"lastModified\":\"2020-04-14T17:37:44.7760869Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask401\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask404\",\"eTag\":\"0x8D7E09A8A6B31C1\",\"lastModified\":\"2020-04-14T17:37:44.8080833Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask404\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask403\",\"eTag\":\"0x8D7E09A8A6B31C1\",\"lastModified\":\"2020-04-14T17:37:44.8080833Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask403\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask412\",\"eTag\":\"0x8D7E09A8A6AE39E\",\"lastModified\":\"2020-04-14T17:37:44.806083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask412\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask407\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask407\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask413\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask413\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask408\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask408\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask425\",\"eTag\":\"0x8D7E09A8A6C2299\",\"lastModified\":\"2020-04-14T17:37:44.8142489Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask425\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask416\",\"eTag\":\"0x8D7E09A8A6C9154\",\"lastModified\":\"2020-04-14T17:37:44.8170836Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask416\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask418\",\"eTag\":\"0x8D7E09A8A6C6A37\",\"lastModified\":\"2020-04-14T17:37:44.8160823Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask418\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask421\",\"eTag\":\"0x8D7E09A8A6DA8CC\",\"lastModified\":\"2020-04-14T17:37:44.824238Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask421\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask419\",\"eTag\":\"0x8D7E09A8A6C4333\",\"lastModified\":\"2020-04-14T17:37:44.8150835Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask419\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask409\",\"eTag\":\"0x8D7E09A8A6CB857\",\"lastModified\":\"2020-04-14T17:37:44.8180823Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask409\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask414\",\"eTag\":\"0x8D7E09A8A6C2299\",\"lastModified\":\"2020-04-14T17:37:44.8142489Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask414\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask406\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask406\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask433\",\"eTag\":\"0x8D7E09A8A6CB857\",\"lastModified\":\"2020-04-14T17:37:44.8180823Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask433\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask410\",\"eTag\":\"0x8D7E09A8A6C9154\",\"lastModified\":\"2020-04-14T17:37:44.8170836Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask410\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask402\",\"eTag\":\"0x8D7E09A8A6C2299\",\"lastModified\":\"2020-04-14T17:37:44.8142489Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask402\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask420\",\"eTag\":\"0x8D7E09A8A6CB857\",\"lastModified\":\"2020-04-14T17:37:44.8180823Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask420\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask450\",\"eTag\":\"0x8D7E09A8A6DC9D6\",\"lastModified\":\"2020-04-14T17:37:44.8250838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask450\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask444\",\"eTag\":\"0x8D7E09A8A70FE26\",\"lastModified\":\"2020-04-14T17:37:44.8460838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask444\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask427\",\"eTag\":\"0x8D7E09A8A6DA8CC\",\"lastModified\":\"2020-04-14T17:37:44.824238Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask427\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask417\",\"eTag\":\"0x8D7E09A8A6DC9D6\",\"lastModified\":\"2020-04-14T17:37:44.8250838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask417\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask424\",\"eTag\":\"0x8D7E09A8A6E3EF0\",\"lastModified\":\"2020-04-14T17:37:44.8280816Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask424\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask434\",\"eTag\":\"0x8D7E09A8A6F2C77\",\"lastModified\":\"2020-04-14T17:37:44.8341623Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask434\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask429\",\"eTag\":\"0x8D7E09A8A6C4333\",\"lastModified\":\"2020-04-14T17:37:44.8150835Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask429\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask435\",\"eTag\":\"0x8D7E09A8A714C49\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask435\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask431\",\"eTag\":\"0x8D7E09A8A723652\",\"lastModified\":\"2020-04-14T17:37:44.8540754Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask431\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask445\",\"eTag\":\"0x8D7E09A8A723E21\",\"lastModified\":\"2020-04-14T17:37:44.8542753Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask445\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask405\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask405\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask456\",\"eTag\":\"0x8D7E09A8A714C49\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask456\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask423\",\"eTag\":\"0x8D7E09A8A723E21\",\"lastModified\":\"2020-04-14T17:37:44.8542753Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask423\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask428\",\"eTag\":\"0x8D7E09A8A714C49\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask428\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask458\",\"eTag\":\"0x8D7E09A8A714C49\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask458\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask454\",\"eTag\":\"0x8D7E09A8A714C49\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask454\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask443\",\"eTag\":\"0x8D7E09A8A714C49\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask443\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask436\",\"eTag\":\"0x8D7E09A8A6CB857\",\"lastModified\":\"2020-04-14T17:37:44.8180823Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask436\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask426\",\"eTag\":\"0x8D7E09A8A6DA8CC\",\"lastModified\":\"2020-04-14T17:37:44.824238Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask426\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask437\",\"eTag\":\"0x8D7E09A8A72D2E9\",\"lastModified\":\"2020-04-14T17:37:44.8580841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask437\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask451\",\"eTag\":\"0x8D7E09A8A72D2E9\",\"lastModified\":\"2020-04-14T17:37:44.8580841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask451\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask452\",\"eTag\":\"0x8D7E09A8A7766C0\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask452\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask483\",\"eTag\":\"0x8D7E09A8A79DD6F\",\"lastModified\":\"2020-04-14T17:37:44.9042287Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask483\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask447\",\"eTag\":\"0x8D7E09A8A773FBB\",\"lastModified\":\"2020-04-14T17:37:44.8870843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask447\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask441\",\"eTag\":\"0x8D7E09A8A7859B6\",\"lastModified\":\"2020-04-14T17:37:44.894303Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask441\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask455\",\"eTag\":\"0x8D7E09A8A73C1CE\",\"lastModified\":\"2020-04-14T17:37:44.8641998Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask455\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask438\",\"eTag\":\"0x8D7E09A8A7766C0\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask438\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask415\",\"eTag\":\"0x8D7E09A8A74597F\",\"lastModified\":\"2020-04-14T17:37:44.8680831Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask415\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask442\",\"eTag\":\"0x8D7E09A8A7766C0\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask442\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask457\",\"eTag\":\"0x8D7E09A8A73E45F\",\"lastModified\":\"2020-04-14T17:37:44.8650847Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask457\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask439\",\"eTag\":\"0x8D7E09A8A76CAAE\",\"lastModified\":\"2020-04-14T17:37:44.8840878Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask439\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask432\",\"eTag\":\"0x8D7E09A8A73C1CE\",\"lastModified\":\"2020-04-14T17:37:44.8641998Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask432\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask459\",\"eTag\":\"0x8D7E09A8A7766C0\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask459\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask468\",\"eTag\":\"0x8D7E09A8A79DD6F\",\"lastModified\":\"2020-04-14T17:37:44.9042287Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask468\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask472\",\"eTag\":\"0x8D7E09A8A79DD6F\",\"lastModified\":\"2020-04-14T17:37:44.9042287Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask472\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask446\",\"eTag\":\"0x8D7E09A8A785719\",\"lastModified\":\"2020-04-14T17:37:44.8942361Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask446\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask486\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask486\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask471\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask471\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask484\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask484\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask449\",\"eTag\":\"0x8D7E09A8A7766C0\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask449\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask440\",\"eTag\":\"0x8D7E09A8A785719\",\"lastModified\":\"2020-04-14T17:37:44.8942361Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask440\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask480\",\"eTag\":\"0x8D7E09A8A7B6395\",\"lastModified\":\"2020-04-14T17:37:44.9142165Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask480\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask481\",\"eTag\":\"0x8D7E09A8A7FA42A\",\"lastModified\":\"2020-04-14T17:37:44.9420842Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask481\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask478\",\"eTag\":\"0x8D7E09A8A7F56FE\",\"lastModified\":\"2020-04-14T17:37:44.9401086Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask478\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask479\",\"eTag\":\"0x8D7E09A8A808E7D\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask479\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask466\",\"eTag\":\"0x8D7E09A8A808E7D\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask466\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask448\",\"eTag\":\"0x8D7E09A8A76F19B\",\"lastModified\":\"2020-04-14T17:37:44.8850843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask448\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask467\",\"eTag\":\"0x8D7E09A8A81897E\",\"lastModified\":\"2020-04-14T17:37:44.9545086Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask467\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask460\",\"eTag\":\"0x8D7E09A8A819FFB\",\"lastModified\":\"2020-04-14T17:37:44.9550843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask460\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask464\",\"eTag\":\"0x8D7E09A8A821537\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask464\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask474\",\"eTag\":\"0x8D7E09A8A7BD374\",\"lastModified\":\"2020-04-14T17:37:44.9170804Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask474\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask461\",\"eTag\":\"0x8D7E09A8A7BD374\",\"lastModified\":\"2020-04-14T17:37:44.9170804Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask461\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask422\",\"eTag\":\"0x8D7E09A8A808E7D\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask422\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask463\",\"eTag\":\"0x8D7E09A8A7FF23D\",\"lastModified\":\"2020-04-14T17:37:44.9440829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask463\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask473\",\"eTag\":\"0x8D7E09A8A81EE19\",\"lastModified\":\"2020-04-14T17:37:44.9570841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask473\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask476\",\"eTag\":\"0x8D7E09A8A801959\",\"lastModified\":\"2020-04-14T17:37:44.9450841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask476\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask453\",\"eTag\":\"0x8D7E09A8A7F56FE\",\"lastModified\":\"2020-04-14T17:37:44.9401086Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask453\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask485\",\"eTag\":\"0x8D7E09A8A808E7D\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask485\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask465\",\"eTag\":\"0x8D7E09A8A821537\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask465\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask487\",\"eTag\":\"0x8D7E09A8A821537\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask487\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask488\",\"eTag\":\"0x8D7E09A8A80406B\",\"lastModified\":\"2020-04-14T17:37:44.9460843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask488\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask477\",\"eTag\":\"0x8D7E09A8A821537\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask477\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask470\",\"eTag\":\"0x8D7E09A8A7FF23D\",\"lastModified\":\"2020-04-14T17:37:44.9440829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask470\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask494\",\"eTag\":\"0x8D7E09A8A8C7558\",\"lastModified\":\"2020-04-14T17:37:45.0260824Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask494\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask496\",\"eTag\":\"0x8D7E09A8A8DFBFD\",\"lastModified\":\"2020-04-14T17:37:45.0360829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask496\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask490\",\"eTag\":\"0x8D7E09A8A8C9C77\",\"lastModified\":\"2020-04-14T17:37:45.0270839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask490\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask492\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask492\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask482\",\"eTag\":\"0x8D7E09A8A8C002E\",\"lastModified\":\"2020-04-14T17:37:45.023083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask482\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask498\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask498\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask499\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask499\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask489\",\"eTag\":\"0x8D7E09A8A8C7558\",\"lastModified\":\"2020-04-14T17:37:45.0260824Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask489\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask491\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask491\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask475\",\"eTag\":\"0x8D7E09A8A7FA42A\",\"lastModified\":\"2020-04-14T17:37:44.9420842Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask475\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask495\",\"eTag\":\"0x8D7E09A8A8DFBFD\",\"lastModified\":\"2020-04-14T17:37:45.0360829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask495\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask493\",\"eTag\":\"0x8D7E09A8A8DC860\",\"lastModified\":\"2020-04-14T17:37:45.0347616Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask493\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask469\",\"eTag\":\"0x8D7E09A8A819FFB\",\"lastModified\":\"2020-04-14T17:37:44.9550843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask469\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask497\",\"eTag\":\"0x8D7E09A8A8E4A2A\",\"lastModified\":\"2020-04-14T17:37:45.0380842Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask497\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask462\",\"eTag\":\"0x8D7E09A8A821537\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask462\"\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "POST", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/addtaskcollection?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "3d6fc3ad-d3fc-4734-8c75-4fe46a50102f", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "1cc5be6d-ffce-4f82-b733-bfd281029a13", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask80\",\"eTag\":\"0x8D7E09A8A4692A4\",\"lastModified\":\"2020-04-14T17:37:44.5680804Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask80\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask105\",\"eTag\":\"0x8D7E09A8A6B0AB0\",\"lastModified\":\"2020-04-14T17:37:44.8070832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask105\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask99\",\"eTag\":\"0x8D7E09A8A647AF9\",\"lastModified\":\"2020-04-14T17:37:44.7640825Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask99\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask100\",\"eTag\":\"0x8D7E09A8A64A287\",\"lastModified\":\"2020-04-14T17:37:44.7650951Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask100\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask102\",\"eTag\":\"0x8D7E09A8A647AF9\",\"lastModified\":\"2020-04-14T17:37:44.7640825Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask102\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask110\",\"eTag\":\"0x8D7E09A8A64A287\",\"lastModified\":\"2020-04-14T17:37:44.7650951Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask110\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask95\",\"eTag\":\"0x8D7E09A8A64A287\",\"lastModified\":\"2020-04-14T17:37:44.7650951Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask95\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask108\",\"eTag\":\"0x8D7E09A8A64F01F\",\"lastModified\":\"2020-04-14T17:37:44.7670815Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask108\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask98\",\"eTag\":\"0x8D7E09A8A64A287\",\"lastModified\":\"2020-04-14T17:37:44.7650951Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask98\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask96\",\"eTag\":\"0x8D7E09A8A65F23F\",\"lastModified\":\"2020-04-14T17:37:44.7736895Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask96\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask103\",\"eTag\":\"0x8D7E09A8A65F4D7\",\"lastModified\":\"2020-04-14T17:37:44.7737559Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask103\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask97\",\"eTag\":\"0x8D7E09A8A64C911\",\"lastModified\":\"2020-04-14T17:37:44.7660817Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask97\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask109\",\"eTag\":\"0x8D7E09A8A66018E\",\"lastModified\":\"2020-04-14T17:37:44.7740814Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask109\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask94\",\"eTag\":\"0x8D7E09A8A64C911\",\"lastModified\":\"2020-04-14T17:37:44.7660817Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask94\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask111\",\"eTag\":\"0x8D7E09A8A6628B5\",\"lastModified\":\"2020-04-14T17:37:44.7750837Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask111\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask107\",\"eTag\":\"0x8D7E09A8A6B0AB0\",\"lastModified\":\"2020-04-14T17:37:44.8070832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask107\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask104\",\"eTag\":\"0x8D7E09A8A6ABC9F\",\"lastModified\":\"2020-04-14T17:37:44.8050847Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask104\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask113\",\"eTag\":\"0x8D7E09A8A6628B5\",\"lastModified\":\"2020-04-14T17:37:44.7750837Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask113\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask101\",\"eTag\":\"0x8D7E09A8A6C6A37\",\"lastModified\":\"2020-04-14T17:37:44.8160823Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask101\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask112\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask112\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask133\",\"eTag\":\"0x8D7E09A8A6E3EF0\",\"lastModified\":\"2020-04-14T17:37:44.8280816Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask133\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask114\",\"eTag\":\"0x8D7E09A8A6DC9D6\",\"lastModified\":\"2020-04-14T17:37:44.8250838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask114\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask144\",\"eTag\":\"0x8D7E09A8A6F2C77\",\"lastModified\":\"2020-04-14T17:37:44.8341623Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask144\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask129\",\"eTag\":\"0x8D7E09A8A6DF0E7\",\"lastModified\":\"2020-04-14T17:37:44.8260839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask129\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask135\",\"eTag\":\"0x8D7E09A8A6DF0E7\",\"lastModified\":\"2020-04-14T17:37:44.8260839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask135\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask146\",\"eTag\":\"0x8D7E09A8A70FE26\",\"lastModified\":\"2020-04-14T17:37:44.8460838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask146\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask137\",\"eTag\":\"0x8D7E09A8A714C49\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask137\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask117\",\"eTag\":\"0x8D7E09A8A70FE26\",\"lastModified\":\"2020-04-14T17:37:44.8460838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask117\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask136\",\"eTag\":\"0x8D7E09A8A6E3EF0\",\"lastModified\":\"2020-04-14T17:37:44.8280816Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask136\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask134\",\"eTag\":\"0x8D7E09A8A70FE26\",\"lastModified\":\"2020-04-14T17:37:44.8460838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask134\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask156\",\"eTag\":\"0x8D7E09A8A714C49\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask156\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask162\",\"eTag\":\"0x8D7E09A8A712536\",\"lastModified\":\"2020-04-14T17:37:44.8470838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask162\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask163\",\"eTag\":\"0x8D7E09A8A714C49\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask163\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask155\",\"eTag\":\"0x8D7E09A8A712536\",\"lastModified\":\"2020-04-14T17:37:44.8470838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask155\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask123\",\"eTag\":\"0x8D7E09A8A712536\",\"lastModified\":\"2020-04-14T17:37:44.8470838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask123\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask132\",\"eTag\":\"0x8D7E09A8A6E3EF0\",\"lastModified\":\"2020-04-14T17:37:44.8280816Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask132\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask142\",\"eTag\":\"0x8D7E09A8A712536\",\"lastModified\":\"2020-04-14T17:37:44.8470838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask142\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask131\",\"eTag\":\"0x8D7E09A8A725DB6\",\"lastModified\":\"2020-04-14T17:37:44.8550838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask131\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask153\",\"eTag\":\"0x8D7E09A8A725DB6\",\"lastModified\":\"2020-04-14T17:37:44.8550838Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask153\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask127\",\"eTag\":\"0x8D7E09A8A72ABD0\",\"lastModified\":\"2020-04-14T17:37:44.8570832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask127\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask115\",\"eTag\":\"0x8D7E09A8A7284C4\",\"lastModified\":\"2020-04-14T17:37:44.8560836Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask115\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask151\",\"eTag\":\"0x8D7E09A8A723E21\",\"lastModified\":\"2020-04-14T17:37:44.8542753Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask151\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask152\",\"eTag\":\"0x8D7E09A8A7284C4\",\"lastModified\":\"2020-04-14T17:37:44.8560836Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask152\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask116\",\"eTag\":\"0x8D7E09A8A714C49\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask116\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask148\",\"eTag\":\"0x8D7E09A8A72D2E9\",\"lastModified\":\"2020-04-14T17:37:44.8580841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask148\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask157\",\"eTag\":\"0x8D7E09A8A72ABD0\",\"lastModified\":\"2020-04-14T17:37:44.8570832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask157\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask160\",\"eTag\":\"0x8D7E09A8A7718AC\",\"lastModified\":\"2020-04-14T17:37:44.8860844Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask160\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask141\",\"eTag\":\"0x8D7E09A8A787838\",\"lastModified\":\"2020-04-14T17:37:44.895084Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask141\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask149\",\"eTag\":\"0x8D7E09A8A72ABD0\",\"lastModified\":\"2020-04-14T17:37:44.8570832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask149\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask145\",\"eTag\":\"0x8D7E09A8A73BF22\",\"lastModified\":\"2020-04-14T17:37:44.8641314Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask145\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask125\",\"eTag\":\"0x8D7E09A8A73C1CE\",\"lastModified\":\"2020-04-14T17:37:44.8641998Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask125\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask140\",\"eTag\":\"0x8D7E09A8A789F3E\",\"lastModified\":\"2020-04-14T17:37:44.896083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask140\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask158\",\"eTag\":\"0x8D7E09A8A743269\",\"lastModified\":\"2020-04-14T17:37:44.8670825Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask158\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask154\",\"eTag\":\"0x8D7E09A8A789F3E\",\"lastModified\":\"2020-04-14T17:37:44.896083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask154\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask185\",\"eTag\":\"0x8D7E09A8A78C654\",\"lastModified\":\"2020-04-14T17:37:44.8970836Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask185\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask128\",\"eTag\":\"0x8D7E09A8A773FBB\",\"lastModified\":\"2020-04-14T17:37:44.8870843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask128\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask118\",\"eTag\":\"0x8D7E09A8A7859B6\",\"lastModified\":\"2020-04-14T17:37:44.894303Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask118\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask165\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask165\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask147\",\"eTag\":\"0x8D7E09A8A743269\",\"lastModified\":\"2020-04-14T17:37:44.8670825Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask147\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask169\",\"eTag\":\"0x8D7E09A8A7B6395\",\"lastModified\":\"2020-04-14T17:37:44.9142165Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask169\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask179\",\"eTag\":\"0x8D7E09A8A7BD374\",\"lastModified\":\"2020-04-14T17:37:44.9170804Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask179\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask161\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask161\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask184\",\"eTag\":\"0x8D7E09A8A7B60EA\",\"lastModified\":\"2020-04-14T17:37:44.9141482Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask184\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask183\",\"eTag\":\"0x8D7E09A8A78C654\",\"lastModified\":\"2020-04-14T17:37:44.8970836Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask183\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask174\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask174\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask172\",\"eTag\":\"0x8D7E09A8A79FEF0\",\"lastModified\":\"2020-04-14T17:37:44.9050864Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask172\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask143\",\"eTag\":\"0x8D7E09A8A787838\",\"lastModified\":\"2020-04-14T17:37:44.895084Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask143\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask171\",\"eTag\":\"0x8D7E09A8A7F7D1F\",\"lastModified\":\"2020-04-14T17:37:44.9410847Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask171\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask159\",\"eTag\":\"0x8D7E09A8A7FA42A\",\"lastModified\":\"2020-04-14T17:37:44.9420842Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask159\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask177\",\"eTag\":\"0x8D7E09A8A79DD6F\",\"lastModified\":\"2020-04-14T17:37:44.9042287Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask177\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask181\",\"eTag\":\"0x8D7E09A8A808E7D\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask181\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask166\",\"eTag\":\"0x8D7E09A8A7BD374\",\"lastModified\":\"2020-04-14T17:37:44.9170804Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask166\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask138\",\"eTag\":\"0x8D7E09A8A7B856F\",\"lastModified\":\"2020-04-14T17:37:44.9150831Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask138\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask180\",\"eTag\":\"0x8D7E09A8A80406B\",\"lastModified\":\"2020-04-14T17:37:44.9460843Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask180\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask150\",\"eTag\":\"0x8D7E09A8A7766C0\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask150\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask182\",\"eTag\":\"0x8D7E09A8A81C701\",\"lastModified\":\"2020-04-14T17:37:44.9560833Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask182\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask173\",\"eTag\":\"0x8D7E09A8A808E7D\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask173\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask164\",\"eTag\":\"0x8D7E09A8A808E7D\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask164\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask190\",\"eTag\":\"0x8D7E09A8A806777\",\"lastModified\":\"2020-04-14T17:37:44.9470839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask190\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask175\",\"eTag\":\"0x8D7E09A8A821537\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask175\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask176\",\"eTag\":\"0x8D7E09A8A808E7D\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask176\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask188\",\"eTag\":\"0x8D7E09A8A821537\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask188\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask189\",\"eTag\":\"0x8D7E09A8A81EE19\",\"lastModified\":\"2020-04-14T17:37:44.9570841Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask189\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask130\",\"eTag\":\"0x8D7E09A8A83269A\",\"lastModified\":\"2020-04-14T17:37:44.9650842Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask130\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask187\",\"eTag\":\"0x8D7E09A8A7FA42A\",\"lastModified\":\"2020-04-14T17:37:44.9420842Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask187\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask186\",\"eTag\":\"0x8D7E09A8A821537\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask186\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask168\",\"eTag\":\"0x8D7E09A8A8302B4\",\"lastModified\":\"2020-04-14T17:37:44.9641652Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask168\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask195\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask195\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask198\",\"eTag\":\"0x8D7E09A8A8DD4F8\",\"lastModified\":\"2020-04-14T17:37:45.035084Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask198\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask192\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask192\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask197\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask197\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask199\",\"eTag\":\"0x8D7E09A8A8F4C08\",\"lastModified\":\"2020-04-14T17:37:45.0446856Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask199\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask191\",\"eTag\":\"0x8D7E09A8A8E4A2A\",\"lastModified\":\"2020-04-14T17:37:45.0380842Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask191\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask178\",\"eTag\":\"0x8D7E09A8A806777\",\"lastModified\":\"2020-04-14T17:37:44.9470839Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask178\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask194\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask194\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask167\",\"eTag\":\"0x8D7E09A8A830A8B\",\"lastModified\":\"2020-04-14T17:37:44.9643659Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask167\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask170\",\"eTag\":\"0x8D7E09A8A8DD4F8\",\"lastModified\":\"2020-04-14T17:37:45.035084Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask170\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask196\",\"eTag\":\"0x8D7E09A8A90CFA7\",\"lastModified\":\"2020-04-14T17:37:45.0546087Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask196\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask193\",\"eTag\":\"0x8D7E09A8A9268CE\",\"lastModified\":\"2020-04-14T17:37:45.065083Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask193\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask139\",\"eTag\":\"0x8D7E09A8A8E24CD\",\"lastModified\":\"2020-04-14T17:37:45.0371277Z\",\"location\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask139\"\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "GET", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "edcd372d-1c62-4a1b-9add-bdbe3af92899", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "12fc23c9-692e-40bb-9698-f0b3a5b857bd", - "StatusCode" : "200", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest2.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask0\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask0\",\"eTag\":\"0x8D7E09A89D65B8F\",\"creationTime\":\"2020-04-14T17:37:43.8326671Z\",\"lastModified\":\"2020-04-14T17:37:43.8326671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8326671Z\",\"commandLine\":\"cmd /c echo hello 0\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask1\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask1\",\"eTag\":\"0x8D7E09A8A0310CE\",\"creationTime\":\"2020-04-14T17:37:44.1256654Z\",\"lastModified\":\"2020-04-14T17:37:44.1256654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1256654Z\",\"commandLine\":\"cmd /c echo hello 1\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask10\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask10\",\"eTag\":\"0x8D7E09A8A075686\",\"creationTime\":\"2020-04-14T17:37:44.1536646Z\",\"lastModified\":\"2020-04-14T17:37:44.1536646Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1536646Z\",\"commandLine\":\"cmd /c echo hello 10\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask100\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask100\",\"eTag\":\"0x8D7E09A8A64A287\",\"creationTime\":\"2020-04-14T17:37:44.7650951Z\",\"lastModified\":\"2020-04-14T17:37:44.7650951Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7650951Z\",\"commandLine\":\"cmd /c echo hello 100\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask101\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask101\",\"eTag\":\"0x8D7E09A8A6C6A37\",\"creationTime\":\"2020-04-14T17:37:44.8160823Z\",\"lastModified\":\"2020-04-14T17:37:44.8160823Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8160823Z\",\"commandLine\":\"cmd /c echo hello 101\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask102\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask102\",\"eTag\":\"0x8D7E09A8A647AF9\",\"creationTime\":\"2020-04-14T17:37:44.7640825Z\",\"lastModified\":\"2020-04-14T17:37:44.7640825Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7640825Z\",\"commandLine\":\"cmd /c echo hello 102\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask103\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask103\",\"eTag\":\"0x8D7E09A8A65F4D7\",\"creationTime\":\"2020-04-14T17:37:44.7737559Z\",\"lastModified\":\"2020-04-14T17:37:44.7737559Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7737559Z\",\"commandLine\":\"cmd /c echo hello 103\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask104\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask104\",\"eTag\":\"0x8D7E09A8A6ABC9F\",\"creationTime\":\"2020-04-14T17:37:44.8050847Z\",\"lastModified\":\"2020-04-14T17:37:44.8050847Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8050847Z\",\"commandLine\":\"cmd /c echo hello 104\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask105\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask105\",\"eTag\":\"0x8D7E09A8A6B0AB0\",\"creationTime\":\"2020-04-14T17:37:44.8070832Z\",\"lastModified\":\"2020-04-14T17:37:44.8070832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8070832Z\",\"commandLine\":\"cmd /c echo hello 105\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask106\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask106\",\"eTag\":\"0x8D7E09A8A21473B\",\"creationTime\":\"2020-04-14T17:37:44.3236667Z\",\"lastModified\":\"2020-04-14T17:37:44.3236667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3236667Z\",\"commandLine\":\"cmd /c echo hello 106\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask107\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask107\",\"eTag\":\"0x8D7E09A8A6B0AB0\",\"creationTime\":\"2020-04-14T17:37:44.8070832Z\",\"lastModified\":\"2020-04-14T17:37:44.8070832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8070832Z\",\"commandLine\":\"cmd /c echo hello 107\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask108\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask108\",\"eTag\":\"0x8D7E09A8A64F01F\",\"creationTime\":\"2020-04-14T17:37:44.7670815Z\",\"lastModified\":\"2020-04-14T17:37:44.7670815Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7670815Z\",\"commandLine\":\"cmd /c echo hello 108\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask109\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask109\",\"eTag\":\"0x8D7E09A8A66018E\",\"creationTime\":\"2020-04-14T17:37:44.7740814Z\",\"lastModified\":\"2020-04-14T17:37:44.7740814Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7740814Z\",\"commandLine\":\"cmd /c echo hello 109\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask11\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask11\",\"eTag\":\"0x8D7E09A8A07CBC3\",\"creationTime\":\"2020-04-14T17:37:44.1566659Z\",\"lastModified\":\"2020-04-14T17:37:44.1566659Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1566659Z\",\"commandLine\":\"cmd /c echo hello 11\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask110\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask110\",\"eTag\":\"0x8D7E09A8A64A287\",\"creationTime\":\"2020-04-14T17:37:44.7650951Z\",\"lastModified\":\"2020-04-14T17:37:44.7650951Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7650951Z\",\"commandLine\":\"cmd /c echo hello 110\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask111\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask111\",\"eTag\":\"0x8D7E09A8A6628B5\",\"creationTime\":\"2020-04-14T17:37:44.7750837Z\",\"lastModified\":\"2020-04-14T17:37:44.7750837Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7750837Z\",\"commandLine\":\"cmd /c echo hello 111\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask112\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask112\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"creationTime\":\"2020-04-14T17:37:44.8090818Z\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8090818Z\",\"commandLine\":\"cmd /c echo hello 112\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask113\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask113\",\"eTag\":\"0x8D7E09A8A6628B5\",\"creationTime\":\"2020-04-14T17:37:44.7750837Z\",\"lastModified\":\"2020-04-14T17:37:44.7750837Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7750837Z\",\"commandLine\":\"cmd /c echo hello 113\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask114\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask114\",\"eTag\":\"0x8D7E09A8A6DC9D6\",\"creationTime\":\"2020-04-14T17:37:44.8250838Z\",\"lastModified\":\"2020-04-14T17:37:44.8250838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8250838Z\",\"commandLine\":\"cmd /c echo hello 114\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask115\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask115\",\"eTag\":\"0x8D7E09A8A7284C4\",\"creationTime\":\"2020-04-14T17:37:44.8560836Z\",\"lastModified\":\"2020-04-14T17:37:44.8560836Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8560836Z\",\"commandLine\":\"cmd /c echo hello 115\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask116\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask116\",\"eTag\":\"0x8D7E09A8A714C49\",\"creationTime\":\"2020-04-14T17:37:44.8480841Z\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8480841Z\",\"commandLine\":\"cmd /c echo hello 116\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask117\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask117\",\"eTag\":\"0x8D7E09A8A70FE26\",\"creationTime\":\"2020-04-14T17:37:44.8460838Z\",\"lastModified\":\"2020-04-14T17:37:44.8460838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8460838Z\",\"commandLine\":\"cmd /c echo hello 117\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask118\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask118\",\"eTag\":\"0x8D7E09A8A7859B6\",\"creationTime\":\"2020-04-14T17:37:44.894303Z\",\"lastModified\":\"2020-04-14T17:37:44.894303Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.894303Z\",\"commandLine\":\"cmd /c echo hello 118\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask119\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask119\",\"eTag\":\"0x8D7E09A8A21473B\",\"creationTime\":\"2020-04-14T17:37:44.3236667Z\",\"lastModified\":\"2020-04-14T17:37:44.3236667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3236667Z\",\"commandLine\":\"cmd /c echo hello 119\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask12\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask12\",\"eTag\":\"0x8D7E09A8A095267\",\"creationTime\":\"2020-04-14T17:37:44.1666663Z\",\"lastModified\":\"2020-04-14T17:37:44.1666663Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1666663Z\",\"commandLine\":\"cmd /c echo hello 12\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask120\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask120\",\"eTag\":\"0x8D7E09A8A216E48\",\"creationTime\":\"2020-04-14T17:37:44.3246664Z\",\"lastModified\":\"2020-04-14T17:37:44.3246664Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3246664Z\",\"commandLine\":\"cmd /c echo hello 120\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask121\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask121\",\"eTag\":\"0x8D7E09A8A29F9D8\",\"creationTime\":\"2020-04-14T17:37:44.380668Z\",\"lastModified\":\"2020-04-14T17:37:44.380668Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.380668Z\",\"commandLine\":\"cmd /c echo hello 121\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask122\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask122\",\"eTag\":\"0x8D7E09A8A22320C\",\"creationTime\":\"2020-04-14T17:37:44.329678Z\",\"lastModified\":\"2020-04-14T17:37:44.329678Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.329678Z\",\"commandLine\":\"cmd /c echo hello 122\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask123\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask123\",\"eTag\":\"0x8D7E09A8A712536\",\"creationTime\":\"2020-04-14T17:37:44.8470838Z\",\"lastModified\":\"2020-04-14T17:37:44.8470838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8470838Z\",\"commandLine\":\"cmd /c echo hello 123\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask124\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask124\",\"eTag\":\"0x8D7E09A8A26EC94\",\"creationTime\":\"2020-04-14T17:37:44.3606676Z\",\"lastModified\":\"2020-04-14T17:37:44.3606676Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3606676Z\",\"commandLine\":\"cmd /c echo hello 124\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask125\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask125\",\"eTag\":\"0x8D7E09A8A73C1CE\",\"creationTime\":\"2020-04-14T17:37:44.8641998Z\",\"lastModified\":\"2020-04-14T17:37:44.8641998Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8641998Z\",\"commandLine\":\"cmd /c echo hello 125\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask126\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask126\",\"eTag\":\"0x8D7E09A8A26EC94\",\"creationTime\":\"2020-04-14T17:37:44.3606676Z\",\"lastModified\":\"2020-04-14T17:37:44.3606676Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3606676Z\",\"commandLine\":\"cmd /c echo hello 126\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask127\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask127\",\"eTag\":\"0x8D7E09A8A72ABD0\",\"creationTime\":\"2020-04-14T17:37:44.8570832Z\",\"lastModified\":\"2020-04-14T17:37:44.8570832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8570832Z\",\"commandLine\":\"cmd /c echo hello 127\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask128\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask128\",\"eTag\":\"0x8D7E09A8A773FBB\",\"creationTime\":\"2020-04-14T17:37:44.8870843Z\",\"lastModified\":\"2020-04-14T17:37:44.8870843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8870843Z\",\"commandLine\":\"cmd /c echo hello 128\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask129\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask129\",\"eTag\":\"0x8D7E09A8A6DF0E7\",\"creationTime\":\"2020-04-14T17:37:44.8260839Z\",\"lastModified\":\"2020-04-14T17:37:44.8260839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8260839Z\",\"commandLine\":\"cmd /c echo hello 129\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask13\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask13\",\"eTag\":\"0x8D7E09A8A0A63D6\",\"creationTime\":\"2020-04-14T17:37:44.1736662Z\",\"lastModified\":\"2020-04-14T17:37:44.1736662Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1736662Z\",\"commandLine\":\"cmd /c echo hello 13\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask130\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask130\",\"eTag\":\"0x8D7E09A8A83269A\",\"creationTime\":\"2020-04-14T17:37:44.9650842Z\",\"lastModified\":\"2020-04-14T17:37:44.9650842Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9650842Z\",\"commandLine\":\"cmd /c echo hello 130\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask131\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask131\",\"eTag\":\"0x8D7E09A8A725DB6\",\"creationTime\":\"2020-04-14T17:37:44.8550838Z\",\"lastModified\":\"2020-04-14T17:37:44.8550838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8550838Z\",\"commandLine\":\"cmd /c echo hello 131\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask132\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask132\",\"eTag\":\"0x8D7E09A8A6E3EF0\",\"creationTime\":\"2020-04-14T17:37:44.8280816Z\",\"lastModified\":\"2020-04-14T17:37:44.8280816Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8280816Z\",\"commandLine\":\"cmd /c echo hello 132\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask133\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask133\",\"eTag\":\"0x8D7E09A8A6E3EF0\",\"creationTime\":\"2020-04-14T17:37:44.8280816Z\",\"lastModified\":\"2020-04-14T17:37:44.8280816Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8280816Z\",\"commandLine\":\"cmd /c echo hello 133\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask134\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask134\",\"eTag\":\"0x8D7E09A8A70FE26\",\"creationTime\":\"2020-04-14T17:37:44.8460838Z\",\"lastModified\":\"2020-04-14T17:37:44.8460838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8460838Z\",\"commandLine\":\"cmd /c echo hello 134\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask135\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask135\",\"eTag\":\"0x8D7E09A8A6DF0E7\",\"creationTime\":\"2020-04-14T17:37:44.8260839Z\",\"lastModified\":\"2020-04-14T17:37:44.8260839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8260839Z\",\"commandLine\":\"cmd /c echo hello 135\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask136\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask136\",\"eTag\":\"0x8D7E09A8A6E3EF0\",\"creationTime\":\"2020-04-14T17:37:44.8280816Z\",\"lastModified\":\"2020-04-14T17:37:44.8280816Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8280816Z\",\"commandLine\":\"cmd /c echo hello 136\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask137\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask137\",\"eTag\":\"0x8D7E09A8A714C49\",\"creationTime\":\"2020-04-14T17:37:44.8480841Z\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8480841Z\",\"commandLine\":\"cmd /c echo hello 137\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask138\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask138\",\"eTag\":\"0x8D7E09A8A7B856F\",\"creationTime\":\"2020-04-14T17:37:44.9150831Z\",\"lastModified\":\"2020-04-14T17:37:44.9150831Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9150831Z\",\"commandLine\":\"cmd /c echo hello 138\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask139\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask139\",\"eTag\":\"0x8D7E09A8A8E24CD\",\"creationTime\":\"2020-04-14T17:37:45.0371277Z\",\"lastModified\":\"2020-04-14T17:37:45.0371277Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0371277Z\",\"commandLine\":\"cmd /c echo hello 139\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask14\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask14\",\"eTag\":\"0x8D7E09A8A095267\",\"creationTime\":\"2020-04-14T17:37:44.1666663Z\",\"lastModified\":\"2020-04-14T17:37:44.1666663Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1666663Z\",\"commandLine\":\"cmd /c echo hello 14\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask140\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask140\",\"eTag\":\"0x8D7E09A8A789F3E\",\"creationTime\":\"2020-04-14T17:37:44.896083Z\",\"lastModified\":\"2020-04-14T17:37:44.896083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.896083Z\",\"commandLine\":\"cmd /c echo hello 140\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask141\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask141\",\"eTag\":\"0x8D7E09A8A787838\",\"creationTime\":\"2020-04-14T17:37:44.895084Z\",\"lastModified\":\"2020-04-14T17:37:44.895084Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.895084Z\",\"commandLine\":\"cmd /c echo hello 141\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask142\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask142\",\"eTag\":\"0x8D7E09A8A712536\",\"creationTime\":\"2020-04-14T17:37:44.8470838Z\",\"lastModified\":\"2020-04-14T17:37:44.8470838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8470838Z\",\"commandLine\":\"cmd /c echo hello 142\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask143\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask143\",\"eTag\":\"0x8D7E09A8A787838\",\"creationTime\":\"2020-04-14T17:37:44.895084Z\",\"lastModified\":\"2020-04-14T17:37:44.895084Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.895084Z\",\"commandLine\":\"cmd /c echo hello 143\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask144\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask144\",\"eTag\":\"0x8D7E09A8A6F2C77\",\"creationTime\":\"2020-04-14T17:37:44.8341623Z\",\"lastModified\":\"2020-04-14T17:37:44.8341623Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8341623Z\",\"commandLine\":\"cmd /c echo hello 144\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask145\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask145\",\"eTag\":\"0x8D7E09A8A73BF22\",\"creationTime\":\"2020-04-14T17:37:44.8641314Z\",\"lastModified\":\"2020-04-14T17:37:44.8641314Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8641314Z\",\"commandLine\":\"cmd /c echo hello 145\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask146\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask146\",\"eTag\":\"0x8D7E09A8A70FE26\",\"creationTime\":\"2020-04-14T17:37:44.8460838Z\",\"lastModified\":\"2020-04-14T17:37:44.8460838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8460838Z\",\"commandLine\":\"cmd /c echo hello 146\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask147\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask147\",\"eTag\":\"0x8D7E09A8A743269\",\"creationTime\":\"2020-04-14T17:37:44.8670825Z\",\"lastModified\":\"2020-04-14T17:37:44.8670825Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8670825Z\",\"commandLine\":\"cmd /c echo hello 147\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask148\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask148\",\"eTag\":\"0x8D7E09A8A72D2E9\",\"creationTime\":\"2020-04-14T17:37:44.8580841Z\",\"lastModified\":\"2020-04-14T17:37:44.8580841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8580841Z\",\"commandLine\":\"cmd /c echo hello 148\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask149\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask149\",\"eTag\":\"0x8D7E09A8A72ABD0\",\"creationTime\":\"2020-04-14T17:37:44.8570832Z\",\"lastModified\":\"2020-04-14T17:37:44.8570832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8570832Z\",\"commandLine\":\"cmd /c echo hello 149\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask15\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask15\",\"eTag\":\"0x8D7E09A8A0DE63D\",\"creationTime\":\"2020-04-14T17:37:44.1966653Z\",\"lastModified\":\"2020-04-14T17:37:44.1966653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1966653Z\",\"commandLine\":\"cmd /c echo hello 15\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask150\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask150\",\"eTag\":\"0x8D7E09A8A7766C0\",\"creationTime\":\"2020-04-14T17:37:44.8880832Z\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8880832Z\",\"commandLine\":\"cmd /c echo hello 150\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask151\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask151\",\"eTag\":\"0x8D7E09A8A723E21\",\"creationTime\":\"2020-04-14T17:37:44.8542753Z\",\"lastModified\":\"2020-04-14T17:37:44.8542753Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8542753Z\",\"commandLine\":\"cmd /c echo hello 151\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask152\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask152\",\"eTag\":\"0x8D7E09A8A7284C4\",\"creationTime\":\"2020-04-14T17:37:44.8560836Z\",\"lastModified\":\"2020-04-14T17:37:44.8560836Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8560836Z\",\"commandLine\":\"cmd /c echo hello 152\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask153\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask153\",\"eTag\":\"0x8D7E09A8A725DB6\",\"creationTime\":\"2020-04-14T17:37:44.8550838Z\",\"lastModified\":\"2020-04-14T17:37:44.8550838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8550838Z\",\"commandLine\":\"cmd /c echo hello 153\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask154\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask154\",\"eTag\":\"0x8D7E09A8A789F3E\",\"creationTime\":\"2020-04-14T17:37:44.896083Z\",\"lastModified\":\"2020-04-14T17:37:44.896083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.896083Z\",\"commandLine\":\"cmd /c echo hello 154\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask155\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask155\",\"eTag\":\"0x8D7E09A8A712536\",\"creationTime\":\"2020-04-14T17:37:44.8470838Z\",\"lastModified\":\"2020-04-14T17:37:44.8470838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8470838Z\",\"commandLine\":\"cmd /c echo hello 155\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask156\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask156\",\"eTag\":\"0x8D7E09A8A714C49\",\"creationTime\":\"2020-04-14T17:37:44.8480841Z\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8480841Z\",\"commandLine\":\"cmd /c echo hello 156\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask157\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask157\",\"eTag\":\"0x8D7E09A8A72ABD0\",\"creationTime\":\"2020-04-14T17:37:44.8570832Z\",\"lastModified\":\"2020-04-14T17:37:44.8570832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8570832Z\",\"commandLine\":\"cmd /c echo hello 157\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask158\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask158\",\"eTag\":\"0x8D7E09A8A743269\",\"creationTime\":\"2020-04-14T17:37:44.8670825Z\",\"lastModified\":\"2020-04-14T17:37:44.8670825Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8670825Z\",\"commandLine\":\"cmd /c echo hello 158\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask159\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask159\",\"eTag\":\"0x8D7E09A8A7FA42A\",\"creationTime\":\"2020-04-14T17:37:44.9420842Z\",\"lastModified\":\"2020-04-14T17:37:44.9420842Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9420842Z\",\"commandLine\":\"cmd /c echo hello 159\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask16\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask16\",\"eTag\":\"0x8D7E09A8A0A3CC7\",\"creationTime\":\"2020-04-14T17:37:44.1726663Z\",\"lastModified\":\"2020-04-14T17:37:44.1726663Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1726663Z\",\"commandLine\":\"cmd /c echo hello 16\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask160\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask160\",\"eTag\":\"0x8D7E09A8A7718AC\",\"creationTime\":\"2020-04-14T17:37:44.8860844Z\",\"lastModified\":\"2020-04-14T17:37:44.8860844Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8860844Z\",\"commandLine\":\"cmd /c echo hello 160\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask161\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask161\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"creationTime\":\"2020-04-14T17:37:44.907081Z\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.907081Z\",\"commandLine\":\"cmd /c echo hello 161\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask162\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask162\",\"eTag\":\"0x8D7E09A8A712536\",\"creationTime\":\"2020-04-14T17:37:44.8470838Z\",\"lastModified\":\"2020-04-14T17:37:44.8470838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8470838Z\",\"commandLine\":\"cmd /c echo hello 162\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask163\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask163\",\"eTag\":\"0x8D7E09A8A714C49\",\"creationTime\":\"2020-04-14T17:37:44.8480841Z\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8480841Z\",\"commandLine\":\"cmd /c echo hello 163\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask164\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask164\",\"eTag\":\"0x8D7E09A8A808E7D\",\"creationTime\":\"2020-04-14T17:37:44.9480829Z\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9480829Z\",\"commandLine\":\"cmd /c echo hello 164\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask165\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask165\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"creationTime\":\"2020-04-14T17:37:44.907081Z\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.907081Z\",\"commandLine\":\"cmd /c echo hello 165\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask166\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask166\",\"eTag\":\"0x8D7E09A8A7BD374\",\"creationTime\":\"2020-04-14T17:37:44.9170804Z\",\"lastModified\":\"2020-04-14T17:37:44.9170804Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9170804Z\",\"commandLine\":\"cmd /c echo hello 166\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask167\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask167\",\"eTag\":\"0x8D7E09A8A830A8B\",\"creationTime\":\"2020-04-14T17:37:44.9643659Z\",\"lastModified\":\"2020-04-14T17:37:44.9643659Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9643659Z\",\"commandLine\":\"cmd /c echo hello 167\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask168\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask168\",\"eTag\":\"0x8D7E09A8A8302B4\",\"creationTime\":\"2020-04-14T17:37:44.9641652Z\",\"lastModified\":\"2020-04-14T17:37:44.9641652Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9641652Z\",\"commandLine\":\"cmd /c echo hello 168\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask169\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask169\",\"eTag\":\"0x8D7E09A8A7B6395\",\"creationTime\":\"2020-04-14T17:37:44.9142165Z\",\"lastModified\":\"2020-04-14T17:37:44.9142165Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9142165Z\",\"commandLine\":\"cmd /c echo hello 169\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask17\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask17\",\"eTag\":\"0x8D7E09A8A0A3CC7\",\"creationTime\":\"2020-04-14T17:37:44.1726663Z\",\"lastModified\":\"2020-04-14T17:37:44.1726663Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1726663Z\",\"commandLine\":\"cmd /c echo hello 17\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask170\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask170\",\"eTag\":\"0x8D7E09A8A8DD4F8\",\"creationTime\":\"2020-04-14T17:37:45.035084Z\",\"lastModified\":\"2020-04-14T17:37:45.035084Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.035084Z\",\"commandLine\":\"cmd /c echo hello 170\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask171\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask171\",\"eTag\":\"0x8D7E09A8A7F7D1F\",\"creationTime\":\"2020-04-14T17:37:44.9410847Z\",\"lastModified\":\"2020-04-14T17:37:44.9410847Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9410847Z\",\"commandLine\":\"cmd /c echo hello 171\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask172\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask172\",\"eTag\":\"0x8D7E09A8A79FEF0\",\"creationTime\":\"2020-04-14T17:37:44.9050864Z\",\"lastModified\":\"2020-04-14T17:37:44.9050864Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9050864Z\",\"commandLine\":\"cmd /c echo hello 172\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask173\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask173\",\"eTag\":\"0x8D7E09A8A808E7D\",\"creationTime\":\"2020-04-14T17:37:44.9480829Z\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9480829Z\",\"commandLine\":\"cmd /c echo hello 173\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask174\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask174\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"creationTime\":\"2020-04-14T17:37:44.907081Z\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.907081Z\",\"commandLine\":\"cmd /c echo hello 174\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask175\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask175\",\"eTag\":\"0x8D7E09A8A821537\",\"creationTime\":\"2020-04-14T17:37:44.9580855Z\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9580855Z\",\"commandLine\":\"cmd /c echo hello 175\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask176\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask176\",\"eTag\":\"0x8D7E09A8A808E7D\",\"creationTime\":\"2020-04-14T17:37:44.9480829Z\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9480829Z\",\"commandLine\":\"cmd /c echo hello 176\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask177\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask177\",\"eTag\":\"0x8D7E09A8A79DD6F\",\"creationTime\":\"2020-04-14T17:37:44.9042287Z\",\"lastModified\":\"2020-04-14T17:37:44.9042287Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9042287Z\",\"commandLine\":\"cmd /c echo hello 177\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask178\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask178\",\"eTag\":\"0x8D7E09A8A806777\",\"creationTime\":\"2020-04-14T17:37:44.9470839Z\",\"lastModified\":\"2020-04-14T17:37:44.9470839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9470839Z\",\"commandLine\":\"cmd /c echo hello 178\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask179\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask179\",\"eTag\":\"0x8D7E09A8A7BD374\",\"creationTime\":\"2020-04-14T17:37:44.9170804Z\",\"lastModified\":\"2020-04-14T17:37:44.9170804Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9170804Z\",\"commandLine\":\"cmd /c echo hello 179\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask18\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask18\",\"eTag\":\"0x8D7E09A8A092B55\",\"creationTime\":\"2020-04-14T17:37:44.1656661Z\",\"lastModified\":\"2020-04-14T17:37:44.1656661Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1656661Z\",\"commandLine\":\"cmd /c echo hello 18\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask180\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask180\",\"eTag\":\"0x8D7E09A8A80406B\",\"creationTime\":\"2020-04-14T17:37:44.9460843Z\",\"lastModified\":\"2020-04-14T17:37:44.9460843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9460843Z\",\"commandLine\":\"cmd /c echo hello 180\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask181\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask181\",\"eTag\":\"0x8D7E09A8A808E7D\",\"creationTime\":\"2020-04-14T17:37:44.9480829Z\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9480829Z\",\"commandLine\":\"cmd /c echo hello 181\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask182\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask182\",\"eTag\":\"0x8D7E09A8A81C701\",\"creationTime\":\"2020-04-14T17:37:44.9560833Z\",\"lastModified\":\"2020-04-14T17:37:44.9560833Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9560833Z\",\"commandLine\":\"cmd /c echo hello 182\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask183\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask183\",\"eTag\":\"0x8D7E09A8A78C654\",\"creationTime\":\"2020-04-14T17:37:44.8970836Z\",\"lastModified\":\"2020-04-14T17:37:44.8970836Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8970836Z\",\"commandLine\":\"cmd /c echo hello 183\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask184\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask184\",\"eTag\":\"0x8D7E09A8A7B60EA\",\"creationTime\":\"2020-04-14T17:37:44.9141482Z\",\"lastModified\":\"2020-04-14T17:37:44.9141482Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9141482Z\",\"commandLine\":\"cmd /c echo hello 184\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask185\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask185\",\"eTag\":\"0x8D7E09A8A78C654\",\"creationTime\":\"2020-04-14T17:37:44.8970836Z\",\"lastModified\":\"2020-04-14T17:37:44.8970836Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8970836Z\",\"commandLine\":\"cmd /c echo hello 185\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask186\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask186\",\"eTag\":\"0x8D7E09A8A821537\",\"creationTime\":\"2020-04-14T17:37:44.9580855Z\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9580855Z\",\"commandLine\":\"cmd /c echo hello 186\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask187\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask187\",\"eTag\":\"0x8D7E09A8A7FA42A\",\"creationTime\":\"2020-04-14T17:37:44.9420842Z\",\"lastModified\":\"2020-04-14T17:37:44.9420842Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9420842Z\",\"commandLine\":\"cmd /c echo hello 187\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask188\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask188\",\"eTag\":\"0x8D7E09A8A821537\",\"creationTime\":\"2020-04-14T17:37:44.9580855Z\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9580855Z\",\"commandLine\":\"cmd /c echo hello 188\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask189\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask189\",\"eTag\":\"0x8D7E09A8A81EE19\",\"creationTime\":\"2020-04-14T17:37:44.9570841Z\",\"lastModified\":\"2020-04-14T17:37:44.9570841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9570841Z\",\"commandLine\":\"cmd /c echo hello 189\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask19\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask19\",\"eTag\":\"0x8D7E09A8A092B55\",\"creationTime\":\"2020-04-14T17:37:44.1656661Z\",\"lastModified\":\"2020-04-14T17:37:44.1656661Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1656661Z\",\"commandLine\":\"cmd /c echo hello 19\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask190\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask190\",\"eTag\":\"0x8D7E09A8A806777\",\"creationTime\":\"2020-04-14T17:37:44.9470839Z\",\"lastModified\":\"2020-04-14T17:37:44.9470839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9470839Z\",\"commandLine\":\"cmd /c echo hello 190\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask191\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask191\",\"eTag\":\"0x8D7E09A8A8E4A2A\",\"creationTime\":\"2020-04-14T17:37:45.0380842Z\",\"lastModified\":\"2020-04-14T17:37:45.0380842Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0380842Z\",\"commandLine\":\"cmd /c echo hello 191\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask192\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask192\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"creationTime\":\"2020-04-14T17:37:45.028083Z\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.028083Z\",\"commandLine\":\"cmd /c echo hello 192\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask193\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask193\",\"eTag\":\"0x8D7E09A8A9268CE\",\"creationTime\":\"2020-04-14T17:37:45.065083Z\",\"lastModified\":\"2020-04-14T17:37:45.065083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.065083Z\",\"commandLine\":\"cmd /c echo hello 193\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask194\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask194\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"creationTime\":\"2020-04-14T17:37:45.028083Z\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.028083Z\",\"commandLine\":\"cmd /c echo hello 194\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask195\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask195\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"creationTime\":\"2020-04-14T17:37:45.028083Z\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.028083Z\",\"commandLine\":\"cmd /c echo hello 195\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask196\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask196\",\"eTag\":\"0x8D7E09A8A90CFA7\",\"creationTime\":\"2020-04-14T17:37:45.0546087Z\",\"lastModified\":\"2020-04-14T17:37:45.0546087Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0546087Z\",\"commandLine\":\"cmd /c echo hello 196\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask197\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask197\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"creationTime\":\"2020-04-14T17:37:45.028083Z\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.028083Z\",\"commandLine\":\"cmd /c echo hello 197\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask198\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask198\",\"eTag\":\"0x8D7E09A8A8DD4F8\",\"creationTime\":\"2020-04-14T17:37:45.035084Z\",\"lastModified\":\"2020-04-14T17:37:45.035084Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.035084Z\",\"commandLine\":\"cmd /c echo hello 198\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask199\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask199\",\"eTag\":\"0x8D7E09A8A8F4C08\",\"creationTime\":\"2020-04-14T17:37:45.0446856Z\",\"lastModified\":\"2020-04-14T17:37:45.0446856Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0446856Z\",\"commandLine\":\"cmd /c echo hello 199\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask2\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask2\",\"eTag\":\"0x8D7E09A8A02E9BD\",\"creationTime\":\"2020-04-14T17:37:44.1246653Z\",\"lastModified\":\"2020-04-14T17:37:44.1246653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1246653Z\",\"commandLine\":\"cmd /c echo hello 2\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask20\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask20\",\"eTag\":\"0x8D7E09A8A095267\",\"creationTime\":\"2020-04-14T17:37:44.1666663Z\",\"lastModified\":\"2020-04-14T17:37:44.1666663Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1666663Z\",\"commandLine\":\"cmd /c echo hello 20\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask200\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask200\",\"eTag\":\"0x8D7E09A89D0B6C9\",\"creationTime\":\"2020-04-14T17:37:43.7956809Z\",\"lastModified\":\"2020-04-14T17:37:43.7956809Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7956809Z\",\"commandLine\":\"cmd /c echo hello 200\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask201\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask201\",\"eTag\":\"0x8D7E09A8A033891\",\"creationTime\":\"2020-04-14T17:37:44.1266833Z\",\"lastModified\":\"2020-04-14T17:37:44.1266833Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1266833Z\",\"commandLine\":\"cmd /c echo hello 201\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask202\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask202\",\"eTag\":\"0x8D7E09A89D71F82\",\"creationTime\":\"2020-04-14T17:37:43.8376834Z\",\"lastModified\":\"2020-04-14T17:37:43.8376834Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8376834Z\",\"commandLine\":\"cmd /c echo hello 202\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask203\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask203\",\"eTag\":\"0x8D7E09A8A033891\",\"creationTime\":\"2020-04-14T17:37:44.1266833Z\",\"lastModified\":\"2020-04-14T17:37:44.1266833Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1266833Z\",\"commandLine\":\"cmd /c echo hello 203\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask204\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask204\",\"eTag\":\"0x8D7E09A8A0386B4\",\"creationTime\":\"2020-04-14T17:37:44.1286836Z\",\"lastModified\":\"2020-04-14T17:37:44.1286836Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1286836Z\",\"commandLine\":\"cmd /c echo hello 204\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask205\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask205\",\"eTag\":\"0x8D7E09A8A0386B4\",\"creationTime\":\"2020-04-14T17:37:44.1286836Z\",\"lastModified\":\"2020-04-14T17:37:44.1286836Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1286836Z\",\"commandLine\":\"cmd /c echo hello 205\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask206\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask206\",\"eTag\":\"0x8D7E09A8A066CEB\",\"creationTime\":\"2020-04-14T17:37:44.1476843Z\",\"lastModified\":\"2020-04-14T17:37:44.1476843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1476843Z\",\"commandLine\":\"cmd /c echo hello 206\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask207\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask207\",\"eTag\":\"0x8D7E09A8A0693F3\",\"creationTime\":\"2020-04-14T17:37:44.1486835Z\",\"lastModified\":\"2020-04-14T17:37:44.1486835Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1486835Z\",\"commandLine\":\"cmd /c echo hello 207\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask208\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask208\",\"eTag\":\"0x8D7E09A8A0A6A05\",\"creationTime\":\"2020-04-14T17:37:44.1738245Z\",\"lastModified\":\"2020-04-14T17:37:44.1738245Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1738245Z\",\"commandLine\":\"cmd /c echo hello 208\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask209\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask209\",\"eTag\":\"0x8D7E09A8A095317\",\"creationTime\":\"2020-04-14T17:37:44.1666839Z\",\"lastModified\":\"2020-04-14T17:37:44.1666839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1666839Z\",\"commandLine\":\"cmd /c echo hello 209\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask21\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask21\",\"eTag\":\"0x8D7E09A8A0A3CC7\",\"creationTime\":\"2020-04-14T17:37:44.1726663Z\",\"lastModified\":\"2020-04-14T17:37:44.1726663Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1726663Z\",\"commandLine\":\"cmd /c echo hello 21\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask210\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask210\",\"eTag\":\"0x8D7E09A8A061EB7\",\"creationTime\":\"2020-04-14T17:37:44.1456823Z\",\"lastModified\":\"2020-04-14T17:37:44.1456823Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1456823Z\",\"commandLine\":\"cmd /c echo hello 210\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask211\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask211\",\"eTag\":\"0x8D7E09A8A097A27\",\"creationTime\":\"2020-04-14T17:37:44.1676839Z\",\"lastModified\":\"2020-04-14T17:37:44.1676839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1676839Z\",\"commandLine\":\"cmd /c echo hello 211\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask212\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask212\",\"eTag\":\"0x8D7E09A8A0BE0A1\",\"creationTime\":\"2020-04-14T17:37:44.1834145Z\",\"lastModified\":\"2020-04-14T17:37:44.1834145Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1834145Z\",\"commandLine\":\"cmd /c echo hello 212\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask213\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask213\",\"eTag\":\"0x8D7E09A8A0B00B2\",\"creationTime\":\"2020-04-14T17:37:44.1776818Z\",\"lastModified\":\"2020-04-14T17:37:44.1776818Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1776818Z\",\"commandLine\":\"cmd /c echo hello 213\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask214\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask214\",\"eTag\":\"0x8D7E09A8A10CD25\",\"creationTime\":\"2020-04-14T17:37:44.2156837Z\",\"lastModified\":\"2020-04-14T17:37:44.2156837Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2156837Z\",\"commandLine\":\"cmd /c echo hello 214\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask215\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask215\",\"eTag\":\"0x8D7E09A8A0FE2C7\",\"creationTime\":\"2020-04-14T17:37:44.2096839Z\",\"lastModified\":\"2020-04-14T17:37:44.2096839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2096839Z\",\"commandLine\":\"cmd /c echo hello 215\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask216\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask216\",\"eTag\":\"0x8D7E09A8A0FBBBA\",\"creationTime\":\"2020-04-14T17:37:44.2086842Z\",\"lastModified\":\"2020-04-14T17:37:44.2086842Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2086842Z\",\"commandLine\":\"cmd /c echo hello 216\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask217\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask217\",\"eTag\":\"0x8D7E09A8A10CD25\",\"creationTime\":\"2020-04-14T17:37:44.2156837Z\",\"lastModified\":\"2020-04-14T17:37:44.2156837Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2156837Z\",\"commandLine\":\"cmd /c echo hello 217\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask218\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask218\",\"eTag\":\"0x8D7E09A89E1A6D4\",\"creationTime\":\"2020-04-14T17:37:43.9066836Z\",\"lastModified\":\"2020-04-14T17:37:43.9066836Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.9066836Z\",\"commandLine\":\"cmd /c echo hello 218\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask219\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask219\",\"eTag\":\"0x8D7E09A8A10CD25\",\"creationTime\":\"2020-04-14T17:37:44.2156837Z\",\"lastModified\":\"2020-04-14T17:37:44.2156837Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2156837Z\",\"commandLine\":\"cmd /c echo hello 219\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask22\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask22\",\"eTag\":\"0x8D7E09A8A0DBF57\",\"creationTime\":\"2020-04-14T17:37:44.1956695Z\",\"lastModified\":\"2020-04-14T17:37:44.1956695Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1956695Z\",\"commandLine\":\"cmd /c echo hello 22\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask220\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask220\",\"eTag\":\"0x8D7E09A8A156107\",\"creationTime\":\"2020-04-14T17:37:44.2456839Z\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2456839Z\",\"commandLine\":\"cmd /c echo hello 220\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask221\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask221\",\"eTag\":\"0x8D7E09A8A156107\",\"creationTime\":\"2020-04-14T17:37:44.2456839Z\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2456839Z\",\"commandLine\":\"cmd /c echo hello 221\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask222\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask222\",\"eTag\":\"0x8D7E09A8A13DA68\",\"creationTime\":\"2020-04-14T17:37:44.235684Z\",\"lastModified\":\"2020-04-14T17:37:44.235684Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.235684Z\",\"commandLine\":\"cmd /c echo hello 222\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask223\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask223\",\"eTag\":\"0x8D7E09A8A1253BC\",\"creationTime\":\"2020-04-14T17:37:44.2256828Z\",\"lastModified\":\"2020-04-14T17:37:44.2256828Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2256828Z\",\"commandLine\":\"cmd /c echo hello 223\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask224\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask224\",\"eTag\":\"0x8D7E09A8A10CD25\",\"creationTime\":\"2020-04-14T17:37:44.2156837Z\",\"lastModified\":\"2020-04-14T17:37:44.2156837Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2156837Z\",\"commandLine\":\"cmd /c echo hello 224\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask225\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask225\",\"eTag\":\"0x8D7E09A8A1253BC\",\"creationTime\":\"2020-04-14T17:37:44.2256828Z\",\"lastModified\":\"2020-04-14T17:37:44.2256828Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2256828Z\",\"commandLine\":\"cmd /c echo hello 225\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask226\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask226\",\"eTag\":\"0x8D7E09A8A13DA68\",\"creationTime\":\"2020-04-14T17:37:44.235684Z\",\"lastModified\":\"2020-04-14T17:37:44.235684Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.235684Z\",\"commandLine\":\"cmd /c echo hello 226\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask227\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask227\",\"eTag\":\"0x8D7E09A8A156107\",\"creationTime\":\"2020-04-14T17:37:44.2456839Z\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2456839Z\",\"commandLine\":\"cmd /c echo hello 227\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask228\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask228\",\"eTag\":\"0x8D7E09A8A156107\",\"creationTime\":\"2020-04-14T17:37:44.2456839Z\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2456839Z\",\"commandLine\":\"cmd /c echo hello 228\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask229\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask229\",\"eTag\":\"0x8D7E09A8A156107\",\"creationTime\":\"2020-04-14T17:37:44.2456839Z\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2456839Z\",\"commandLine\":\"cmd /c echo hello 229\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask23\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask23\",\"eTag\":\"0x8D7E09A8A0DBF57\",\"creationTime\":\"2020-04-14T17:37:44.1956695Z\",\"lastModified\":\"2020-04-14T17:37:44.1956695Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1956695Z\",\"commandLine\":\"cmd /c echo hello 23\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask230\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask230\",\"eTag\":\"0x8D7E09A8A156107\",\"creationTime\":\"2020-04-14T17:37:44.2456839Z\",\"lastModified\":\"2020-04-14T17:37:44.2456839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2456839Z\",\"commandLine\":\"cmd /c echo hello 230\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask231\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask231\",\"eTag\":\"0x8D7E09A8A1539F4\",\"creationTime\":\"2020-04-14T17:37:44.2446836Z\",\"lastModified\":\"2020-04-14T17:37:44.2446836Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2446836Z\",\"commandLine\":\"cmd /c echo hello 231\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask232\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask232\",\"eTag\":\"0x8D7E09A8A186ECA\",\"creationTime\":\"2020-04-14T17:37:44.265697Z\",\"lastModified\":\"2020-04-14T17:37:44.265697Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.265697Z\",\"commandLine\":\"cmd /c echo hello 232\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask233\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask233\",\"eTag\":\"0x8D7E09A8A170EA6\",\"creationTime\":\"2020-04-14T17:37:44.2566822Z\",\"lastModified\":\"2020-04-14T17:37:44.2566822Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2566822Z\",\"commandLine\":\"cmd /c echo hello 233\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask234\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask234\",\"eTag\":\"0x8D7E09A8A170EA6\",\"creationTime\":\"2020-04-14T17:37:44.2566822Z\",\"lastModified\":\"2020-04-14T17:37:44.2566822Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2566822Z\",\"commandLine\":\"cmd /c echo hello 234\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask235\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask235\",\"eTag\":\"0x8D7E09A8A184732\",\"creationTime\":\"2020-04-14T17:37:44.2646834Z\",\"lastModified\":\"2020-04-14T17:37:44.2646834Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2646834Z\",\"commandLine\":\"cmd /c echo hello 235\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask236\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask236\",\"eTag\":\"0x8D7E09A8A182030\",\"creationTime\":\"2020-04-14T17:37:44.2636848Z\",\"lastModified\":\"2020-04-14T17:37:44.2636848Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2636848Z\",\"commandLine\":\"cmd /c echo hello 236\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask237\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask237\",\"eTag\":\"0x8D7E09A8A184732\",\"creationTime\":\"2020-04-14T17:37:44.2646834Z\",\"lastModified\":\"2020-04-14T17:37:44.2646834Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2646834Z\",\"commandLine\":\"cmd /c echo hello 237\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask238\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask238\",\"eTag\":\"0x8D7E09A8A197F96\",\"creationTime\":\"2020-04-14T17:37:44.2726806Z\",\"lastModified\":\"2020-04-14T17:37:44.2726806Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2726806Z\",\"commandLine\":\"cmd /c echo hello 238\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask239\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask239\",\"eTag\":\"0x8D7E09A8A17F91E\",\"creationTime\":\"2020-04-14T17:37:44.2626846Z\",\"lastModified\":\"2020-04-14T17:37:44.2626846Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2626846Z\",\"commandLine\":\"cmd /c echo hello 239\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask24\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask24\",\"eTag\":\"0x8D7E09A8A0AB1FE\",\"creationTime\":\"2020-04-14T17:37:44.175667Z\",\"lastModified\":\"2020-04-14T17:37:44.175667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.175667Z\",\"commandLine\":\"cmd /c echo hello 24\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask240\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask240\",\"eTag\":\"0x8D7E09A8A17D954\",\"creationTime\":\"2020-04-14T17:37:44.2618708Z\",\"lastModified\":\"2020-04-14T17:37:44.2618708Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2618708Z\",\"commandLine\":\"cmd /c echo hello 240\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask241\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask241\",\"eTag\":\"0x8D7E09A8A186ECA\",\"creationTime\":\"2020-04-14T17:37:44.265697Z\",\"lastModified\":\"2020-04-14T17:37:44.265697Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.265697Z\",\"commandLine\":\"cmd /c echo hello 241\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask242\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask242\",\"eTag\":\"0x8D7E09A8A186ECA\",\"creationTime\":\"2020-04-14T17:37:44.265697Z\",\"lastModified\":\"2020-04-14T17:37:44.265697Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.265697Z\",\"commandLine\":\"cmd /c echo hello 242\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask243\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask243\",\"eTag\":\"0x8D7E09A8A19A6FC\",\"creationTime\":\"2020-04-14T17:37:44.2736892Z\",\"lastModified\":\"2020-04-14T17:37:44.2736892Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2736892Z\",\"commandLine\":\"cmd /c echo hello 243\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask244\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask244\",\"eTag\":\"0x8D7E09A8A170EA6\",\"creationTime\":\"2020-04-14T17:37:44.2566822Z\",\"lastModified\":\"2020-04-14T17:37:44.2566822Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2566822Z\",\"commandLine\":\"cmd /c echo hello 244\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask245\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask245\",\"eTag\":\"0x8D7E09A8A167276\",\"creationTime\":\"2020-04-14T17:37:44.2526838Z\",\"lastModified\":\"2020-04-14T17:37:44.2526838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2526838Z\",\"commandLine\":\"cmd /c echo hello 245\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask246\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask246\",\"eTag\":\"0x8D7E09A8A182030\",\"creationTime\":\"2020-04-14T17:37:44.2636848Z\",\"lastModified\":\"2020-04-14T17:37:44.2636848Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2636848Z\",\"commandLine\":\"cmd /c echo hello 246\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask247\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask247\",\"eTag\":\"0x8D7E09A8A19A6FC\",\"creationTime\":\"2020-04-14T17:37:44.2736892Z\",\"lastModified\":\"2020-04-14T17:37:44.2736892Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2736892Z\",\"commandLine\":\"cmd /c echo hello 247\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask248\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask248\",\"eTag\":\"0x8D7E09A8A184732\",\"creationTime\":\"2020-04-14T17:37:44.2646834Z\",\"lastModified\":\"2020-04-14T17:37:44.2646834Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2646834Z\",\"commandLine\":\"cmd /c echo hello 248\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask249\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask249\",\"eTag\":\"0x8D7E09A8A17D954\",\"creationTime\":\"2020-04-14T17:37:44.2618708Z\",\"lastModified\":\"2020-04-14T17:37:44.2618708Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2618708Z\",\"commandLine\":\"cmd /c echo hello 249\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask25\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask25\",\"eTag\":\"0x8D7E09A8A0DE63D\",\"creationTime\":\"2020-04-14T17:37:44.1966653Z\",\"lastModified\":\"2020-04-14T17:37:44.1966653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1966653Z\",\"commandLine\":\"cmd /c echo hello 25\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask250\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask250\",\"eTag\":\"0x8D7E09A8A1735C2\",\"creationTime\":\"2020-04-14T17:37:44.2576834Z\",\"lastModified\":\"2020-04-14T17:37:44.2576834Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2576834Z\",\"commandLine\":\"cmd /c echo hello 250\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask251\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask251\",\"eTag\":\"0x8D7E09A8A182030\",\"creationTime\":\"2020-04-14T17:37:44.2636848Z\",\"lastModified\":\"2020-04-14T17:37:44.2636848Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2636848Z\",\"commandLine\":\"cmd /c echo hello 251\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask252\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask252\",\"eTag\":\"0x8D7E09A8A182030\",\"creationTime\":\"2020-04-14T17:37:44.2636848Z\",\"lastModified\":\"2020-04-14T17:37:44.2636848Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2636848Z\",\"commandLine\":\"cmd /c echo hello 252\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask253\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask253\",\"eTag\":\"0x8D7E09A8A186ECA\",\"creationTime\":\"2020-04-14T17:37:44.265697Z\",\"lastModified\":\"2020-04-14T17:37:44.265697Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.265697Z\",\"commandLine\":\"cmd /c echo hello 253\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask254\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask254\",\"eTag\":\"0x8D7E09A8A19CDD3\",\"creationTime\":\"2020-04-14T17:37:44.2746835Z\",\"lastModified\":\"2020-04-14T17:37:44.2746835Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2746835Z\",\"commandLine\":\"cmd /c echo hello 254\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask255\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask255\",\"eTag\":\"0x8D7E09A8A1B0663\",\"creationTime\":\"2020-04-14T17:37:44.2826851Z\",\"lastModified\":\"2020-04-14T17:37:44.2826851Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2826851Z\",\"commandLine\":\"cmd /c echo hello 255\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask256\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask256\",\"eTag\":\"0x8D7E09A8A1B0663\",\"creationTime\":\"2020-04-14T17:37:44.2826851Z\",\"lastModified\":\"2020-04-14T17:37:44.2826851Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2826851Z\",\"commandLine\":\"cmd /c echo hello 256\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask257\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask257\",\"eTag\":\"0x8D7E09A8A1B5478\",\"creationTime\":\"2020-04-14T17:37:44.284684Z\",\"lastModified\":\"2020-04-14T17:37:44.284684Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.284684Z\",\"commandLine\":\"cmd /c echo hello 257\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask258\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask258\",\"eTag\":\"0x8D7E09A8A1B2D67\",\"creationTime\":\"2020-04-14T17:37:44.2836839Z\",\"lastModified\":\"2020-04-14T17:37:44.2836839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2836839Z\",\"commandLine\":\"cmd /c echo hello 258\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask259\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask259\",\"eTag\":\"0x8D7E09A8A1ADF45\",\"creationTime\":\"2020-04-14T17:37:44.2816837Z\",\"lastModified\":\"2020-04-14T17:37:44.2816837Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2816837Z\",\"commandLine\":\"cmd /c echo hello 259\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask26\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask26\",\"eTag\":\"0x8D7E09A8A13B2A5\",\"creationTime\":\"2020-04-14T17:37:44.2346661Z\",\"lastModified\":\"2020-04-14T17:37:44.2346661Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2346661Z\",\"commandLine\":\"cmd /c echo hello 26\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask260\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask260\",\"eTag\":\"0x8D7E09A8A1ADF45\",\"creationTime\":\"2020-04-14T17:37:44.2816837Z\",\"lastModified\":\"2020-04-14T17:37:44.2816837Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2816837Z\",\"commandLine\":\"cmd /c echo hello 260\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask261\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask261\",\"eTag\":\"0x8D7E09A8A1CDB22\",\"creationTime\":\"2020-04-14T17:37:44.294685Z\",\"lastModified\":\"2020-04-14T17:37:44.294685Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.294685Z\",\"commandLine\":\"cmd /c echo hello 261\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask262\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask262\",\"eTag\":\"0x8D7E09A8A1CDB22\",\"creationTime\":\"2020-04-14T17:37:44.294685Z\",\"lastModified\":\"2020-04-14T17:37:44.294685Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.294685Z\",\"commandLine\":\"cmd /c echo hello 262\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask263\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask263\",\"eTag\":\"0x8D7E09A8A1B2D67\",\"creationTime\":\"2020-04-14T17:37:44.2836839Z\",\"lastModified\":\"2020-04-14T17:37:44.2836839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2836839Z\",\"commandLine\":\"cmd /c echo hello 263\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask264\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask264\",\"eTag\":\"0x8D7E09A89F1AC4B\",\"creationTime\":\"2020-04-14T17:37:44.0116811Z\",\"lastModified\":\"2020-04-14T17:37:44.0116811Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.0116811Z\",\"commandLine\":\"cmd /c echo hello 264\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask265\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask265\",\"eTag\":\"0x8D7E09A8A242E24\",\"creationTime\":\"2020-04-14T17:37:44.3426852Z\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3426852Z\",\"commandLine\":\"cmd /c echo hello 265\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask266\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask266\",\"eTag\":\"0x8D7E09A8A23DFFE\",\"creationTime\":\"2020-04-14T17:37:44.3406846Z\",\"lastModified\":\"2020-04-14T17:37:44.3406846Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3406846Z\",\"commandLine\":\"cmd /c echo hello 266\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask267\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask267\",\"eTag\":\"0x8D7E09A8A23DFFE\",\"creationTime\":\"2020-04-14T17:37:44.3406846Z\",\"lastModified\":\"2020-04-14T17:37:44.3406846Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3406846Z\",\"commandLine\":\"cmd /c echo hello 267\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask268\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask268\",\"eTag\":\"0x8D7E09A8A1F9A3D\",\"creationTime\":\"2020-04-14T17:37:44.3126845Z\",\"lastModified\":\"2020-04-14T17:37:44.3126845Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3126845Z\",\"commandLine\":\"cmd /c echo hello 268\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask269\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask269\",\"eTag\":\"0x8D7E09A8A24070B\",\"creationTime\":\"2020-04-14T17:37:44.3416843Z\",\"lastModified\":\"2020-04-14T17:37:44.3416843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3416843Z\",\"commandLine\":\"cmd /c echo hello 269\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask27\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask27\",\"eTag\":\"0x8D7E09A8A13B2A5\",\"creationTime\":\"2020-04-14T17:37:44.2346661Z\",\"lastModified\":\"2020-04-14T17:37:44.2346661Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2346661Z\",\"commandLine\":\"cmd /c echo hello 27\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask270\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask270\",\"eTag\":\"0x8D7E09A8A1F9A3D\",\"creationTime\":\"2020-04-14T17:37:44.3126845Z\",\"lastModified\":\"2020-04-14T17:37:44.3126845Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3126845Z\",\"commandLine\":\"cmd /c echo hello 270\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask271\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask271\",\"eTag\":\"0x8D7E09A8A24070B\",\"creationTime\":\"2020-04-14T17:37:44.3416843Z\",\"lastModified\":\"2020-04-14T17:37:44.3416843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3416843Z\",\"commandLine\":\"cmd /c echo hello 271\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask272\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask272\",\"eTag\":\"0x8D7E09A8A242E24\",\"creationTime\":\"2020-04-14T17:37:44.3426852Z\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3426852Z\",\"commandLine\":\"cmd /c echo hello 272\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask273\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask273\",\"eTag\":\"0x8D7E09A8A23DFFE\",\"creationTime\":\"2020-04-14T17:37:44.3406846Z\",\"lastModified\":\"2020-04-14T17:37:44.3406846Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3406846Z\",\"commandLine\":\"cmd /c echo hello 273\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask274\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask274\",\"eTag\":\"0x8D7E09A8A242E24\",\"creationTime\":\"2020-04-14T17:37:44.3426852Z\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3426852Z\",\"commandLine\":\"cmd /c echo hello 274\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask275\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask275\",\"eTag\":\"0x8D7E09A8A242E24\",\"creationTime\":\"2020-04-14T17:37:44.3426852Z\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3426852Z\",\"commandLine\":\"cmd /c echo hello 275\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask276\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask276\",\"eTag\":\"0x8D7E09A8A1F9A3D\",\"creationTime\":\"2020-04-14T17:37:44.3126845Z\",\"lastModified\":\"2020-04-14T17:37:44.3126845Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3126845Z\",\"commandLine\":\"cmd /c echo hello 276\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask277\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask277\",\"eTag\":\"0x8D7E09A8A24070B\",\"creationTime\":\"2020-04-14T17:37:44.3416843Z\",\"lastModified\":\"2020-04-14T17:37:44.3416843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3416843Z\",\"commandLine\":\"cmd /c echo hello 277\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask278\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask278\",\"eTag\":\"0x8D7E09A8A24070B\",\"creationTime\":\"2020-04-14T17:37:44.3416843Z\",\"lastModified\":\"2020-04-14T17:37:44.3416843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3416843Z\",\"commandLine\":\"cmd /c echo hello 278\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask279\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask279\",\"eTag\":\"0x8D7E09A8A1F5BD8\",\"creationTime\":\"2020-04-14T17:37:44.3110872Z\",\"lastModified\":\"2020-04-14T17:37:44.3110872Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3110872Z\",\"commandLine\":\"cmd /c echo hello 279\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask28\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask28\",\"eTag\":\"0x8D7E09A8A151229\",\"creationTime\":\"2020-04-14T17:37:44.2436649Z\",\"lastModified\":\"2020-04-14T17:37:44.2436649Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2436649Z\",\"commandLine\":\"cmd /c echo hello 28\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask280\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask280\",\"eTag\":\"0x8D7E09A8A242E24\",\"creationTime\":\"2020-04-14T17:37:44.3426852Z\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3426852Z\",\"commandLine\":\"cmd /c echo hello 280\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask281\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask281\",\"eTag\":\"0x8D7E09A8A25B4CA\",\"creationTime\":\"2020-04-14T17:37:44.3526858Z\",\"lastModified\":\"2020-04-14T17:37:44.3526858Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3526858Z\",\"commandLine\":\"cmd /c echo hello 281\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask282\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask282\",\"eTag\":\"0x8D7E09A8A242E24\",\"creationTime\":\"2020-04-14T17:37:44.3426852Z\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3426852Z\",\"commandLine\":\"cmd /c echo hello 282\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask283\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask283\",\"eTag\":\"0x8D7E09A8A25B4CA\",\"creationTime\":\"2020-04-14T17:37:44.3526858Z\",\"lastModified\":\"2020-04-14T17:37:44.3526858Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3526858Z\",\"commandLine\":\"cmd /c echo hello 283\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask284\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask284\",\"eTag\":\"0x8D7E09A8A1F737D\",\"creationTime\":\"2020-04-14T17:37:44.3116925Z\",\"lastModified\":\"2020-04-14T17:37:44.3116925Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3116925Z\",\"commandLine\":\"cmd /c echo hello 284\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask285\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask285\",\"eTag\":\"0x8D7E09A8A273BDC\",\"creationTime\":\"2020-04-14T17:37:44.3626972Z\",\"lastModified\":\"2020-04-14T17:37:44.3626972Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3626972Z\",\"commandLine\":\"cmd /c echo hello 285\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask286\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask286\",\"eTag\":\"0x8D7E09A8A25B4CA\",\"creationTime\":\"2020-04-14T17:37:44.3526858Z\",\"lastModified\":\"2020-04-14T17:37:44.3526858Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3526858Z\",\"commandLine\":\"cmd /c echo hello 286\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask287\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask287\",\"eTag\":\"0x8D7E09A8A273BDC\",\"creationTime\":\"2020-04-14T17:37:44.3626972Z\",\"lastModified\":\"2020-04-14T17:37:44.3626972Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3626972Z\",\"commandLine\":\"cmd /c echo hello 287\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask288\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask288\",\"eTag\":\"0x8D7E09A8A289AEB\",\"creationTime\":\"2020-04-14T17:37:44.3716843Z\",\"lastModified\":\"2020-04-14T17:37:44.3716843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3716843Z\",\"commandLine\":\"cmd /c echo hello 288\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask289\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask289\",\"eTag\":\"0x8D7E09A8A258DEA\",\"creationTime\":\"2020-04-14T17:37:44.3516906Z\",\"lastModified\":\"2020-04-14T17:37:44.3516906Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3516906Z\",\"commandLine\":\"cmd /c echo hello 289\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask29\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask29\",\"eTag\":\"0x8D7E09A8A14A90E\",\"creationTime\":\"2020-04-14T17:37:44.2409742Z\",\"lastModified\":\"2020-04-14T17:37:44.2409742Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2409742Z\",\"commandLine\":\"cmd /c echo hello 29\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask290\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask290\",\"eTag\":\"0x8D7E09A8A242E24\",\"creationTime\":\"2020-04-14T17:37:44.3426852Z\",\"lastModified\":\"2020-04-14T17:37:44.3426852Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3426852Z\",\"commandLine\":\"cmd /c echo hello 290\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask291\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask291\",\"eTag\":\"0x8D7E09A8A25B4CA\",\"creationTime\":\"2020-04-14T17:37:44.3526858Z\",\"lastModified\":\"2020-04-14T17:37:44.3526858Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3526858Z\",\"commandLine\":\"cmd /c echo hello 291\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask292\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask292\",\"eTag\":\"0x8D7E09A8A25B4CA\",\"creationTime\":\"2020-04-14T17:37:44.3526858Z\",\"lastModified\":\"2020-04-14T17:37:44.3526858Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3526858Z\",\"commandLine\":\"cmd /c echo hello 292\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask293\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask293\",\"eTag\":\"0x8D7E09A8A2C928A\",\"creationTime\":\"2020-04-14T17:37:44.3976842Z\",\"lastModified\":\"2020-04-14T17:37:44.3976842Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3976842Z\",\"commandLine\":\"cmd /c echo hello 293\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask294\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask294\",\"eTag\":\"0x8D7E09A8A273BDC\",\"creationTime\":\"2020-04-14T17:37:44.3626972Z\",\"lastModified\":\"2020-04-14T17:37:44.3626972Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3626972Z\",\"commandLine\":\"cmd /c echo hello 294\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask295\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask295\",\"eTag\":\"0x8D7E09A8A271434\",\"creationTime\":\"2020-04-14T17:37:44.361682Z\",\"lastModified\":\"2020-04-14T17:37:44.361682Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.361682Z\",\"commandLine\":\"cmd /c echo hello 295\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask296\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask296\",\"eTag\":\"0x8D7E09A8A299CE8\",\"creationTime\":\"2020-04-14T17:37:44.3782888Z\",\"lastModified\":\"2020-04-14T17:37:44.3782888Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3782888Z\",\"commandLine\":\"cmd /c echo hello 296\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask297\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask297\",\"eTag\":\"0x8D7E09A8A289AEB\",\"creationTime\":\"2020-04-14T17:37:44.3716843Z\",\"lastModified\":\"2020-04-14T17:37:44.3716843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3716843Z\",\"commandLine\":\"cmd /c echo hello 297\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask298\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask298\",\"eTag\":\"0x8D7E09A8A2B812D\",\"creationTime\":\"2020-04-14T17:37:44.3906861Z\",\"lastModified\":\"2020-04-14T17:37:44.3906861Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3906861Z\",\"commandLine\":\"cmd /c echo hello 298\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask299\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask299\",\"eTag\":\"0x8D7E09A8A273BDC\",\"creationTime\":\"2020-04-14T17:37:44.3626972Z\",\"lastModified\":\"2020-04-14T17:37:44.3626972Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3626972Z\",\"commandLine\":\"cmd /c echo hello 299\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask3\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask3\",\"eTag\":\"0x8D7E09A8A02E9BD\",\"creationTime\":\"2020-04-14T17:37:44.1246653Z\",\"lastModified\":\"2020-04-14T17:37:44.1246653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1246653Z\",\"commandLine\":\"cmd /c echo hello 3\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask30\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask30\",\"eTag\":\"0x8D7E09A8A19A628\",\"creationTime\":\"2020-04-14T17:37:44.273668Z\",\"lastModified\":\"2020-04-14T17:37:44.273668Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.273668Z\",\"commandLine\":\"cmd /c echo hello 30\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask300\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask300\",\"eTag\":\"0x8D7E09A89CBD498\",\"creationTime\":\"2020-04-14T17:37:43.763676Z\",\"lastModified\":\"2020-04-14T17:37:43.763676Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.763676Z\",\"commandLine\":\"cmd /c echo hello 300\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask301\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask301\",\"eTag\":\"0x8D7E09A89EC2DC8\",\"creationTime\":\"2020-04-14T17:37:43.9756744Z\",\"lastModified\":\"2020-04-14T17:37:43.9756744Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.9756744Z\",\"commandLine\":\"cmd /c echo hello 301\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask302\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask302\",\"eTag\":\"0x8D7E09A89E242C4\",\"creationTime\":\"2020-04-14T17:37:43.9106756Z\",\"lastModified\":\"2020-04-14T17:37:43.9106756Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.9106756Z\",\"commandLine\":\"cmd /c echo hello 302\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask303\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask303\",\"eTag\":\"0x8D7E09A89FB7019\",\"creationTime\":\"2020-04-14T17:37:44.0756761Z\",\"lastModified\":\"2020-04-14T17:37:44.0756761Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.0756761Z\",\"commandLine\":\"cmd /c echo hello 303\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask304\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask304\",\"eTag\":\"0x8D7E09A89CE4597\",\"creationTime\":\"2020-04-14T17:37:43.7796759Z\",\"lastModified\":\"2020-04-14T17:37:43.7796759Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7796759Z\",\"commandLine\":\"cmd /c echo hello 304\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask305\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask305\",\"eTag\":\"0x8D7E09A89FF67D0\",\"creationTime\":\"2020-04-14T17:37:44.1016784Z\",\"lastModified\":\"2020-04-14T17:37:44.1016784Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1016784Z\",\"commandLine\":\"cmd /c echo hello 305\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask306\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask306\",\"eTag\":\"0x8D7E09A89FF67D0\",\"creationTime\":\"2020-04-14T17:37:44.1016784Z\",\"lastModified\":\"2020-04-14T17:37:44.1016784Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1016784Z\",\"commandLine\":\"cmd /c echo hello 306\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask307\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask307\",\"eTag\":\"0x8D7E09A89FFDCD7\",\"creationTime\":\"2020-04-14T17:37:44.1046743Z\",\"lastModified\":\"2020-04-14T17:37:44.1046743Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1046743Z\",\"commandLine\":\"cmd /c echo hello 307\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask308\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask308\",\"eTag\":\"0x8D7E09A8A002B00\",\"creationTime\":\"2020-04-14T17:37:44.1066752Z\",\"lastModified\":\"2020-04-14T17:37:44.1066752Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1066752Z\",\"commandLine\":\"cmd /c echo hello 308\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask309\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask309\",\"eTag\":\"0x8D7E09A89FF67D0\",\"creationTime\":\"2020-04-14T17:37:44.1016784Z\",\"lastModified\":\"2020-04-14T17:37:44.1016784Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1016784Z\",\"commandLine\":\"cmd /c echo hello 309\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask31\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask31\",\"eTag\":\"0x8D7E09A8A14EB2E\",\"creationTime\":\"2020-04-14T17:37:44.242667Z\",\"lastModified\":\"2020-04-14T17:37:44.242667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.242667Z\",\"commandLine\":\"cmd /c echo hello 31\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask310\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask310\",\"eTag\":\"0x8D7E09A8A0003F6\",\"creationTime\":\"2020-04-14T17:37:44.1056758Z\",\"lastModified\":\"2020-04-14T17:37:44.1056758Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1056758Z\",\"commandLine\":\"cmd /c echo hello 310\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask311\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask311\",\"eTag\":\"0x8D7E09A8A01D8B6\",\"creationTime\":\"2020-04-14T17:37:44.1176758Z\",\"lastModified\":\"2020-04-14T17:37:44.1176758Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1176758Z\",\"commandLine\":\"cmd /c echo hello 311\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask312\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask312\",\"eTag\":\"0x8D7E09A8A01B19D\",\"creationTime\":\"2020-04-14T17:37:44.1166749Z\",\"lastModified\":\"2020-04-14T17:37:44.1166749Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1166749Z\",\"commandLine\":\"cmd /c echo hello 312\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask313\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask313\",\"eTag\":\"0x8D7E09A8A0733CE\",\"creationTime\":\"2020-04-14T17:37:44.1527758Z\",\"lastModified\":\"2020-04-14T17:37:44.1527758Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1527758Z\",\"commandLine\":\"cmd /c echo hello 313\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask314\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask314\",\"eTag\":\"0x8D7E09A8A0708C4\",\"creationTime\":\"2020-04-14T17:37:44.151674Z\",\"lastModified\":\"2020-04-14T17:37:44.151674Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.151674Z\",\"commandLine\":\"cmd /c echo hello 314\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask315\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask315\",\"eTag\":\"0x8D7E09A8A0708C4\",\"creationTime\":\"2020-04-14T17:37:44.151674Z\",\"lastModified\":\"2020-04-14T17:37:44.151674Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.151674Z\",\"commandLine\":\"cmd /c echo hello 315\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask316\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask316\",\"eTag\":\"0x8D7E09A8A0708C4\",\"creationTime\":\"2020-04-14T17:37:44.151674Z\",\"lastModified\":\"2020-04-14T17:37:44.151674Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.151674Z\",\"commandLine\":\"cmd /c echo hello 316\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask317\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask317\",\"eTag\":\"0x8D7E09A8A092BB0\",\"creationTime\":\"2020-04-14T17:37:44.1656752Z\",\"lastModified\":\"2020-04-14T17:37:44.1656752Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1656752Z\",\"commandLine\":\"cmd /c echo hello 317\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask318\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask318\",\"eTag\":\"0x8D7E09A8A07CC2B\",\"creationTime\":\"2020-04-14T17:37:44.1566763Z\",\"lastModified\":\"2020-04-14T17:37:44.1566763Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1566763Z\",\"commandLine\":\"cmd /c echo hello 318\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask319\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask319\",\"eTag\":\"0x8D7E09A89DC0139\",\"creationTime\":\"2020-04-14T17:37:43.8696761Z\",\"lastModified\":\"2020-04-14T17:37:43.8696761Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8696761Z\",\"commandLine\":\"cmd /c echo hello 319\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask32\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask32\",\"eTag\":\"0x8D7E09A8A14C411\",\"creationTime\":\"2020-04-14T17:37:44.2416657Z\",\"lastModified\":\"2020-04-14T17:37:44.2416657Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2416657Z\",\"commandLine\":\"cmd /c echo hello 32\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask320\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask320\",\"eTag\":\"0x8D7E09A8A0733CE\",\"creationTime\":\"2020-04-14T17:37:44.1527758Z\",\"lastModified\":\"2020-04-14T17:37:44.1527758Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1527758Z\",\"commandLine\":\"cmd /c echo hello 320\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask321\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask321\",\"eTag\":\"0x8D7E09A8A0A6432\",\"creationTime\":\"2020-04-14T17:37:44.1736754Z\",\"lastModified\":\"2020-04-14T17:37:44.1736754Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1736754Z\",\"commandLine\":\"cmd /c echo hello 321\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask322\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask322\",\"eTag\":\"0x8D7E09A8A0F1F2A\",\"creationTime\":\"2020-04-14T17:37:44.2046762Z\",\"lastModified\":\"2020-04-14T17:37:44.2046762Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2046762Z\",\"commandLine\":\"cmd /c echo hello 322\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask323\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask323\",\"eTag\":\"0x8D7E09A8A0ED102\",\"creationTime\":\"2020-04-14T17:37:44.2026754Z\",\"lastModified\":\"2020-04-14T17:37:44.2026754Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2026754Z\",\"commandLine\":\"cmd /c echo hello 323\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask324\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask324\",\"eTag\":\"0x8D7E09A8A0F1F2A\",\"creationTime\":\"2020-04-14T17:37:44.2046762Z\",\"lastModified\":\"2020-04-14T17:37:44.2046762Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2046762Z\",\"commandLine\":\"cmd /c echo hello 324\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask325\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask325\",\"eTag\":\"0x8D7E09A8A10A5C8\",\"creationTime\":\"2020-04-14T17:37:44.214676Z\",\"lastModified\":\"2020-04-14T17:37:44.214676Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.214676Z\",\"commandLine\":\"cmd /c echo hello 325\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask326\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask326\",\"eTag\":\"0x8D7E09A8A11BE42\",\"creationTime\":\"2020-04-14T17:37:44.2218562Z\",\"lastModified\":\"2020-04-14T17:37:44.2218562Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2218562Z\",\"commandLine\":\"cmd /c echo hello 326\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask327\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask327\",\"eTag\":\"0x8D7E09A8A11DE37\",\"creationTime\":\"2020-04-14T17:37:44.2226743Z\",\"lastModified\":\"2020-04-14T17:37:44.2226743Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2226743Z\",\"commandLine\":\"cmd /c echo hello 327\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask328\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask328\",\"eTag\":\"0x8D7E09A8A12536D\",\"creationTime\":\"2020-04-14T17:37:44.2256749Z\",\"lastModified\":\"2020-04-14T17:37:44.2256749Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2256749Z\",\"commandLine\":\"cmd /c echo hello 328\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask329\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask329\",\"eTag\":\"0x8D7E09A8A13B2F4\",\"creationTime\":\"2020-04-14T17:37:44.234674Z\",\"lastModified\":\"2020-04-14T17:37:44.234674Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.234674Z\",\"commandLine\":\"cmd /c echo hello 329\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask33\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask33\",\"eTag\":\"0x8D7E09A8A151229\",\"creationTime\":\"2020-04-14T17:37:44.2436649Z\",\"lastModified\":\"2020-04-14T17:37:44.2436649Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2436649Z\",\"commandLine\":\"cmd /c echo hello 33\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask330\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask330\",\"eTag\":\"0x8D7E09A8A1364E0\",\"creationTime\":\"2020-04-14T17:37:44.2326752Z\",\"lastModified\":\"2020-04-14T17:37:44.2326752Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2326752Z\",\"commandLine\":\"cmd /c echo hello 330\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask331\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask331\",\"eTag\":\"0x8D7E09A8A1364E0\",\"creationTime\":\"2020-04-14T17:37:44.2326752Z\",\"lastModified\":\"2020-04-14T17:37:44.2326752Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2326752Z\",\"commandLine\":\"cmd /c echo hello 331\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask332\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask332\",\"eTag\":\"0x8D7E09A8A13B2F4\",\"creationTime\":\"2020-04-14T17:37:44.234674Z\",\"lastModified\":\"2020-04-14T17:37:44.234674Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.234674Z\",\"commandLine\":\"cmd /c echo hello 332\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask333\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask333\",\"eTag\":\"0x8D7E09A8A13B2F4\",\"creationTime\":\"2020-04-14T17:37:44.234674Z\",\"lastModified\":\"2020-04-14T17:37:44.234674Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.234674Z\",\"commandLine\":\"cmd /c echo hello 333\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask334\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask334\",\"eTag\":\"0x8D7E09A8A13B2F4\",\"creationTime\":\"2020-04-14T17:37:44.234674Z\",\"lastModified\":\"2020-04-14T17:37:44.234674Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.234674Z\",\"commandLine\":\"cmd /c echo hello 334\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask335\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask335\",\"eTag\":\"0x8D7E09A8A14BDB1\",\"creationTime\":\"2020-04-14T17:37:44.2415025Z\",\"lastModified\":\"2020-04-14T17:37:44.2415025Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2415025Z\",\"commandLine\":\"cmd /c echo hello 335\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask336\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask336\",\"eTag\":\"0x8D7E09A8A186DEB\",\"creationTime\":\"2020-04-14T17:37:44.2656747Z\",\"lastModified\":\"2020-04-14T17:37:44.2656747Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2656747Z\",\"commandLine\":\"cmd /c echo hello 336\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask337\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask337\",\"eTag\":\"0x8D7E09A8A133DB7\",\"creationTime\":\"2020-04-14T17:37:44.2316727Z\",\"lastModified\":\"2020-04-14T17:37:44.2316727Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2316727Z\",\"commandLine\":\"cmd /c echo hello 337\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask338\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask338\",\"eTag\":\"0x8D7E09A8A16C035\",\"creationTime\":\"2020-04-14T17:37:44.2546741Z\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2546741Z\",\"commandLine\":\"cmd /c echo hello 338\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask339\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask339\",\"eTag\":\"0x8D7E09A8A16C035\",\"creationTime\":\"2020-04-14T17:37:44.2546741Z\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2546741Z\",\"commandLine\":\"cmd /c echo hello 339\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask34\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask34\",\"eTag\":\"0x8D7E09A8A14EB2E\",\"creationTime\":\"2020-04-14T17:37:44.242667Z\",\"lastModified\":\"2020-04-14T17:37:44.242667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.242667Z\",\"commandLine\":\"cmd /c echo hello 34\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask340\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask340\",\"eTag\":\"0x8D7E09A8A16C035\",\"creationTime\":\"2020-04-14T17:37:44.2546741Z\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2546741Z\",\"commandLine\":\"cmd /c echo hello 340\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask341\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask341\",\"eTag\":\"0x8D7E09A8A16C035\",\"creationTime\":\"2020-04-14T17:37:44.2546741Z\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2546741Z\",\"commandLine\":\"cmd /c echo hello 341\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask342\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask342\",\"eTag\":\"0x8D7E09A8A16C035\",\"creationTime\":\"2020-04-14T17:37:44.2546741Z\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2546741Z\",\"commandLine\":\"cmd /c echo hello 342\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask343\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask343\",\"eTag\":\"0x8D7E09A8A17C507\",\"creationTime\":\"2020-04-14T17:37:44.2613511Z\",\"lastModified\":\"2020-04-14T17:37:44.2613511Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2613511Z\",\"commandLine\":\"cmd /c echo hello 343\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask344\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask344\",\"eTag\":\"0x8D7E09A8A16C035\",\"creationTime\":\"2020-04-14T17:37:44.2546741Z\",\"lastModified\":\"2020-04-14T17:37:44.2546741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2546741Z\",\"commandLine\":\"cmd /c echo hello 344\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask345\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask345\",\"eTag\":\"0x8D7E09A8A14C461\",\"creationTime\":\"2020-04-14T17:37:44.2416737Z\",\"lastModified\":\"2020-04-14T17:37:44.2416737Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2416737Z\",\"commandLine\":\"cmd /c echo hello 345\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask346\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask346\",\"eTag\":\"0x8D7E09A8A1846D6\",\"creationTime\":\"2020-04-14T17:37:44.2646742Z\",\"lastModified\":\"2020-04-14T17:37:44.2646742Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2646742Z\",\"commandLine\":\"cmd /c echo hello 346\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask347\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask347\",\"eTag\":\"0x8D7E09A8A14C461\",\"creationTime\":\"2020-04-14T17:37:44.2416737Z\",\"lastModified\":\"2020-04-14T17:37:44.2416737Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2416737Z\",\"commandLine\":\"cmd /c echo hello 347\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask348\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask348\",\"eTag\":\"0x8D7E09A8A186DEB\",\"creationTime\":\"2020-04-14T17:37:44.2656747Z\",\"lastModified\":\"2020-04-14T17:37:44.2656747Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2656747Z\",\"commandLine\":\"cmd /c echo hello 348\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask349\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask349\",\"eTag\":\"0x8D7E09A8A186DEB\",\"creationTime\":\"2020-04-14T17:37:44.2656747Z\",\"lastModified\":\"2020-04-14T17:37:44.2656747Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2656747Z\",\"commandLine\":\"cmd /c echo hello 349\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask35\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask35\",\"eTag\":\"0x8D7E09A8A14C411\",\"creationTime\":\"2020-04-14T17:37:44.2416657Z\",\"lastModified\":\"2020-04-14T17:37:44.2416657Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2416657Z\",\"commandLine\":\"cmd /c echo hello 35\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask350\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask350\",\"eTag\":\"0x8D7E09A8A14EB89\",\"creationTime\":\"2020-04-14T17:37:44.2426761Z\",\"lastModified\":\"2020-04-14T17:37:44.2426761Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2426761Z\",\"commandLine\":\"cmd /c echo hello 350\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask351\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask351\",\"eTag\":\"0x8D7E09A8A186DEB\",\"creationTime\":\"2020-04-14T17:37:44.2656747Z\",\"lastModified\":\"2020-04-14T17:37:44.2656747Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2656747Z\",\"commandLine\":\"cmd /c echo hello 351\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask352\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask352\",\"eTag\":\"0x8D7E09A8A195855\",\"creationTime\":\"2020-04-14T17:37:44.2716757Z\",\"lastModified\":\"2020-04-14T17:37:44.2716757Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2716757Z\",\"commandLine\":\"cmd /c echo hello 352\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask353\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask353\",\"eTag\":\"0x8D7E09A8A193E39\",\"creationTime\":\"2020-04-14T17:37:44.2710073Z\",\"lastModified\":\"2020-04-14T17:37:44.2710073Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2710073Z\",\"commandLine\":\"cmd /c echo hello 353\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask354\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask354\",\"eTag\":\"0x8D7E09A8A194362\",\"creationTime\":\"2020-04-14T17:37:44.2711394Z\",\"lastModified\":\"2020-04-14T17:37:44.2711394Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2711394Z\",\"commandLine\":\"cmd /c echo hello 354\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask355\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask355\",\"eTag\":\"0x8D7E09A8A17D1AA\",\"creationTime\":\"2020-04-14T17:37:44.2616746Z\",\"lastModified\":\"2020-04-14T17:37:44.2616746Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2616746Z\",\"commandLine\":\"cmd /c echo hello 355\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask356\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask356\",\"eTag\":\"0x8D7E09A8A19CD79\",\"creationTime\":\"2020-04-14T17:37:44.2746745Z\",\"lastModified\":\"2020-04-14T17:37:44.2746745Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2746745Z\",\"commandLine\":\"cmd /c echo hello 356\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask357\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask357\",\"eTag\":\"0x8D7E09A8A19CD79\",\"creationTime\":\"2020-04-14T17:37:44.2746745Z\",\"lastModified\":\"2020-04-14T17:37:44.2746745Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2746745Z\",\"commandLine\":\"cmd /c echo hello 357\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask358\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask358\",\"eTag\":\"0x8D7E09A8A19CD79\",\"creationTime\":\"2020-04-14T17:37:44.2746745Z\",\"lastModified\":\"2020-04-14T17:37:44.2746745Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2746745Z\",\"commandLine\":\"cmd /c echo hello 358\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask359\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask359\",\"eTag\":\"0x8D7E09A8A1ABF3F\",\"creationTime\":\"2020-04-14T17:37:44.2808639Z\",\"lastModified\":\"2020-04-14T17:37:44.2808639Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2808639Z\",\"commandLine\":\"cmd /c echo hello 359\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask36\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask36\",\"eTag\":\"0x8D7E09A8A162771\",\"creationTime\":\"2020-04-14T17:37:44.2507633Z\",\"lastModified\":\"2020-04-14T17:37:44.2507633Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2507633Z\",\"commandLine\":\"cmd /c echo hello 36\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask360\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask360\",\"eTag\":\"0x8D7E09A8A1AC70E\",\"creationTime\":\"2020-04-14T17:37:44.2810638Z\",\"lastModified\":\"2020-04-14T17:37:44.2810638Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2810638Z\",\"commandLine\":\"cmd /c echo hello 360\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask361\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask361\",\"eTag\":\"0x8D7E09A8A19CD79\",\"creationTime\":\"2020-04-14T17:37:44.2746745Z\",\"lastModified\":\"2020-04-14T17:37:44.2746745Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2746745Z\",\"commandLine\":\"cmd /c echo hello 361\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask362\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask362\",\"eTag\":\"0x8D7E09A8A1CDABE\",\"creationTime\":\"2020-04-14T17:37:44.294675Z\",\"lastModified\":\"2020-04-14T17:37:44.294675Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.294675Z\",\"commandLine\":\"cmd /c echo hello 362\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask363\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask363\",\"eTag\":\"0x8D7E09A8A1CDABE\",\"creationTime\":\"2020-04-14T17:37:44.294675Z\",\"lastModified\":\"2020-04-14T17:37:44.294675Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.294675Z\",\"commandLine\":\"cmd /c echo hello 363\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask364\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask364\",\"eTag\":\"0x8D7E09A8A1BF068\",\"creationTime\":\"2020-04-14T17:37:44.288676Z\",\"lastModified\":\"2020-04-14T17:37:44.288676Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.288676Z\",\"commandLine\":\"cmd /c echo hello 364\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask365\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask365\",\"eTag\":\"0x8D7E09A8A1BCA6C\",\"creationTime\":\"2020-04-14T17:37:44.2877036Z\",\"lastModified\":\"2020-04-14T17:37:44.2877036Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2877036Z\",\"commandLine\":\"cmd /c echo hello 365\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask366\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask366\",\"eTag\":\"0x8D7E09A8A1CDABE\",\"creationTime\":\"2020-04-14T17:37:44.294675Z\",\"lastModified\":\"2020-04-14T17:37:44.294675Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.294675Z\",\"commandLine\":\"cmd /c echo hello 366\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask367\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask367\",\"eTag\":\"0x8D7E09A8A1BF068\",\"creationTime\":\"2020-04-14T17:37:44.288676Z\",\"lastModified\":\"2020-04-14T17:37:44.288676Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.288676Z\",\"commandLine\":\"cmd /c echo hello 367\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask368\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask368\",\"eTag\":\"0x8D7E09A8A1BCA6C\",\"creationTime\":\"2020-04-14T17:37:44.2877036Z\",\"lastModified\":\"2020-04-14T17:37:44.2877036Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2877036Z\",\"commandLine\":\"cmd /c echo hello 368\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask369\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask369\",\"eTag\":\"0x8D7E09A8A1C1764\",\"creationTime\":\"2020-04-14T17:37:44.289674Z\",\"lastModified\":\"2020-04-14T17:37:44.289674Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.289674Z\",\"commandLine\":\"cmd /c echo hello 369\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask37\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask37\",\"eTag\":\"0x8D7E09A8A197F10\",\"creationTime\":\"2020-04-14T17:37:44.2726672Z\",\"lastModified\":\"2020-04-14T17:37:44.2726672Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2726672Z\",\"commandLine\":\"cmd /c echo hello 37\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask370\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask370\",\"eTag\":\"0x8D7E09A8A1C3E75\",\"creationTime\":\"2020-04-14T17:37:44.2906741Z\",\"lastModified\":\"2020-04-14T17:37:44.2906741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2906741Z\",\"commandLine\":\"cmd /c echo hello 370\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask371\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask371\",\"eTag\":\"0x8D7E09A8A1C1764\",\"creationTime\":\"2020-04-14T17:37:44.289674Z\",\"lastModified\":\"2020-04-14T17:37:44.289674Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.289674Z\",\"commandLine\":\"cmd /c echo hello 371\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask372\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask372\",\"eTag\":\"0x8D7E09A8A1CDABE\",\"creationTime\":\"2020-04-14T17:37:44.294675Z\",\"lastModified\":\"2020-04-14T17:37:44.294675Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.294675Z\",\"commandLine\":\"cmd /c echo hello 372\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask373\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask373\",\"eTag\":\"0x8D7E09A8A24562D\",\"creationTime\":\"2020-04-14T17:37:44.3437101Z\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3437101Z\",\"commandLine\":\"cmd /c echo hello 373\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask374\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask374\",\"eTag\":\"0x8D7E09A8A255606\",\"creationTime\":\"2020-04-14T17:37:44.3502598Z\",\"lastModified\":\"2020-04-14T17:37:44.3502598Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3502598Z\",\"commandLine\":\"cmd /c echo hello 374\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask375\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask375\",\"eTag\":\"0x8D7E09A8A24562D\",\"creationTime\":\"2020-04-14T17:37:44.3437101Z\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3437101Z\",\"commandLine\":\"cmd /c echo hello 375\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask376\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask376\",\"eTag\":\"0x8D7E09A8A1F4F4B\",\"creationTime\":\"2020-04-14T17:37:44.3107659Z\",\"lastModified\":\"2020-04-14T17:37:44.3107659Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3107659Z\",\"commandLine\":\"cmd /c echo hello 376\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask377\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask377\",\"eTag\":\"0x8D7E09A8A1CB3A9\",\"creationTime\":\"2020-04-14T17:37:44.2936745Z\",\"lastModified\":\"2020-04-14T17:37:44.2936745Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2936745Z\",\"commandLine\":\"cmd /c echo hello 377\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask378\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask378\",\"eTag\":\"0x8D7E09A8A1C3E75\",\"creationTime\":\"2020-04-14T17:37:44.2906741Z\",\"lastModified\":\"2020-04-14T17:37:44.2906741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2906741Z\",\"commandLine\":\"cmd /c echo hello 378\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask379\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask379\",\"eTag\":\"0x8D7E09A8A24562D\",\"creationTime\":\"2020-04-14T17:37:44.3437101Z\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3437101Z\",\"commandLine\":\"cmd /c echo hello 379\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask38\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask38\",\"eTag\":\"0x8D7E09A8A151229\",\"creationTime\":\"2020-04-14T17:37:44.2436649Z\",\"lastModified\":\"2020-04-14T17:37:44.2436649Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2436649Z\",\"commandLine\":\"cmd /c echo hello 38\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask380\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask380\",\"eTag\":\"0x8D7E09A8A25664C\",\"creationTime\":\"2020-04-14T17:37:44.3506764Z\",\"lastModified\":\"2020-04-14T17:37:44.3506764Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3506764Z\",\"commandLine\":\"cmd /c echo hello 380\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask381\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask381\",\"eTag\":\"0x8D7E09A8A1F425D\",\"creationTime\":\"2020-04-14T17:37:44.3104349Z\",\"lastModified\":\"2020-04-14T17:37:44.3104349Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3104349Z\",\"commandLine\":\"cmd /c echo hello 381\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask382\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask382\",\"eTag\":\"0x8D7E09A8A24562D\",\"creationTime\":\"2020-04-14T17:37:44.3437101Z\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3437101Z\",\"commandLine\":\"cmd /c echo hello 382\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask383\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask383\",\"eTag\":\"0x8D7E09A8A25B455\",\"creationTime\":\"2020-04-14T17:37:44.3526741Z\",\"lastModified\":\"2020-04-14T17:37:44.3526741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3526741Z\",\"commandLine\":\"cmd /c echo hello 383\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask384\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask384\",\"eTag\":\"0x8D7E09A8A1F99DE\",\"creationTime\":\"2020-04-14T17:37:44.312675Z\",\"lastModified\":\"2020-04-14T17:37:44.312675Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.312675Z\",\"commandLine\":\"cmd /c echo hello 384\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask385\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask385\",\"eTag\":\"0x8D7E09A8A24562D\",\"creationTime\":\"2020-04-14T17:37:44.3437101Z\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3437101Z\",\"commandLine\":\"cmd /c echo hello 385\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask386\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask386\",\"eTag\":\"0x8D7E09A8A2713DB\",\"creationTime\":\"2020-04-14T17:37:44.3616731Z\",\"lastModified\":\"2020-04-14T17:37:44.3616731Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3616731Z\",\"commandLine\":\"cmd /c echo hello 386\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask387\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask387\",\"eTag\":\"0x8D7E09A8A24562D\",\"creationTime\":\"2020-04-14T17:37:44.3437101Z\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3437101Z\",\"commandLine\":\"cmd /c echo hello 387\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask388\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask388\",\"eTag\":\"0x8D7E09A8A24562D\",\"creationTime\":\"2020-04-14T17:37:44.3437101Z\",\"lastModified\":\"2020-04-14T17:37:44.3437101Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3437101Z\",\"commandLine\":\"cmd /c echo hello 388\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask389\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask389\",\"eTag\":\"0x8D7E09A89EF621C\",\"creationTime\":\"2020-04-14T17:37:43.9966748Z\",\"lastModified\":\"2020-04-14T17:37:43.9966748Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.9966748Z\",\"commandLine\":\"cmd /c echo hello 389\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask39\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask39\",\"eTag\":\"0x8D7E09A8A15393F\",\"creationTime\":\"2020-04-14T17:37:44.2446655Z\",\"lastModified\":\"2020-04-14T17:37:44.2446655Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2446655Z\",\"commandLine\":\"cmd /c echo hello 39\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask390\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask390\",\"eTag\":\"0x8D7E09A8A242DB5\",\"creationTime\":\"2020-04-14T17:37:44.3426741Z\",\"lastModified\":\"2020-04-14T17:37:44.3426741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3426741Z\",\"commandLine\":\"cmd /c echo hello 390\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask391\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask391\",\"eTag\":\"0x8D7E09A8A255606\",\"creationTime\":\"2020-04-14T17:37:44.3502598Z\",\"lastModified\":\"2020-04-14T17:37:44.3502598Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3502598Z\",\"commandLine\":\"cmd /c echo hello 391\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask392\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask392\",\"eTag\":\"0x8D7E09A8A258D49\",\"creationTime\":\"2020-04-14T17:37:44.3516745Z\",\"lastModified\":\"2020-04-14T17:37:44.3516745Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3516745Z\",\"commandLine\":\"cmd /c echo hello 392\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask393\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask393\",\"eTag\":\"0x8D7E09A8A26CC73\",\"creationTime\":\"2020-04-14T17:37:44.3598451Z\",\"lastModified\":\"2020-04-14T17:37:44.3598451Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3598451Z\",\"commandLine\":\"cmd /c echo hello 393\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask394\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask394\",\"eTag\":\"0x8D7E09A8A258D49\",\"creationTime\":\"2020-04-14T17:37:44.3516745Z\",\"lastModified\":\"2020-04-14T17:37:44.3516745Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3516745Z\",\"commandLine\":\"cmd /c echo hello 394\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask395\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask395\",\"eTag\":\"0x8D7E09A8A258D49\",\"creationTime\":\"2020-04-14T17:37:44.3516745Z\",\"lastModified\":\"2020-04-14T17:37:44.3516745Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3516745Z\",\"commandLine\":\"cmd /c echo hello 395\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask396\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask396\",\"eTag\":\"0x8D7E09A8A26ECDD\",\"creationTime\":\"2020-04-14T17:37:44.3606749Z\",\"lastModified\":\"2020-04-14T17:37:44.3606749Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3606749Z\",\"commandLine\":\"cmd /c echo hello 396\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask397\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask397\",\"eTag\":\"0x8D7E09A8A258D49\",\"creationTime\":\"2020-04-14T17:37:44.3516745Z\",\"lastModified\":\"2020-04-14T17:37:44.3516745Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3516745Z\",\"commandLine\":\"cmd /c echo hello 397\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask398\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask398\",\"eTag\":\"0x8D7E09A8A25B455\",\"creationTime\":\"2020-04-14T17:37:44.3526741Z\",\"lastModified\":\"2020-04-14T17:37:44.3526741Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3526741Z\",\"commandLine\":\"cmd /c echo hello 398\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask399\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask399\",\"eTag\":\"0x8D7E09A8A29D3F4\",\"creationTime\":\"2020-04-14T17:37:44.379698Z\",\"lastModified\":\"2020-04-14T17:37:44.379698Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.379698Z\",\"commandLine\":\"cmd /c echo hello 399\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask4\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask4\",\"eTag\":\"0x8D7E09A8A02E9BD\",\"creationTime\":\"2020-04-14T17:37:44.1246653Z\",\"lastModified\":\"2020-04-14T17:37:44.1246653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1246653Z\",\"commandLine\":\"cmd /c echo hello 4\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask40\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask40\",\"eTag\":\"0x8D7E09A8A14EB2E\",\"creationTime\":\"2020-04-14T17:37:44.242667Z\",\"lastModified\":\"2020-04-14T17:37:44.242667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.242667Z\",\"commandLine\":\"cmd /c echo hello 40\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask400\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask400\",\"eTag\":\"0x8D7E09A89FF9E80\",\"creationTime\":\"2020-04-14T17:37:44.1030784Z\",\"lastModified\":\"2020-04-14T17:37:44.1030784Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1030784Z\",\"commandLine\":\"cmd /c echo hello 400\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask401\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask401\",\"eTag\":\"0x8D7E09A8A664FE5\",\"creationTime\":\"2020-04-14T17:37:44.7760869Z\",\"lastModified\":\"2020-04-14T17:37:44.7760869Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7760869Z\",\"commandLine\":\"cmd /c echo hello 401\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask402\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask402\",\"eTag\":\"0x8D7E09A8A6C2299\",\"creationTime\":\"2020-04-14T17:37:44.8142489Z\",\"lastModified\":\"2020-04-14T17:37:44.8142489Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8142489Z\",\"commandLine\":\"cmd /c echo hello 402\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask403\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask403\",\"eTag\":\"0x8D7E09A8A6B31C1\",\"creationTime\":\"2020-04-14T17:37:44.8080833Z\",\"lastModified\":\"2020-04-14T17:37:44.8080833Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8080833Z\",\"commandLine\":\"cmd /c echo hello 403\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask404\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask404\",\"eTag\":\"0x8D7E09A8A6B31C1\",\"creationTime\":\"2020-04-14T17:37:44.8080833Z\",\"lastModified\":\"2020-04-14T17:37:44.8080833Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8080833Z\",\"commandLine\":\"cmd /c echo hello 404\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask405\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask405\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"creationTime\":\"2020-04-14T17:37:44.8090818Z\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8090818Z\",\"commandLine\":\"cmd /c echo hello 405\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask406\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask406\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"creationTime\":\"2020-04-14T17:37:44.8090818Z\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8090818Z\",\"commandLine\":\"cmd /c echo hello 406\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask407\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask407\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"creationTime\":\"2020-04-14T17:37:44.8090818Z\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8090818Z\",\"commandLine\":\"cmd /c echo hello 407\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask408\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask408\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"creationTime\":\"2020-04-14T17:37:44.8090818Z\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8090818Z\",\"commandLine\":\"cmd /c echo hello 408\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask409\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask409\",\"eTag\":\"0x8D7E09A8A6CB857\",\"creationTime\":\"2020-04-14T17:37:44.8180823Z\",\"lastModified\":\"2020-04-14T17:37:44.8180823Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8180823Z\",\"commandLine\":\"cmd /c echo hello 409\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask41\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask41\",\"eTag\":\"0x8D7E09A89E9C3CA\",\"creationTime\":\"2020-04-14T17:37:43.9598538Z\",\"lastModified\":\"2020-04-14T17:37:43.9598538Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.9598538Z\",\"commandLine\":\"cmd /c echo hello 41\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask410\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask410\",\"eTag\":\"0x8D7E09A8A6C9154\",\"creationTime\":\"2020-04-14T17:37:44.8170836Z\",\"lastModified\":\"2020-04-14T17:37:44.8170836Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8170836Z\",\"commandLine\":\"cmd /c echo hello 410\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask411\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask411\",\"eTag\":\"0x8D7E09A8A6ABC9F\",\"creationTime\":\"2020-04-14T17:37:44.8050847Z\",\"lastModified\":\"2020-04-14T17:37:44.8050847Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8050847Z\",\"commandLine\":\"cmd /c echo hello 411\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask412\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask412\",\"eTag\":\"0x8D7E09A8A6AE39E\",\"creationTime\":\"2020-04-14T17:37:44.806083Z\",\"lastModified\":\"2020-04-14T17:37:44.806083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.806083Z\",\"commandLine\":\"cmd /c echo hello 412\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask413\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask413\",\"eTag\":\"0x8D7E09A8A6B58C2\",\"creationTime\":\"2020-04-14T17:37:44.8090818Z\",\"lastModified\":\"2020-04-14T17:37:44.8090818Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8090818Z\",\"commandLine\":\"cmd /c echo hello 413\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask414\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask414\",\"eTag\":\"0x8D7E09A8A6C2299\",\"creationTime\":\"2020-04-14T17:37:44.8142489Z\",\"lastModified\":\"2020-04-14T17:37:44.8142489Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8142489Z\",\"commandLine\":\"cmd /c echo hello 414\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask415\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask415\",\"eTag\":\"0x8D7E09A8A74597F\",\"creationTime\":\"2020-04-14T17:37:44.8680831Z\",\"lastModified\":\"2020-04-14T17:37:44.8680831Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8680831Z\",\"commandLine\":\"cmd /c echo hello 415\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask416\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask416\",\"eTag\":\"0x8D7E09A8A6C9154\",\"creationTime\":\"2020-04-14T17:37:44.8170836Z\",\"lastModified\":\"2020-04-14T17:37:44.8170836Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8170836Z\",\"commandLine\":\"cmd /c echo hello 416\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask417\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask417\",\"eTag\":\"0x8D7E09A8A6DC9D6\",\"creationTime\":\"2020-04-14T17:37:44.8250838Z\",\"lastModified\":\"2020-04-14T17:37:44.8250838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8250838Z\",\"commandLine\":\"cmd /c echo hello 417\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask418\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask418\",\"eTag\":\"0x8D7E09A8A6C6A37\",\"creationTime\":\"2020-04-14T17:37:44.8160823Z\",\"lastModified\":\"2020-04-14T17:37:44.8160823Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8160823Z\",\"commandLine\":\"cmd /c echo hello 418\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask419\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask419\",\"eTag\":\"0x8D7E09A8A6C4333\",\"creationTime\":\"2020-04-14T17:37:44.8150835Z\",\"lastModified\":\"2020-04-14T17:37:44.8150835Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8150835Z\",\"commandLine\":\"cmd /c echo hello 419\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask42\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask42\",\"eTag\":\"0x8D7E09A8A14C411\",\"creationTime\":\"2020-04-14T17:37:44.2416657Z\",\"lastModified\":\"2020-04-14T17:37:44.2416657Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2416657Z\",\"commandLine\":\"cmd /c echo hello 42\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask420\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask420\",\"eTag\":\"0x8D7E09A8A6CB857\",\"creationTime\":\"2020-04-14T17:37:44.8180823Z\",\"lastModified\":\"2020-04-14T17:37:44.8180823Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8180823Z\",\"commandLine\":\"cmd /c echo hello 420\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask421\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask421\",\"eTag\":\"0x8D7E09A8A6DA8CC\",\"creationTime\":\"2020-04-14T17:37:44.824238Z\",\"lastModified\":\"2020-04-14T17:37:44.824238Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.824238Z\",\"commandLine\":\"cmd /c echo hello 421\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask422\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask422\",\"eTag\":\"0x8D7E09A8A808E7D\",\"creationTime\":\"2020-04-14T17:37:44.9480829Z\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9480829Z\",\"commandLine\":\"cmd /c echo hello 422\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask423\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask423\",\"eTag\":\"0x8D7E09A8A723E21\",\"creationTime\":\"2020-04-14T17:37:44.8542753Z\",\"lastModified\":\"2020-04-14T17:37:44.8542753Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8542753Z\",\"commandLine\":\"cmd /c echo hello 423\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask424\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask424\",\"eTag\":\"0x8D7E09A8A6E3EF0\",\"creationTime\":\"2020-04-14T17:37:44.8280816Z\",\"lastModified\":\"2020-04-14T17:37:44.8280816Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8280816Z\",\"commandLine\":\"cmd /c echo hello 424\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask425\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask425\",\"eTag\":\"0x8D7E09A8A6C2299\",\"creationTime\":\"2020-04-14T17:37:44.8142489Z\",\"lastModified\":\"2020-04-14T17:37:44.8142489Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8142489Z\",\"commandLine\":\"cmd /c echo hello 425\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask426\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask426\",\"eTag\":\"0x8D7E09A8A6DA8CC\",\"creationTime\":\"2020-04-14T17:37:44.824238Z\",\"lastModified\":\"2020-04-14T17:37:44.824238Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.824238Z\",\"commandLine\":\"cmd /c echo hello 426\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask427\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask427\",\"eTag\":\"0x8D7E09A8A6DA8CC\",\"creationTime\":\"2020-04-14T17:37:44.824238Z\",\"lastModified\":\"2020-04-14T17:37:44.824238Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.824238Z\",\"commandLine\":\"cmd /c echo hello 427\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask428\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask428\",\"eTag\":\"0x8D7E09A8A714C49\",\"creationTime\":\"2020-04-14T17:37:44.8480841Z\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8480841Z\",\"commandLine\":\"cmd /c echo hello 428\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask429\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask429\",\"eTag\":\"0x8D7E09A8A6C4333\",\"creationTime\":\"2020-04-14T17:37:44.8150835Z\",\"lastModified\":\"2020-04-14T17:37:44.8150835Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8150835Z\",\"commandLine\":\"cmd /c echo hello 429\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask43\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask43\",\"eTag\":\"0x8D7E09A8A1A9855\",\"creationTime\":\"2020-04-14T17:37:44.2798677Z\",\"lastModified\":\"2020-04-14T17:37:44.2798677Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2798677Z\",\"commandLine\":\"cmd /c echo hello 43\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask430\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask430\",\"eTag\":\"0x8D7E09A8A6CB857\",\"creationTime\":\"2020-04-14T17:37:44.8180823Z\",\"lastModified\":\"2020-04-14T17:37:44.8180823Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8180823Z\",\"commandLine\":\"cmd /c echo hello 430\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask431\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask431\",\"eTag\":\"0x8D7E09A8A723652\",\"creationTime\":\"2020-04-14T17:37:44.8540754Z\",\"lastModified\":\"2020-04-14T17:37:44.8540754Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8540754Z\",\"commandLine\":\"cmd /c echo hello 431\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask432\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask432\",\"eTag\":\"0x8D7E09A8A73C1CE\",\"creationTime\":\"2020-04-14T17:37:44.8641998Z\",\"lastModified\":\"2020-04-14T17:37:44.8641998Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8641998Z\",\"commandLine\":\"cmd /c echo hello 432\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask433\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask433\",\"eTag\":\"0x8D7E09A8A6CB857\",\"creationTime\":\"2020-04-14T17:37:44.8180823Z\",\"lastModified\":\"2020-04-14T17:37:44.8180823Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8180823Z\",\"commandLine\":\"cmd /c echo hello 433\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask434\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask434\",\"eTag\":\"0x8D7E09A8A6F2C77\",\"creationTime\":\"2020-04-14T17:37:44.8341623Z\",\"lastModified\":\"2020-04-14T17:37:44.8341623Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8341623Z\",\"commandLine\":\"cmd /c echo hello 434\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask435\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask435\",\"eTag\":\"0x8D7E09A8A714C49\",\"creationTime\":\"2020-04-14T17:37:44.8480841Z\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8480841Z\",\"commandLine\":\"cmd /c echo hello 435\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask436\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask436\",\"eTag\":\"0x8D7E09A8A6CB857\",\"creationTime\":\"2020-04-14T17:37:44.8180823Z\",\"lastModified\":\"2020-04-14T17:37:44.8180823Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8180823Z\",\"commandLine\":\"cmd /c echo hello 436\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask437\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask437\",\"eTag\":\"0x8D7E09A8A72D2E9\",\"creationTime\":\"2020-04-14T17:37:44.8580841Z\",\"lastModified\":\"2020-04-14T17:37:44.8580841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8580841Z\",\"commandLine\":\"cmd /c echo hello 437\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask438\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask438\",\"eTag\":\"0x8D7E09A8A7766C0\",\"creationTime\":\"2020-04-14T17:37:44.8880832Z\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8880832Z\",\"commandLine\":\"cmd /c echo hello 438\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask439\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask439\",\"eTag\":\"0x8D7E09A8A76CAAE\",\"creationTime\":\"2020-04-14T17:37:44.8840878Z\",\"lastModified\":\"2020-04-14T17:37:44.8840878Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8840878Z\",\"commandLine\":\"cmd /c echo hello 439\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask44\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask44\",\"eTag\":\"0x8D7E09A8A1957F5\",\"creationTime\":\"2020-04-14T17:37:44.2716661Z\",\"lastModified\":\"2020-04-14T17:37:44.2716661Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2716661Z\",\"commandLine\":\"cmd /c echo hello 44\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask440\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask440\",\"eTag\":\"0x8D7E09A8A785719\",\"creationTime\":\"2020-04-14T17:37:44.8942361Z\",\"lastModified\":\"2020-04-14T17:37:44.8942361Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8942361Z\",\"commandLine\":\"cmd /c echo hello 440\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask441\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask441\",\"eTag\":\"0x8D7E09A8A7859B6\",\"creationTime\":\"2020-04-14T17:37:44.894303Z\",\"lastModified\":\"2020-04-14T17:37:44.894303Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.894303Z\",\"commandLine\":\"cmd /c echo hello 441\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask442\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask442\",\"eTag\":\"0x8D7E09A8A7766C0\",\"creationTime\":\"2020-04-14T17:37:44.8880832Z\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8880832Z\",\"commandLine\":\"cmd /c echo hello 442\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask443\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask443\",\"eTag\":\"0x8D7E09A8A714C49\",\"creationTime\":\"2020-04-14T17:37:44.8480841Z\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8480841Z\",\"commandLine\":\"cmd /c echo hello 443\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask444\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask444\",\"eTag\":\"0x8D7E09A8A70FE26\",\"creationTime\":\"2020-04-14T17:37:44.8460838Z\",\"lastModified\":\"2020-04-14T17:37:44.8460838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8460838Z\",\"commandLine\":\"cmd /c echo hello 444\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask445\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask445\",\"eTag\":\"0x8D7E09A8A723E21\",\"creationTime\":\"2020-04-14T17:37:44.8542753Z\",\"lastModified\":\"2020-04-14T17:37:44.8542753Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8542753Z\",\"commandLine\":\"cmd /c echo hello 445\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask446\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask446\",\"eTag\":\"0x8D7E09A8A785719\",\"creationTime\":\"2020-04-14T17:37:44.8942361Z\",\"lastModified\":\"2020-04-14T17:37:44.8942361Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8942361Z\",\"commandLine\":\"cmd /c echo hello 446\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask447\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask447\",\"eTag\":\"0x8D7E09A8A773FBB\",\"creationTime\":\"2020-04-14T17:37:44.8870843Z\",\"lastModified\":\"2020-04-14T17:37:44.8870843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8870843Z\",\"commandLine\":\"cmd /c echo hello 447\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask448\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask448\",\"eTag\":\"0x8D7E09A8A76F19B\",\"creationTime\":\"2020-04-14T17:37:44.8850843Z\",\"lastModified\":\"2020-04-14T17:37:44.8850843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8850843Z\",\"commandLine\":\"cmd /c echo hello 448\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask449\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask449\",\"eTag\":\"0x8D7E09A8A7766C0\",\"creationTime\":\"2020-04-14T17:37:44.8880832Z\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8880832Z\",\"commandLine\":\"cmd /c echo hello 449\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask45\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask45\",\"eTag\":\"0x8D7E09A8A19A628\",\"creationTime\":\"2020-04-14T17:37:44.273668Z\",\"lastModified\":\"2020-04-14T17:37:44.273668Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.273668Z\",\"commandLine\":\"cmd /c echo hello 45\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask450\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask450\",\"eTag\":\"0x8D7E09A8A6DC9D6\",\"creationTime\":\"2020-04-14T17:37:44.8250838Z\",\"lastModified\":\"2020-04-14T17:37:44.8250838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8250838Z\",\"commandLine\":\"cmd /c echo hello 450\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask451\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask451\",\"eTag\":\"0x8D7E09A8A72D2E9\",\"creationTime\":\"2020-04-14T17:37:44.8580841Z\",\"lastModified\":\"2020-04-14T17:37:44.8580841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8580841Z\",\"commandLine\":\"cmd /c echo hello 451\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask452\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask452\",\"eTag\":\"0x8D7E09A8A7766C0\",\"creationTime\":\"2020-04-14T17:37:44.8880832Z\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8880832Z\",\"commandLine\":\"cmd /c echo hello 452\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask453\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask453\",\"eTag\":\"0x8D7E09A8A7F56FE\",\"creationTime\":\"2020-04-14T17:37:44.9401086Z\",\"lastModified\":\"2020-04-14T17:37:44.9401086Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9401086Z\",\"commandLine\":\"cmd /c echo hello 453\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask454\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask454\",\"eTag\":\"0x8D7E09A8A714C49\",\"creationTime\":\"2020-04-14T17:37:44.8480841Z\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8480841Z\",\"commandLine\":\"cmd /c echo hello 454\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask455\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask455\",\"eTag\":\"0x8D7E09A8A73C1CE\",\"creationTime\":\"2020-04-14T17:37:44.8641998Z\",\"lastModified\":\"2020-04-14T17:37:44.8641998Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8641998Z\",\"commandLine\":\"cmd /c echo hello 455\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask456\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask456\",\"eTag\":\"0x8D7E09A8A714C49\",\"creationTime\":\"2020-04-14T17:37:44.8480841Z\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8480841Z\",\"commandLine\":\"cmd /c echo hello 456\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask457\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask457\",\"eTag\":\"0x8D7E09A8A73E45F\",\"creationTime\":\"2020-04-14T17:37:44.8650847Z\",\"lastModified\":\"2020-04-14T17:37:44.8650847Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8650847Z\",\"commandLine\":\"cmd /c echo hello 457\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask458\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask458\",\"eTag\":\"0x8D7E09A8A714C49\",\"creationTime\":\"2020-04-14T17:37:44.8480841Z\",\"lastModified\":\"2020-04-14T17:37:44.8480841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8480841Z\",\"commandLine\":\"cmd /c echo hello 458\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask459\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask459\",\"eTag\":\"0x8D7E09A8A7766C0\",\"creationTime\":\"2020-04-14T17:37:44.8880832Z\",\"lastModified\":\"2020-04-14T17:37:44.8880832Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.8880832Z\",\"commandLine\":\"cmd /c echo hello 459\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask46\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask46\",\"eTag\":\"0x8D7E09A8A19A628\",\"creationTime\":\"2020-04-14T17:37:44.273668Z\",\"lastModified\":\"2020-04-14T17:37:44.273668Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.273668Z\",\"commandLine\":\"cmd /c echo hello 46\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask460\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask460\",\"eTag\":\"0x8D7E09A8A819FFB\",\"creationTime\":\"2020-04-14T17:37:44.9550843Z\",\"lastModified\":\"2020-04-14T17:37:44.9550843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9550843Z\",\"commandLine\":\"cmd /c echo hello 460\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask461\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask461\",\"eTag\":\"0x8D7E09A8A7BD374\",\"creationTime\":\"2020-04-14T17:37:44.9170804Z\",\"lastModified\":\"2020-04-14T17:37:44.9170804Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9170804Z\",\"commandLine\":\"cmd /c echo hello 461\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask462\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask462\",\"eTag\":\"0x8D7E09A8A821537\",\"creationTime\":\"2020-04-14T17:37:44.9580855Z\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9580855Z\",\"commandLine\":\"cmd /c echo hello 462\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask463\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask463\",\"eTag\":\"0x8D7E09A8A7FF23D\",\"creationTime\":\"2020-04-14T17:37:44.9440829Z\",\"lastModified\":\"2020-04-14T17:37:44.9440829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9440829Z\",\"commandLine\":\"cmd /c echo hello 463\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask464\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask464\",\"eTag\":\"0x8D7E09A8A821537\",\"creationTime\":\"2020-04-14T17:37:44.9580855Z\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9580855Z\",\"commandLine\":\"cmd /c echo hello 464\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask465\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask465\",\"eTag\":\"0x8D7E09A8A821537\",\"creationTime\":\"2020-04-14T17:37:44.9580855Z\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9580855Z\",\"commandLine\":\"cmd /c echo hello 465\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask466\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask466\",\"eTag\":\"0x8D7E09A8A808E7D\",\"creationTime\":\"2020-04-14T17:37:44.9480829Z\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9480829Z\",\"commandLine\":\"cmd /c echo hello 466\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask467\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask467\",\"eTag\":\"0x8D7E09A8A81897E\",\"creationTime\":\"2020-04-14T17:37:44.9545086Z\",\"lastModified\":\"2020-04-14T17:37:44.9545086Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9545086Z\",\"commandLine\":\"cmd /c echo hello 467\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask468\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask468\",\"eTag\":\"0x8D7E09A8A79DD6F\",\"creationTime\":\"2020-04-14T17:37:44.9042287Z\",\"lastModified\":\"2020-04-14T17:37:44.9042287Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9042287Z\",\"commandLine\":\"cmd /c echo hello 468\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask469\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask469\",\"eTag\":\"0x8D7E09A8A819FFB\",\"creationTime\":\"2020-04-14T17:37:44.9550843Z\",\"lastModified\":\"2020-04-14T17:37:44.9550843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9550843Z\",\"commandLine\":\"cmd /c echo hello 469\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask47\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask47\",\"eTag\":\"0x8D7E09A8A19A628\",\"creationTime\":\"2020-04-14T17:37:44.273668Z\",\"lastModified\":\"2020-04-14T17:37:44.273668Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.273668Z\",\"commandLine\":\"cmd /c echo hello 47\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask470\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask470\",\"eTag\":\"0x8D7E09A8A7FF23D\",\"creationTime\":\"2020-04-14T17:37:44.9440829Z\",\"lastModified\":\"2020-04-14T17:37:44.9440829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9440829Z\",\"commandLine\":\"cmd /c echo hello 470\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask471\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask471\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"creationTime\":\"2020-04-14T17:37:44.907081Z\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.907081Z\",\"commandLine\":\"cmd /c echo hello 471\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask472\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask472\",\"eTag\":\"0x8D7E09A8A79DD6F\",\"creationTime\":\"2020-04-14T17:37:44.9042287Z\",\"lastModified\":\"2020-04-14T17:37:44.9042287Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9042287Z\",\"commandLine\":\"cmd /c echo hello 472\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask473\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask473\",\"eTag\":\"0x8D7E09A8A81EE19\",\"creationTime\":\"2020-04-14T17:37:44.9570841Z\",\"lastModified\":\"2020-04-14T17:37:44.9570841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9570841Z\",\"commandLine\":\"cmd /c echo hello 473\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask474\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask474\",\"eTag\":\"0x8D7E09A8A7BD374\",\"creationTime\":\"2020-04-14T17:37:44.9170804Z\",\"lastModified\":\"2020-04-14T17:37:44.9170804Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9170804Z\",\"commandLine\":\"cmd /c echo hello 474\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask475\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask475\",\"eTag\":\"0x8D7E09A8A7FA42A\",\"creationTime\":\"2020-04-14T17:37:44.9420842Z\",\"lastModified\":\"2020-04-14T17:37:44.9420842Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9420842Z\",\"commandLine\":\"cmd /c echo hello 475\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask476\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask476\",\"eTag\":\"0x8D7E09A8A801959\",\"creationTime\":\"2020-04-14T17:37:44.9450841Z\",\"lastModified\":\"2020-04-14T17:37:44.9450841Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9450841Z\",\"commandLine\":\"cmd /c echo hello 476\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask477\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask477\",\"eTag\":\"0x8D7E09A8A821537\",\"creationTime\":\"2020-04-14T17:37:44.9580855Z\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9580855Z\",\"commandLine\":\"cmd /c echo hello 477\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask478\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask478\",\"eTag\":\"0x8D7E09A8A7F56FE\",\"creationTime\":\"2020-04-14T17:37:44.9401086Z\",\"lastModified\":\"2020-04-14T17:37:44.9401086Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9401086Z\",\"commandLine\":\"cmd /c echo hello 478\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask479\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask479\",\"eTag\":\"0x8D7E09A8A808E7D\",\"creationTime\":\"2020-04-14T17:37:44.9480829Z\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9480829Z\",\"commandLine\":\"cmd /c echo hello 479\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask48\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask48\",\"eTag\":\"0x8D7E09A8A197F10\",\"creationTime\":\"2020-04-14T17:37:44.2726672Z\",\"lastModified\":\"2020-04-14T17:37:44.2726672Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2726672Z\",\"commandLine\":\"cmd /c echo hello 48\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask480\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask480\",\"eTag\":\"0x8D7E09A8A7B6395\",\"creationTime\":\"2020-04-14T17:37:44.9142165Z\",\"lastModified\":\"2020-04-14T17:37:44.9142165Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9142165Z\",\"commandLine\":\"cmd /c echo hello 480\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask481\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask481\",\"eTag\":\"0x8D7E09A8A7FA42A\",\"creationTime\":\"2020-04-14T17:37:44.9420842Z\",\"lastModified\":\"2020-04-14T17:37:44.9420842Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9420842Z\",\"commandLine\":\"cmd /c echo hello 481\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask482\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask482\",\"eTag\":\"0x8D7E09A8A8C002E\",\"creationTime\":\"2020-04-14T17:37:45.023083Z\",\"lastModified\":\"2020-04-14T17:37:45.023083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.023083Z\",\"commandLine\":\"cmd /c echo hello 482\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask483\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask483\",\"eTag\":\"0x8D7E09A8A79DD6F\",\"creationTime\":\"2020-04-14T17:37:44.9042287Z\",\"lastModified\":\"2020-04-14T17:37:44.9042287Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9042287Z\",\"commandLine\":\"cmd /c echo hello 483\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask484\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask484\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"creationTime\":\"2020-04-14T17:37:44.907081Z\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.907081Z\",\"commandLine\":\"cmd /c echo hello 484\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask485\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask485\",\"eTag\":\"0x8D7E09A8A808E7D\",\"creationTime\":\"2020-04-14T17:37:44.9480829Z\",\"lastModified\":\"2020-04-14T17:37:44.9480829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9480829Z\",\"commandLine\":\"cmd /c echo hello 485\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask486\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask486\",\"eTag\":\"0x8D7E09A8A7A4CDA\",\"creationTime\":\"2020-04-14T17:37:44.907081Z\",\"lastModified\":\"2020-04-14T17:37:44.907081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.907081Z\",\"commandLine\":\"cmd /c echo hello 486\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask487\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask487\",\"eTag\":\"0x8D7E09A8A821537\",\"creationTime\":\"2020-04-14T17:37:44.9580855Z\",\"lastModified\":\"2020-04-14T17:37:44.9580855Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9580855Z\",\"commandLine\":\"cmd /c echo hello 487\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask488\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask488\",\"eTag\":\"0x8D7E09A8A80406B\",\"creationTime\":\"2020-04-14T17:37:44.9460843Z\",\"lastModified\":\"2020-04-14T17:37:44.9460843Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.9460843Z\",\"commandLine\":\"cmd /c echo hello 488\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask489\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask489\",\"eTag\":\"0x8D7E09A8A8C7558\",\"creationTime\":\"2020-04-14T17:37:45.0260824Z\",\"lastModified\":\"2020-04-14T17:37:45.0260824Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0260824Z\",\"commandLine\":\"cmd /c echo hello 489\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask49\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask49\",\"eTag\":\"0x8D7E09A8A197F10\",\"creationTime\":\"2020-04-14T17:37:44.2726672Z\",\"lastModified\":\"2020-04-14T17:37:44.2726672Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2726672Z\",\"commandLine\":\"cmd /c echo hello 49\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask490\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask490\",\"eTag\":\"0x8D7E09A8A8C9C77\",\"creationTime\":\"2020-04-14T17:37:45.0270839Z\",\"lastModified\":\"2020-04-14T17:37:45.0270839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0270839Z\",\"commandLine\":\"cmd /c echo hello 490\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask491\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask491\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"creationTime\":\"2020-04-14T17:37:45.028083Z\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.028083Z\",\"commandLine\":\"cmd /c echo hello 491\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask492\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask492\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"creationTime\":\"2020-04-14T17:37:45.028083Z\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.028083Z\",\"commandLine\":\"cmd /c echo hello 492\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask493\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask493\",\"eTag\":\"0x8D7E09A8A8DC860\",\"creationTime\":\"2020-04-14T17:37:45.0347616Z\",\"lastModified\":\"2020-04-14T17:37:45.0347616Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0347616Z\",\"commandLine\":\"cmd /c echo hello 493\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask494\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask494\",\"eTag\":\"0x8D7E09A8A8C7558\",\"creationTime\":\"2020-04-14T17:37:45.0260824Z\",\"lastModified\":\"2020-04-14T17:37:45.0260824Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0260824Z\",\"commandLine\":\"cmd /c echo hello 494\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask495\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask495\",\"eTag\":\"0x8D7E09A8A8DFBFD\",\"creationTime\":\"2020-04-14T17:37:45.0360829Z\",\"lastModified\":\"2020-04-14T17:37:45.0360829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0360829Z\",\"commandLine\":\"cmd /c echo hello 495\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask496\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask496\",\"eTag\":\"0x8D7E09A8A8DFBFD\",\"creationTime\":\"2020-04-14T17:37:45.0360829Z\",\"lastModified\":\"2020-04-14T17:37:45.0360829Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0360829Z\",\"commandLine\":\"cmd /c echo hello 496\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask497\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask497\",\"eTag\":\"0x8D7E09A8A8E4A2A\",\"creationTime\":\"2020-04-14T17:37:45.0380842Z\",\"lastModified\":\"2020-04-14T17:37:45.0380842Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.0380842Z\",\"commandLine\":\"cmd /c echo hello 497\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask498\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask498\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"creationTime\":\"2020-04-14T17:37:45.028083Z\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.028083Z\",\"commandLine\":\"cmd /c echo hello 498\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask499\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask499\",\"eTag\":\"0x8D7E09A8A8CC37E\",\"creationTime\":\"2020-04-14T17:37:45.028083Z\",\"lastModified\":\"2020-04-14T17:37:45.028083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:45.028083Z\",\"commandLine\":\"cmd /c echo hello 499\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask5\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask5\",\"eTag\":\"0x8D7E09A8A02E9BD\",\"creationTime\":\"2020-04-14T17:37:44.1246653Z\",\"lastModified\":\"2020-04-14T17:37:44.1246653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1246653Z\",\"commandLine\":\"cmd /c echo hello 5\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask50\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask50\",\"eTag\":\"0x8D7E09A8A1AB780\",\"creationTime\":\"2020-04-14T17:37:44.2806656Z\",\"lastModified\":\"2020-04-14T17:37:44.2806656Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2806656Z\",\"commandLine\":\"cmd /c echo hello 50\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask500\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask500\",\"eTag\":\"0x8D7E09A89D971AF\",\"creationTime\":\"2020-04-14T17:37:43.8528943Z\",\"lastModified\":\"2020-04-14T17:37:43.8528943Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8528943Z\",\"commandLine\":\"cmd /c echo hello 500\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask501\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask501\",\"eTag\":\"0x8D7E09A8A09157D\",\"creationTime\":\"2020-04-14T17:37:44.1651069Z\",\"lastModified\":\"2020-04-14T17:37:44.1651069Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1651069Z\",\"commandLine\":\"cmd /c echo hello 501\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask502\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask502\",\"eTag\":\"0x8D7E09A89DE0DEA\",\"creationTime\":\"2020-04-14T17:37:43.8831082Z\",\"lastModified\":\"2020-04-14T17:37:43.8831082Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8831082Z\",\"commandLine\":\"cmd /c echo hello 502\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask503\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask503\",\"eTag\":\"0x8D7E09A8A08EE69\",\"creationTime\":\"2020-04-14T17:37:44.1641065Z\",\"lastModified\":\"2020-04-14T17:37:44.1641065Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1641065Z\",\"commandLine\":\"cmd /c echo hello 503\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask504\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask504\",\"eTag\":\"0x8D7E09A8A09157D\",\"creationTime\":\"2020-04-14T17:37:44.1651069Z\",\"lastModified\":\"2020-04-14T17:37:44.1651069Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1651069Z\",\"commandLine\":\"cmd /c echo hello 504\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask505\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask505\",\"eTag\":\"0x8D7E09A8A09157D\",\"creationTime\":\"2020-04-14T17:37:44.1651069Z\",\"lastModified\":\"2020-04-14T17:37:44.1651069Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1651069Z\",\"commandLine\":\"cmd /c echo hello 505\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask506\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask506\",\"eTag\":\"0x8D7E09A8A0A26F5\",\"creationTime\":\"2020-04-14T17:37:44.1721077Z\",\"lastModified\":\"2020-04-14T17:37:44.1721077Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1721077Z\",\"commandLine\":\"cmd /c echo hello 506\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask507\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask507\",\"eTag\":\"0x8D7E09A8A09157D\",\"creationTime\":\"2020-04-14T17:37:44.1651069Z\",\"lastModified\":\"2020-04-14T17:37:44.1651069Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1651069Z\",\"commandLine\":\"cmd /c echo hello 507\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask508\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask508\",\"eTag\":\"0x8D7E09A8A121637\",\"creationTime\":\"2020-04-14T17:37:44.2241079Z\",\"lastModified\":\"2020-04-14T17:37:44.2241079Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2241079Z\",\"commandLine\":\"cmd /c echo hello 508\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask509\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask509\",\"eTag\":\"0x8D7E09A8A11C821\",\"creationTime\":\"2020-04-14T17:37:44.2221089Z\",\"lastModified\":\"2020-04-14T17:37:44.2221089Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2221089Z\",\"commandLine\":\"cmd /c echo hello 509\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask51\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask51\",\"eTag\":\"0x8D7E09A8A1AB780\",\"creationTime\":\"2020-04-14T17:37:44.2806656Z\",\"lastModified\":\"2020-04-14T17:37:44.2806656Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2806656Z\",\"commandLine\":\"cmd /c echo hello 51\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask510\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask510\",\"eTag\":\"0x8D7E09A8A101A4D\",\"creationTime\":\"2020-04-14T17:37:44.2111053Z\",\"lastModified\":\"2020-04-14T17:37:44.2111053Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2111053Z\",\"commandLine\":\"cmd /c echo hello 510\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask511\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask511\",\"eTag\":\"0x8D7E09A8A108F93\",\"creationTime\":\"2020-04-14T17:37:44.2141075Z\",\"lastModified\":\"2020-04-14T17:37:44.2141075Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2141075Z\",\"commandLine\":\"cmd /c echo hello 511\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask512\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask512\",\"eTag\":\"0x8D7E09A8A121637\",\"creationTime\":\"2020-04-14T17:37:44.2241079Z\",\"lastModified\":\"2020-04-14T17:37:44.2241079Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2241079Z\",\"commandLine\":\"cmd /c echo hello 512\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask513\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask513\",\"eTag\":\"0x8D7E09A8A11EF1B\",\"creationTime\":\"2020-04-14T17:37:44.2231067Z\",\"lastModified\":\"2020-04-14T17:37:44.2231067Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2231067Z\",\"commandLine\":\"cmd /c echo hello 513\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask514\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask514\",\"eTag\":\"0x8D7E09A8A121637\",\"creationTime\":\"2020-04-14T17:37:44.2241079Z\",\"lastModified\":\"2020-04-14T17:37:44.2241079Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2241079Z\",\"commandLine\":\"cmd /c echo hello 514\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask515\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask515\",\"eTag\":\"0x8D7E09A8A104173\",\"creationTime\":\"2020-04-14T17:37:44.2121075Z\",\"lastModified\":\"2020-04-14T17:37:44.2121075Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2121075Z\",\"commandLine\":\"cmd /c echo hello 515\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask516\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask516\",\"eTag\":\"0x8D7E09A8A11C821\",\"creationTime\":\"2020-04-14T17:37:44.2221089Z\",\"lastModified\":\"2020-04-14T17:37:44.2221089Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2221089Z\",\"commandLine\":\"cmd /c echo hello 516\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask517\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask517\",\"eTag\":\"0x8D7E09A8A1AA1AE\",\"creationTime\":\"2020-04-14T17:37:44.280107Z\",\"lastModified\":\"2020-04-14T17:37:44.280107Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.280107Z\",\"commandLine\":\"cmd /c echo hello 517\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask518\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask518\",\"eTag\":\"0x8D7E09A89EC17A5\",\"creationTime\":\"2020-04-14T17:37:43.9751077Z\",\"lastModified\":\"2020-04-14T17:37:43.9751077Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.9751077Z\",\"commandLine\":\"cmd /c echo hello 518\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask519\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask519\",\"eTag\":\"0x8D7E09A8A2290EB\",\"creationTime\":\"2020-04-14T17:37:44.3321067Z\",\"lastModified\":\"2020-04-14T17:37:44.3321067Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3321067Z\",\"commandLine\":\"cmd /c echo hello 519\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask52\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask52\",\"eTag\":\"0x8D7E09A8A1ADEA6\",\"creationTime\":\"2020-04-14T17:37:44.2816678Z\",\"lastModified\":\"2020-04-14T17:37:44.2816678Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2816678Z\",\"commandLine\":\"cmd /c echo hello 52\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask520\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask520\",\"eTag\":\"0x8D7E09A8A1C9D81\",\"creationTime\":\"2020-04-14T17:37:44.2931073Z\",\"lastModified\":\"2020-04-14T17:37:44.2931073Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2931073Z\",\"commandLine\":\"cmd /c echo hello 520\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask521\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask521\",\"eTag\":\"0x8D7E09A8A1DFD14\",\"creationTime\":\"2020-04-14T17:37:44.3021076Z\",\"lastModified\":\"2020-04-14T17:37:44.3021076Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3021076Z\",\"commandLine\":\"cmd /c echo hello 521\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask522\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask522\",\"eTag\":\"0x8D7E09A8A2290EB\",\"creationTime\":\"2020-04-14T17:37:44.3321067Z\",\"lastModified\":\"2020-04-14T17:37:44.3321067Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3321067Z\",\"commandLine\":\"cmd /c echo hello 522\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask523\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask523\",\"eTag\":\"0x8D7E09A8A1C767D\",\"creationTime\":\"2020-04-14T17:37:44.2921085Z\",\"lastModified\":\"2020-04-14T17:37:44.2921085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2921085Z\",\"commandLine\":\"cmd /c echo hello 523\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask524\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask524\",\"eTag\":\"0x8D7E09A8A1DD602\",\"creationTime\":\"2020-04-14T17:37:44.3011074Z\",\"lastModified\":\"2020-04-14T17:37:44.3011074Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3011074Z\",\"commandLine\":\"cmd /c echo hello 524\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask525\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask525\",\"eTag\":\"0x8D7E09A8A1E2429\",\"creationTime\":\"2020-04-14T17:37:44.3031081Z\",\"lastModified\":\"2020-04-14T17:37:44.3031081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3031081Z\",\"commandLine\":\"cmd /c echo hello 525\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask526\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask526\",\"eTag\":\"0x8D7E09A8A1C767D\",\"creationTime\":\"2020-04-14T17:37:44.2921085Z\",\"lastModified\":\"2020-04-14T17:37:44.2921085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2921085Z\",\"commandLine\":\"cmd /c echo hello 526\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask527\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask527\",\"eTag\":\"0x8D7E09A8A1E2429\",\"creationTime\":\"2020-04-14T17:37:44.3031081Z\",\"lastModified\":\"2020-04-14T17:37:44.3031081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3031081Z\",\"commandLine\":\"cmd /c echo hello 527\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask528\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask528\",\"eTag\":\"0x8D7E09A8A1E2429\",\"creationTime\":\"2020-04-14T17:37:44.3031081Z\",\"lastModified\":\"2020-04-14T17:37:44.3031081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3031081Z\",\"commandLine\":\"cmd /c echo hello 528\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask529\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask529\",\"eTag\":\"0x8D7E09A8A1DA58D\",\"creationTime\":\"2020-04-14T17:37:44.2998669Z\",\"lastModified\":\"2020-04-14T17:37:44.2998669Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2998669Z\",\"commandLine\":\"cmd /c echo hello 529\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask53\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask53\",\"eTag\":\"0x8D7E09A8A1ADEA6\",\"creationTime\":\"2020-04-14T17:37:44.2816678Z\",\"lastModified\":\"2020-04-14T17:37:44.2816678Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2816678Z\",\"commandLine\":\"cmd /c echo hello 53\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask530\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask530\",\"eTag\":\"0x8D7E09A8A1E2429\",\"creationTime\":\"2020-04-14T17:37:44.3031081Z\",\"lastModified\":\"2020-04-14T17:37:44.3031081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3031081Z\",\"commandLine\":\"cmd /c echo hello 530\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask531\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask531\",\"eTag\":\"0x8D7E09A8A1C9D81\",\"creationTime\":\"2020-04-14T17:37:44.2931073Z\",\"lastModified\":\"2020-04-14T17:37:44.2931073Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2931073Z\",\"commandLine\":\"cmd /c echo hello 531\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask532\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask532\",\"eTag\":\"0x8D7E09A8A2290EB\",\"creationTime\":\"2020-04-14T17:37:44.3321067Z\",\"lastModified\":\"2020-04-14T17:37:44.3321067Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3321067Z\",\"commandLine\":\"cmd /c echo hello 532\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask533\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask533\",\"eTag\":\"0x8D7E09A8A1DAEF6\",\"creationTime\":\"2020-04-14T17:37:44.3001078Z\",\"lastModified\":\"2020-04-14T17:37:44.3001078Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3001078Z\",\"commandLine\":\"cmd /c echo hello 533\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask534\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask534\",\"eTag\":\"0x8D7E09A8A25EC53\",\"creationTime\":\"2020-04-14T17:37:44.3541075Z\",\"lastModified\":\"2020-04-14T17:37:44.3541075Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3541075Z\",\"commandLine\":\"cmd /c echo hello 534\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask535\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask535\",\"eTag\":\"0x8D7E09A8A26D6A3\",\"creationTime\":\"2020-04-14T17:37:44.3601059Z\",\"lastModified\":\"2020-04-14T17:37:44.3601059Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3601059Z\",\"commandLine\":\"cmd /c echo hello 535\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask536\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask536\",\"eTag\":\"0x8D7E09A8A268C6F\",\"creationTime\":\"2020-04-14T17:37:44.3582063Z\",\"lastModified\":\"2020-04-14T17:37:44.3582063Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3582063Z\",\"commandLine\":\"cmd /c echo hello 536\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask537\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask537\",\"eTag\":\"0x8D7E09A8A26D6A3\",\"creationTime\":\"2020-04-14T17:37:44.3601059Z\",\"lastModified\":\"2020-04-14T17:37:44.3601059Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3601059Z\",\"commandLine\":\"cmd /c echo hello 537\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask538\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask538\",\"eTag\":\"0x8D7E09A8A26FDC0\",\"creationTime\":\"2020-04-14T17:37:44.3611072Z\",\"lastModified\":\"2020-04-14T17:37:44.3611072Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3611072Z\",\"commandLine\":\"cmd /c echo hello 538\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask539\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask539\",\"eTag\":\"0x8D7E09A8A2724C5\",\"creationTime\":\"2020-04-14T17:37:44.3621061Z\",\"lastModified\":\"2020-04-14T17:37:44.3621061Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3621061Z\",\"commandLine\":\"cmd /c echo hello 539\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask54\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask54\",\"eTag\":\"0x8D7E09A8A1B059F\",\"creationTime\":\"2020-04-14T17:37:44.2826655Z\",\"lastModified\":\"2020-04-14T17:37:44.2826655Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2826655Z\",\"commandLine\":\"cmd /c echo hello 54\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask540\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask540\",\"eTag\":\"0x8D7E09A8A25EC53\",\"creationTime\":\"2020-04-14T17:37:44.3541075Z\",\"lastModified\":\"2020-04-14T17:37:44.3541075Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3541075Z\",\"commandLine\":\"cmd /c echo hello 540\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask541\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask541\",\"eTag\":\"0x8D7E09A8A2613D6\",\"creationTime\":\"2020-04-14T17:37:44.355119Z\",\"lastModified\":\"2020-04-14T17:37:44.355119Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.355119Z\",\"commandLine\":\"cmd /c echo hello 541\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask542\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask542\",\"eTag\":\"0x8D7E09A8A2724C5\",\"creationTime\":\"2020-04-14T17:37:44.3621061Z\",\"lastModified\":\"2020-04-14T17:37:44.3621061Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3621061Z\",\"commandLine\":\"cmd /c echo hello 542\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask543\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask543\",\"eTag\":\"0x8D7E09A8A25EC53\",\"creationTime\":\"2020-04-14T17:37:44.3541075Z\",\"lastModified\":\"2020-04-14T17:37:44.3541075Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3541075Z\",\"commandLine\":\"cmd /c echo hello 543\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask544\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask544\",\"eTag\":\"0x8D7E09A8A281021\",\"creationTime\":\"2020-04-14T17:37:44.3681313Z\",\"lastModified\":\"2020-04-14T17:37:44.3681313Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3681313Z\",\"commandLine\":\"cmd /c echo hello 544\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask545\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask545\",\"eTag\":\"0x8D7E09A8A288457\",\"creationTime\":\"2020-04-14T17:37:44.3711063Z\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3711063Z\",\"commandLine\":\"cmd /c echo hello 545\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask546\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask546\",\"eTag\":\"0x8D7E09A8A34925B\",\"creationTime\":\"2020-04-14T17:37:44.4501083Z\",\"lastModified\":\"2020-04-14T17:37:44.4501083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4501083Z\",\"commandLine\":\"cmd /c echo hello 546\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask547\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask547\",\"eTag\":\"0x8D7E09A8A28365A\",\"creationTime\":\"2020-04-14T17:37:44.3691098Z\",\"lastModified\":\"2020-04-14T17:37:44.3691098Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3691098Z\",\"commandLine\":\"cmd /c echo hello 547\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask548\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask548\",\"eTag\":\"0x8D7E09A8A288457\",\"creationTime\":\"2020-04-14T17:37:44.3711063Z\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3711063Z\",\"commandLine\":\"cmd /c echo hello 548\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask549\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask549\",\"eTag\":\"0x8D7E09A8A2724C5\",\"creationTime\":\"2020-04-14T17:37:44.3621061Z\",\"lastModified\":\"2020-04-14T17:37:44.3621061Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3621061Z\",\"commandLine\":\"cmd /c echo hello 549\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask55\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask55\",\"eTag\":\"0x8D7E09A8A1ADEA6\",\"creationTime\":\"2020-04-14T17:37:44.2816678Z\",\"lastModified\":\"2020-04-14T17:37:44.2816678Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2816678Z\",\"commandLine\":\"cmd /c echo hello 55\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask550\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask550\",\"eTag\":\"0x8D7E09A8A2B07C8\",\"creationTime\":\"2020-04-14T17:37:44.3875784Z\",\"lastModified\":\"2020-04-14T17:37:44.3875784Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3875784Z\",\"commandLine\":\"cmd /c echo hello 550\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask551\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask551\",\"eTag\":\"0x8D7E09A8A29E3F9\",\"creationTime\":\"2020-04-14T17:37:44.3801081Z\",\"lastModified\":\"2020-04-14T17:37:44.3801081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3801081Z\",\"commandLine\":\"cmd /c echo hello 551\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask552\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask552\",\"eTag\":\"0x8D7E09A8A26AF9D\",\"creationTime\":\"2020-04-14T17:37:44.3591069Z\",\"lastModified\":\"2020-04-14T17:37:44.3591069Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3591069Z\",\"commandLine\":\"cmd /c echo hello 552\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask553\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask553\",\"eTag\":\"0x8D7E09A8A29E3F9\",\"creationTime\":\"2020-04-14T17:37:44.3801081Z\",\"lastModified\":\"2020-04-14T17:37:44.3801081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3801081Z\",\"commandLine\":\"cmd /c echo hello 553\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask554\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask554\",\"eTag\":\"0x8D7E09A8A2724C5\",\"creationTime\":\"2020-04-14T17:37:44.3621061Z\",\"lastModified\":\"2020-04-14T17:37:44.3621061Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3621061Z\",\"commandLine\":\"cmd /c echo hello 554\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask555\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask555\",\"eTag\":\"0x8D7E09A8A2812BA\",\"creationTime\":\"2020-04-14T17:37:44.3681978Z\",\"lastModified\":\"2020-04-14T17:37:44.3681978Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3681978Z\",\"commandLine\":\"cmd /c echo hello 555\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask556\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask556\",\"eTag\":\"0x8D7E09A8A2724C5\",\"creationTime\":\"2020-04-14T17:37:44.3621061Z\",\"lastModified\":\"2020-04-14T17:37:44.3621061Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3621061Z\",\"commandLine\":\"cmd /c echo hello 556\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask557\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask557\",\"eTag\":\"0x8D7E09A8A29E3F9\",\"creationTime\":\"2020-04-14T17:37:44.3801081Z\",\"lastModified\":\"2020-04-14T17:37:44.3801081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3801081Z\",\"commandLine\":\"cmd /c echo hello 557\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask558\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask558\",\"eTag\":\"0x8D7E09A8A2995CA\",\"creationTime\":\"2020-04-14T17:37:44.3781066Z\",\"lastModified\":\"2020-04-14T17:37:44.3781066Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3781066Z\",\"commandLine\":\"cmd /c echo hello 558\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask559\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask559\",\"eTag\":\"0x8D7E09A8A318514\",\"creationTime\":\"2020-04-14T17:37:44.4301076Z\",\"lastModified\":\"2020-04-14T17:37:44.4301076Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4301076Z\",\"commandLine\":\"cmd /c echo hello 559\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask56\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask56\",\"eTag\":\"0x8D7E09A8A1ADEA6\",\"creationTime\":\"2020-04-14T17:37:44.2816678Z\",\"lastModified\":\"2020-04-14T17:37:44.2816678Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2816678Z\",\"commandLine\":\"cmd /c echo hello 56\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask560\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask560\",\"eTag\":\"0x8D7E09A8A29BD50\",\"creationTime\":\"2020-04-14T17:37:44.3791184Z\",\"lastModified\":\"2020-04-14T17:37:44.3791184Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3791184Z\",\"commandLine\":\"cmd /c echo hello 560\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask561\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask561\",\"eTag\":\"0x8D7E09A8A285D66\",\"creationTime\":\"2020-04-14T17:37:44.3701094Z\",\"lastModified\":\"2020-04-14T17:37:44.3701094Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3701094Z\",\"commandLine\":\"cmd /c echo hello 561\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask562\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask562\",\"eTag\":\"0x8D7E09A8A288457\",\"creationTime\":\"2020-04-14T17:37:44.3711063Z\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3711063Z\",\"commandLine\":\"cmd /c echo hello 562\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask563\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask563\",\"eTag\":\"0x8D7E09A8A288457\",\"creationTime\":\"2020-04-14T17:37:44.3711063Z\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3711063Z\",\"commandLine\":\"cmd /c echo hello 563\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask564\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask564\",\"eTag\":\"0x8D7E09A8A2E50CB\",\"creationTime\":\"2020-04-14T17:37:44.4091083Z\",\"lastModified\":\"2020-04-14T17:37:44.4091083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4091083Z\",\"commandLine\":\"cmd /c echo hello 564\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask565\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask565\",\"eTag\":\"0x8D7E09A8A29BD50\",\"creationTime\":\"2020-04-14T17:37:44.3791184Z\",\"lastModified\":\"2020-04-14T17:37:44.3791184Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3791184Z\",\"commandLine\":\"cmd /c echo hello 565\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask566\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask566\",\"eTag\":\"0x8D7E09A8A288457\",\"creationTime\":\"2020-04-14T17:37:44.3711063Z\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3711063Z\",\"commandLine\":\"cmd /c echo hello 566\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask567\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask567\",\"eTag\":\"0x8D7E09A8A2989FD\",\"creationTime\":\"2020-04-14T17:37:44.3778045Z\",\"lastModified\":\"2020-04-14T17:37:44.3778045Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3778045Z\",\"commandLine\":\"cmd /c echo hello 567\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask568\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask568\",\"eTag\":\"0x8D7E09A8A288457\",\"creationTime\":\"2020-04-14T17:37:44.3711063Z\",\"lastModified\":\"2020-04-14T17:37:44.3711063Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3711063Z\",\"commandLine\":\"cmd /c echo hello 568\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask569\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask569\",\"eTag\":\"0x8D7E09A8A315DFA\",\"creationTime\":\"2020-04-14T17:37:44.4291066Z\",\"lastModified\":\"2020-04-14T17:37:44.4291066Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4291066Z\",\"commandLine\":\"cmd /c echo hello 569\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask57\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask57\",\"eTag\":\"0x8D7E09A8A1B059F\",\"creationTime\":\"2020-04-14T17:37:44.2826655Z\",\"lastModified\":\"2020-04-14T17:37:44.2826655Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2826655Z\",\"commandLine\":\"cmd /c echo hello 57\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask570\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask570\",\"eTag\":\"0x8D7E09A8A285D66\",\"creationTime\":\"2020-04-14T17:37:44.3701094Z\",\"lastModified\":\"2020-04-14T17:37:44.3701094Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3701094Z\",\"commandLine\":\"cmd /c echo hello 570\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask571\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask571\",\"eTag\":\"0x8D7E09A8A2E50CB\",\"creationTime\":\"2020-04-14T17:37:44.4091083Z\",\"lastModified\":\"2020-04-14T17:37:44.4091083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4091083Z\",\"commandLine\":\"cmd /c echo hello 571\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask572\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask572\",\"eTag\":\"0x8D7E09A8A2E50CB\",\"creationTime\":\"2020-04-14T17:37:44.4091083Z\",\"lastModified\":\"2020-04-14T17:37:44.4091083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4091083Z\",\"commandLine\":\"cmd /c echo hello 572\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask573\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask573\",\"eTag\":\"0x8D7E09A8A2E29B3\",\"creationTime\":\"2020-04-14T17:37:44.4081075Z\",\"lastModified\":\"2020-04-14T17:37:44.4081075Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4081075Z\",\"commandLine\":\"cmd /c echo hello 573\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask574\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask574\",\"eTag\":\"0x8D7E09A8A2E29B3\",\"creationTime\":\"2020-04-14T17:37:44.4081075Z\",\"lastModified\":\"2020-04-14T17:37:44.4081075Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4081075Z\",\"commandLine\":\"cmd /c echo hello 574\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask575\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask575\",\"eTag\":\"0x8D7E09A8A2E29B3\",\"creationTime\":\"2020-04-14T17:37:44.4081075Z\",\"lastModified\":\"2020-04-14T17:37:44.4081075Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4081075Z\",\"commandLine\":\"cmd /c echo hello 575\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask576\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask576\",\"eTag\":\"0x8D7E09A8A2B1C76\",\"creationTime\":\"2020-04-14T17:37:44.3881078Z\",\"lastModified\":\"2020-04-14T17:37:44.3881078Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3881078Z\",\"commandLine\":\"cmd /c echo hello 576\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask577\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask577\",\"eTag\":\"0x8D7E09A8A318514\",\"creationTime\":\"2020-04-14T17:37:44.4301076Z\",\"lastModified\":\"2020-04-14T17:37:44.4301076Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4301076Z\",\"commandLine\":\"cmd /c echo hello 577\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask578\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask578\",\"eTag\":\"0x8D7E09A8A315DFA\",\"creationTime\":\"2020-04-14T17:37:44.4291066Z\",\"lastModified\":\"2020-04-14T17:37:44.4291066Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4291066Z\",\"commandLine\":\"cmd /c echo hello 578\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask579\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask579\",\"eTag\":\"0x8D7E09A8A2FD814\",\"creationTime\":\"2020-04-14T17:37:44.4191252Z\",\"lastModified\":\"2020-04-14T17:37:44.4191252Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4191252Z\",\"commandLine\":\"cmd /c echo hello 579\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask58\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask58\",\"eTag\":\"0x8D7E09A8A1C3E2E\",\"creationTime\":\"2020-04-14T17:37:44.290667Z\",\"lastModified\":\"2020-04-14T17:37:44.290667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.290667Z\",\"commandLine\":\"cmd /c echo hello 58\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask580\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask580\",\"eTag\":\"0x8D7E09A8A32966C\",\"creationTime\":\"2020-04-14T17:37:44.4371052Z\",\"lastModified\":\"2020-04-14T17:37:44.4371052Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4371052Z\",\"commandLine\":\"cmd /c echo hello 580\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask581\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask581\",\"eTag\":\"0x8D7E09A8A330C14\",\"creationTime\":\"2020-04-14T17:37:44.4401172Z\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4401172Z\",\"commandLine\":\"cmd /c echo hello 581\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask582\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask582\",\"eTag\":\"0x8D7E09A8A32E498\",\"creationTime\":\"2020-04-14T17:37:44.4391064Z\",\"lastModified\":\"2020-04-14T17:37:44.4391064Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4391064Z\",\"commandLine\":\"cmd /c echo hello 582\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask583\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask583\",\"eTag\":\"0x8D7E09A8A341D1C\",\"creationTime\":\"2020-04-14T17:37:44.4471068Z\",\"lastModified\":\"2020-04-14T17:37:44.4471068Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4471068Z\",\"commandLine\":\"cmd /c echo hello 583\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask584\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask584\",\"eTag\":\"0x8D7E09A8A346B4D\",\"creationTime\":\"2020-04-14T17:37:44.4491085Z\",\"lastModified\":\"2020-04-14T17:37:44.4491085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4491085Z\",\"commandLine\":\"cmd /c echo hello 584\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask585\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask585\",\"eTag\":\"0x8D7E09A8A330C14\",\"creationTime\":\"2020-04-14T17:37:44.4401172Z\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4401172Z\",\"commandLine\":\"cmd /c echo hello 585\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask586\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask586\",\"eTag\":\"0x8D7E09A8A32E498\",\"creationTime\":\"2020-04-14T17:37:44.4391064Z\",\"lastModified\":\"2020-04-14T17:37:44.4391064Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4391064Z\",\"commandLine\":\"cmd /c echo hello 586\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask587\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask587\",\"eTag\":\"0x8D7E09A8A330C14\",\"creationTime\":\"2020-04-14T17:37:44.4401172Z\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4401172Z\",\"commandLine\":\"cmd /c echo hello 587\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask588\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask588\",\"eTag\":\"0x8D7E09A8A330C14\",\"creationTime\":\"2020-04-14T17:37:44.4401172Z\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4401172Z\",\"commandLine\":\"cmd /c echo hello 588\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask589\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask589\",\"eTag\":\"0x8D7E09A8A344439\",\"creationTime\":\"2020-04-14T17:37:44.4481081Z\",\"lastModified\":\"2020-04-14T17:37:44.4481081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4481081Z\",\"commandLine\":\"cmd /c echo hello 589\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask59\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask59\",\"eTag\":\"0x8D7E09A8A20F927\",\"creationTime\":\"2020-04-14T17:37:44.3216679Z\",\"lastModified\":\"2020-04-14T17:37:44.3216679Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3216679Z\",\"commandLine\":\"cmd /c echo hello 59\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask590\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask590\",\"eTag\":\"0x8D7E09A8A08C752\",\"creationTime\":\"2020-04-14T17:37:44.1631058Z\",\"lastModified\":\"2020-04-14T17:37:44.1631058Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1631058Z\",\"commandLine\":\"cmd /c echo hello 590\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask591\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask591\",\"eTag\":\"0x8D7E09A8A341D1C\",\"creationTime\":\"2020-04-14T17:37:44.4471068Z\",\"lastModified\":\"2020-04-14T17:37:44.4471068Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4471068Z\",\"commandLine\":\"cmd /c echo hello 591\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask592\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask592\",\"eTag\":\"0x8D7E09A8A330C14\",\"creationTime\":\"2020-04-14T17:37:44.4401172Z\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4401172Z\",\"commandLine\":\"cmd /c echo hello 592\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask593\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask593\",\"eTag\":\"0x8D7E09A8A330C14\",\"creationTime\":\"2020-04-14T17:37:44.4401172Z\",\"lastModified\":\"2020-04-14T17:37:44.4401172Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4401172Z\",\"commandLine\":\"cmd /c echo hello 593\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask594\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask594\",\"eTag\":\"0x8D7E09A8A34925B\",\"creationTime\":\"2020-04-14T17:37:44.4501083Z\",\"lastModified\":\"2020-04-14T17:37:44.4501083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4501083Z\",\"commandLine\":\"cmd /c echo hello 594\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask595\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask595\",\"eTag\":\"0x8D7E09A8A344439\",\"creationTime\":\"2020-04-14T17:37:44.4481081Z\",\"lastModified\":\"2020-04-14T17:37:44.4481081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4481081Z\",\"commandLine\":\"cmd /c echo hello 595\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask596\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask596\",\"eTag\":\"0x8D7E09A8A344439\",\"creationTime\":\"2020-04-14T17:37:44.4481081Z\",\"lastModified\":\"2020-04-14T17:37:44.4481081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4481081Z\",\"commandLine\":\"cmd /c echo hello 596\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask597\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask597\",\"eTag\":\"0x8D7E09A8A34925B\",\"creationTime\":\"2020-04-14T17:37:44.4501083Z\",\"lastModified\":\"2020-04-14T17:37:44.4501083Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4501083Z\",\"commandLine\":\"cmd /c echo hello 597\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask598\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask598\",\"eTag\":\"0x8D7E09A8A346B4D\",\"creationTime\":\"2020-04-14T17:37:44.4491085Z\",\"lastModified\":\"2020-04-14T17:37:44.4491085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4491085Z\",\"commandLine\":\"cmd /c echo hello 598\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask599\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask599\",\"eTag\":\"0x8D7E09A8A344439\",\"creationTime\":\"2020-04-14T17:37:44.4481081Z\",\"lastModified\":\"2020-04-14T17:37:44.4481081Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4481081Z\",\"commandLine\":\"cmd /c echo hello 599\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask6\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask6\",\"eTag\":\"0x8D7E09A8A0310CE\",\"creationTime\":\"2020-04-14T17:37:44.1256654Z\",\"lastModified\":\"2020-04-14T17:37:44.1256654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1256654Z\",\"commandLine\":\"cmd /c echo hello 6\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask60\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask60\",\"eTag\":\"0x8D7E09A8A1DF334\",\"creationTime\":\"2020-04-14T17:37:44.3018548Z\",\"lastModified\":\"2020-04-14T17:37:44.3018548Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3018548Z\",\"commandLine\":\"cmd /c echo hello 60\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask600\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask600\",\"eTag\":\"0x8D7E09A898D79AE\",\"creationTime\":\"2020-04-14T17:37:43.3550254Z\",\"lastModified\":\"2020-04-14T17:37:43.3550254Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-04-14T17:37:43.978445Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-04-14T17:37:43.916687Z\",\"commandLine\":\"cmd /c echo hello 600\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-04-14T17:37:43.953313Z\",\"endTime\":\"2020-04-14T17:37:43.978445Z\",\"failureInfo\":{\r\n \"category\":\"UserError\",\"code\":\"CommandProgramNotFound\",\"message\":\"The specified command program is not found\",\"details\":[\r\n {\r\n \"name\":\"CommandLine\",\"value\":\"cmd /c echo hello 600\"\r\n },{\r\n \"name\":\"Message\",\"value\":\"The system cannot find the file specified\"\r\n }\r\n ]\r\n },\"result\":\"failure\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_d54ecec09823ea75f67cafe3569211f5efeed041010ed5b49933ab25b725750e_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_d54ecec09823ea75f67cafe3569211f5efeed041010ed5b49933ab25b725750e_d\",\"poolId\":\"BatchUser-testpool\",\"nodeId\":\"tvmps_d54ecec09823ea75f67cafe3569211f5efeed041010ed5b49933ab25b725750e_d\",\"taskRootDirectory\":\"workitems/BatchUser-testAddMultiTasks/job-1/mytask600\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_d54ecec09823ea75f67cafe3569211f5efeed041010ed5b49933ab25b725750e_d/files/workitems/BatchUser-testAddMultiTasks/job-1/mytask600\"\r\n }\r\n },{\r\n \"id\":\"mytask601\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask601\",\"eTag\":\"0x8D7E09A898EB226\",\"creationTime\":\"2020-04-14T17:37:43.3630246Z\",\"lastModified\":\"2020-04-14T17:37:43.3630246Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-04-14T17:37:45.609398Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2020-04-14T17:37:45.553996Z\",\"commandLine\":\"cmd /c echo hello 601\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-04-14T17:37:45.584946Z\",\"endTime\":\"2020-04-14T17:37:45.609398Z\",\"failureInfo\":{\r\n \"category\":\"UserError\",\"code\":\"CommandProgramNotFound\",\"message\":\"The specified command program is not found\",\"details\":[\r\n {\r\n \"name\":\"CommandLine\",\"value\":\"cmd /c echo hello 601\"\r\n },{\r\n \"name\":\"Message\",\"value\":\"The system cannot find the file specified\"\r\n }\r\n ]\r\n },\"result\":\"failure\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_d54ecec09823ea75f67cafe3569211f5efeed041010ed5b49933ab25b725750e_d\",\"nodeUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_d54ecec09823ea75f67cafe3569211f5efeed041010ed5b49933ab25b725750e_d\",\"poolId\":\"BatchUser-testpool\",\"nodeId\":\"tvmps_d54ecec09823ea75f67cafe3569211f5efeed041010ed5b49933ab25b725750e_d\",\"taskRootDirectory\":\"workitems/BatchUser-testAddMultiTasks/job-1/mytask601\",\"taskRootDirectoryUrl\":\"https://sdktest2.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_d54ecec09823ea75f67cafe3569211f5efeed041010ed5b49933ab25b725750e_d/files/workitems/BatchUser-testAddMultiTasks/job-1/mytask601\"\r\n }\r\n },{\r\n \"id\":\"mytask602\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask602\",\"eTag\":\"0x8D7E09A89B30377\",\"creationTime\":\"2020-04-14T17:37:43.6010359Z\",\"lastModified\":\"2020-04-14T17:37:43.6010359Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6010359Z\",\"commandLine\":\"cmd /c echo hello 602\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask603\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask603\",\"eTag\":\"0x8D7E09A89B2E603\",\"creationTime\":\"2020-04-14T17:37:43.6002819Z\",\"lastModified\":\"2020-04-14T17:37:43.6002819Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6002819Z\",\"commandLine\":\"cmd /c echo hello 603\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask604\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask604\",\"eTag\":\"0x8D7E09A89B4D7F4\",\"creationTime\":\"2020-04-14T17:37:43.6130292Z\",\"lastModified\":\"2020-04-14T17:37:43.6130292Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6130292Z\",\"commandLine\":\"cmd /c echo hello 604\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask605\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask605\",\"eTag\":\"0x8D7E09A89B61074\",\"creationTime\":\"2020-04-14T17:37:43.6210292Z\",\"lastModified\":\"2020-04-14T17:37:43.6210292Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6210292Z\",\"commandLine\":\"cmd /c echo hello 605\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask606\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask606\",\"eTag\":\"0x8D7E09A89B5DDC4\",\"creationTime\":\"2020-04-14T17:37:43.6197316Z\",\"lastModified\":\"2020-04-14T17:37:43.6197316Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6197316Z\",\"commandLine\":\"cmd /c echo hello 606\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask607\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask607\",\"eTag\":\"0x8D7E09A89B77009\",\"creationTime\":\"2020-04-14T17:37:43.6300297Z\",\"lastModified\":\"2020-04-14T17:37:43.6300297Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6300297Z\",\"commandLine\":\"cmd /c echo hello 607\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask608\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask608\",\"eTag\":\"0x8D7E09A89B61074\",\"creationTime\":\"2020-04-14T17:37:43.6210292Z\",\"lastModified\":\"2020-04-14T17:37:43.6210292Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6210292Z\",\"commandLine\":\"cmd /c echo hello 608\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask609\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask609\",\"eTag\":\"0x8D7E09A89B61074\",\"creationTime\":\"2020-04-14T17:37:43.6210292Z\",\"lastModified\":\"2020-04-14T17:37:43.6210292Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6210292Z\",\"commandLine\":\"cmd /c echo hello 609\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask61\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask61\",\"eTag\":\"0x8D7E09A8A1F2467\",\"creationTime\":\"2020-04-14T17:37:44.3096679Z\",\"lastModified\":\"2020-04-14T17:37:44.3096679Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3096679Z\",\"commandLine\":\"cmd /c echo hello 61\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask610\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask610\",\"eTag\":\"0x8D7E09A89B77009\",\"creationTime\":\"2020-04-14T17:37:43.6300297Z\",\"lastModified\":\"2020-04-14T17:37:43.6300297Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6300297Z\",\"commandLine\":\"cmd /c echo hello 610\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask611\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask611\",\"eTag\":\"0x8D7E09A89C1D667\",\"creationTime\":\"2020-04-14T17:37:43.6981863Z\",\"lastModified\":\"2020-04-14T17:37:43.6981863Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6981863Z\",\"commandLine\":\"cmd /c echo hello 611\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask612\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask612\",\"eTag\":\"0x8D7E09A89C1D667\",\"creationTime\":\"2020-04-14T17:37:43.6981863Z\",\"lastModified\":\"2020-04-14T17:37:43.6981863Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6981863Z\",\"commandLine\":\"cmd /c echo hello 612\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask613\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask613\",\"eTag\":\"0x8D7E09A89C097D0\",\"creationTime\":\"2020-04-14T17:37:43.6900304Z\",\"lastModified\":\"2020-04-14T17:37:43.6900304Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6900304Z\",\"commandLine\":\"cmd /c echo hello 613\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask614\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask614\",\"eTag\":\"0x8D7E09A89C0BEE6\",\"creationTime\":\"2020-04-14T17:37:43.691031Z\",\"lastModified\":\"2020-04-14T17:37:43.691031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.691031Z\",\"commandLine\":\"cmd /c echo hello 614\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask615\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask615\",\"eTag\":\"0x8D7E09A89C0BEE6\",\"creationTime\":\"2020-04-14T17:37:43.691031Z\",\"lastModified\":\"2020-04-14T17:37:43.691031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.691031Z\",\"commandLine\":\"cmd /c echo hello 615\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask616\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask616\",\"eTag\":\"0x8D7E09A89C097D0\",\"creationTime\":\"2020-04-14T17:37:43.6900304Z\",\"lastModified\":\"2020-04-14T17:37:43.6900304Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.6900304Z\",\"commandLine\":\"cmd /c echo hello 616\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask617\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask617\",\"eTag\":\"0x8D7E09A89C0BEE6\",\"creationTime\":\"2020-04-14T17:37:43.691031Z\",\"lastModified\":\"2020-04-14T17:37:43.691031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.691031Z\",\"commandLine\":\"cmd /c echo hello 617\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask618\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask618\",\"eTag\":\"0x8D7E09A89C3A51D\",\"creationTime\":\"2020-04-14T17:37:43.7100317Z\",\"lastModified\":\"2020-04-14T17:37:43.7100317Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7100317Z\",\"commandLine\":\"cmd /c echo hello 618\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask619\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask619\",\"eTag\":\"0x8D7E09A89C552C9\",\"creationTime\":\"2020-04-14T17:37:43.7210313Z\",\"lastModified\":\"2020-04-14T17:37:43.7210313Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7210313Z\",\"commandLine\":\"cmd /c echo hello 619\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask62\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask62\",\"eTag\":\"0x8D7E09A8A212035\",\"creationTime\":\"2020-04-14T17:37:44.3226677Z\",\"lastModified\":\"2020-04-14T17:37:44.3226677Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3226677Z\",\"commandLine\":\"cmd /c echo hello 62\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask620\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask620\",\"eTag\":\"0x8D7E09A89CAE713\",\"creationTime\":\"2020-04-14T17:37:43.7575955Z\",\"lastModified\":\"2020-04-14T17:37:43.7575955Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7575955Z\",\"commandLine\":\"cmd /c echo hello 620\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask621\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask621\",\"eTag\":\"0x8D7E09A89CAF813\",\"creationTime\":\"2020-04-14T17:37:43.7580307Z\",\"lastModified\":\"2020-04-14T17:37:43.7580307Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7580307Z\",\"commandLine\":\"cmd /c echo hello 621\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask622\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask622\",\"eTag\":\"0x8D7E09A89CAF813\",\"creationTime\":\"2020-04-14T17:37:43.7580307Z\",\"lastModified\":\"2020-04-14T17:37:43.7580307Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7580307Z\",\"commandLine\":\"cmd /c echo hello 622\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask623\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask623\",\"eTag\":\"0x8D7E09A89CAF813\",\"creationTime\":\"2020-04-14T17:37:43.7580307Z\",\"lastModified\":\"2020-04-14T17:37:43.7580307Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7580307Z\",\"commandLine\":\"cmd /c echo hello 623\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask624\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask624\",\"eTag\":\"0x8D7E09A89CB1F23\",\"creationTime\":\"2020-04-14T17:37:43.7590307Z\",\"lastModified\":\"2020-04-14T17:37:43.7590307Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7590307Z\",\"commandLine\":\"cmd /c echo hello 624\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask625\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask625\",\"eTag\":\"0x8D7E09A89CAF813\",\"creationTime\":\"2020-04-14T17:37:43.7580307Z\",\"lastModified\":\"2020-04-14T17:37:43.7580307Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7580307Z\",\"commandLine\":\"cmd /c echo hello 625\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask626\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask626\",\"eTag\":\"0x8D7E09A89CB1F23\",\"creationTime\":\"2020-04-14T17:37:43.7590307Z\",\"lastModified\":\"2020-04-14T17:37:43.7590307Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7590307Z\",\"commandLine\":\"cmd /c echo hello 626\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask627\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask627\",\"eTag\":\"0x8D7E09A899C4985\",\"creationTime\":\"2020-04-14T17:37:43.4520965Z\",\"lastModified\":\"2020-04-14T17:37:43.4520965Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.4520965Z\",\"commandLine\":\"cmd /c echo hello 627\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask628\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask628\",\"eTag\":\"0x8D7E09A89CB1F23\",\"creationTime\":\"2020-04-14T17:37:43.7590307Z\",\"lastModified\":\"2020-04-14T17:37:43.7590307Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7590307Z\",\"commandLine\":\"cmd /c echo hello 628\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask629\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask629\",\"eTag\":\"0x8D7E09A89CB4636\",\"creationTime\":\"2020-04-14T17:37:43.760031Z\",\"lastModified\":\"2020-04-14T17:37:43.760031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.760031Z\",\"commandLine\":\"cmd /c echo hello 629\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask63\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask63\",\"eTag\":\"0x8D7E09A8A1DC4CE\",\"creationTime\":\"2020-04-14T17:37:44.300667Z\",\"lastModified\":\"2020-04-14T17:37:44.300667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.300667Z\",\"commandLine\":\"cmd /c echo hello 63\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask630\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask630\",\"eTag\":\"0x8D7E09A89CB4636\",\"creationTime\":\"2020-04-14T17:37:43.760031Z\",\"lastModified\":\"2020-04-14T17:37:43.760031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.760031Z\",\"commandLine\":\"cmd /c echo hello 630\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask631\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask631\",\"eTag\":\"0x8D7E09A89CB6D47\",\"creationTime\":\"2020-04-14T17:37:43.7610311Z\",\"lastModified\":\"2020-04-14T17:37:43.7610311Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7610311Z\",\"commandLine\":\"cmd /c echo hello 631\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask632\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask632\",\"eTag\":\"0x8D7E09A899C46E0\",\"creationTime\":\"2020-04-14T17:37:43.4520288Z\",\"lastModified\":\"2020-04-14T17:37:43.4520288Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.4520288Z\",\"commandLine\":\"cmd /c echo hello 632\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask633\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask633\",\"eTag\":\"0x8D7E09A89CC6D48\",\"creationTime\":\"2020-04-14T17:37:43.7675848Z\",\"lastModified\":\"2020-04-14T17:37:43.7675848Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7675848Z\",\"commandLine\":\"cmd /c echo hello 633\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask634\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask634\",\"eTag\":\"0x8D7E09A89CB4636\",\"creationTime\":\"2020-04-14T17:37:43.760031Z\",\"lastModified\":\"2020-04-14T17:37:43.760031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.760031Z\",\"commandLine\":\"cmd /c echo hello 634\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask635\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask635\",\"eTag\":\"0x8D7E09A89CC6D48\",\"creationTime\":\"2020-04-14T17:37:43.7675848Z\",\"lastModified\":\"2020-04-14T17:37:43.7675848Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7675848Z\",\"commandLine\":\"cmd /c echo hello 635\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask636\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask636\",\"eTag\":\"0x8D7E09A89CB6D47\",\"creationTime\":\"2020-04-14T17:37:43.7610311Z\",\"lastModified\":\"2020-04-14T17:37:43.7610311Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7610311Z\",\"commandLine\":\"cmd /c echo hello 636\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask637\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask637\",\"eTag\":\"0x8D7E09A89CB4636\",\"creationTime\":\"2020-04-14T17:37:43.760031Z\",\"lastModified\":\"2020-04-14T17:37:43.760031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.760031Z\",\"commandLine\":\"cmd /c echo hello 637\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask638\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask638\",\"eTag\":\"0x8D7E09A89CC658D\",\"creationTime\":\"2020-04-14T17:37:43.7673869Z\",\"lastModified\":\"2020-04-14T17:37:43.7673869Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7673869Z\",\"commandLine\":\"cmd /c echo hello 638\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask639\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask639\",\"eTag\":\"0x8D7E09A89CCA5C9\",\"creationTime\":\"2020-04-14T17:37:43.7690313Z\",\"lastModified\":\"2020-04-14T17:37:43.7690313Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7690313Z\",\"commandLine\":\"cmd /c echo hello 639\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask64\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask64\",\"eTag\":\"0x8D7E09A8A1C8C4D\",\"creationTime\":\"2020-04-14T17:37:44.2926669Z\",\"lastModified\":\"2020-04-14T17:37:44.2926669Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2926669Z\",\"commandLine\":\"cmd /c echo hello 64\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask640\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask640\",\"eTag\":\"0x8D7E09A89CC7EB9\",\"creationTime\":\"2020-04-14T17:37:43.7680313Z\",\"lastModified\":\"2020-04-14T17:37:43.7680313Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7680313Z\",\"commandLine\":\"cmd /c echo hello 640\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask641\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask641\",\"eTag\":\"0x8D7E09A89CCA5C9\",\"creationTime\":\"2020-04-14T17:37:43.7690313Z\",\"lastModified\":\"2020-04-14T17:37:43.7690313Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7690313Z\",\"commandLine\":\"cmd /c echo hello 641\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask642\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask642\",\"eTag\":\"0x8D7E09A89CCCCD8\",\"creationTime\":\"2020-04-14T17:37:43.7700312Z\",\"lastModified\":\"2020-04-14T17:37:43.7700312Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7700312Z\",\"commandLine\":\"cmd /c echo hello 642\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask643\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask643\",\"eTag\":\"0x8D7E09A89CC7EB9\",\"creationTime\":\"2020-04-14T17:37:43.7680313Z\",\"lastModified\":\"2020-04-14T17:37:43.7680313Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7680313Z\",\"commandLine\":\"cmd /c echo hello 643\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask644\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask644\",\"eTag\":\"0x8D7E09A89CC7EB9\",\"creationTime\":\"2020-04-14T17:37:43.7680313Z\",\"lastModified\":\"2020-04-14T17:37:43.7680313Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7680313Z\",\"commandLine\":\"cmd /c echo hello 644\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask645\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask645\",\"eTag\":\"0x8D7E09A89CCA5C9\",\"creationTime\":\"2020-04-14T17:37:43.7690313Z\",\"lastModified\":\"2020-04-14T17:37:43.7690313Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7690313Z\",\"commandLine\":\"cmd /c echo hello 645\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask646\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask646\",\"eTag\":\"0x8D7E09A89CCA5C9\",\"creationTime\":\"2020-04-14T17:37:43.7690313Z\",\"lastModified\":\"2020-04-14T17:37:43.7690313Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7690313Z\",\"commandLine\":\"cmd /c echo hello 646\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask647\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask647\",\"eTag\":\"0x8D7E09A89CCCCD8\",\"creationTime\":\"2020-04-14T17:37:43.7700312Z\",\"lastModified\":\"2020-04-14T17:37:43.7700312Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7700312Z\",\"commandLine\":\"cmd /c echo hello 647\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask648\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask648\",\"eTag\":\"0x8D7E09A89CE5372\",\"creationTime\":\"2020-04-14T17:37:43.7800306Z\",\"lastModified\":\"2020-04-14T17:37:43.7800306Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7800306Z\",\"commandLine\":\"cmd /c echo hello 648\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask649\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask649\",\"eTag\":\"0x8D7E09A89CCCCD8\",\"creationTime\":\"2020-04-14T17:37:43.7700312Z\",\"lastModified\":\"2020-04-14T17:37:43.7700312Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7700312Z\",\"commandLine\":\"cmd /c echo hello 649\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask65\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask65\",\"eTag\":\"0x8D7E09A8A1E12F1\",\"creationTime\":\"2020-04-14T17:37:44.3026673Z\",\"lastModified\":\"2020-04-14T17:37:44.3026673Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3026673Z\",\"commandLine\":\"cmd /c echo hello 65\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask650\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask650\",\"eTag\":\"0x8D7E09A89CF71FB\",\"creationTime\":\"2020-04-14T17:37:43.7873659Z\",\"lastModified\":\"2020-04-14T17:37:43.7873659Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7873659Z\",\"commandLine\":\"cmd /c echo hello 650\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask651\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask651\",\"eTag\":\"0x8D7E09A89CE5372\",\"creationTime\":\"2020-04-14T17:37:43.7800306Z\",\"lastModified\":\"2020-04-14T17:37:43.7800306Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7800306Z\",\"commandLine\":\"cmd /c echo hello 651\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask652\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask652\",\"eTag\":\"0x8D7E09A89CF6F5C\",\"creationTime\":\"2020-04-14T17:37:43.7872988Z\",\"lastModified\":\"2020-04-14T17:37:43.7872988Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7872988Z\",\"commandLine\":\"cmd /c echo hello 652\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask653\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask653\",\"eTag\":\"0x8D7E09A89CF71FB\",\"creationTime\":\"2020-04-14T17:37:43.7873659Z\",\"lastModified\":\"2020-04-14T17:37:43.7873659Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7873659Z\",\"commandLine\":\"cmd /c echo hello 653\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask654\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask654\",\"eTag\":\"0x8D7E09A89CF71FB\",\"creationTime\":\"2020-04-14T17:37:43.7873659Z\",\"lastModified\":\"2020-04-14T17:37:43.7873659Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7873659Z\",\"commandLine\":\"cmd /c echo hello 654\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask655\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask655\",\"eTag\":\"0x8D7E09A89CF8BFC\",\"creationTime\":\"2020-04-14T17:37:43.7880316Z\",\"lastModified\":\"2020-04-14T17:37:43.7880316Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7880316Z\",\"commandLine\":\"cmd /c echo hello 655\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask656\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask656\",\"eTag\":\"0x8D7E09A89CFB373\",\"creationTime\":\"2020-04-14T17:37:43.7890419Z\",\"lastModified\":\"2020-04-14T17:37:43.7890419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7890419Z\",\"commandLine\":\"cmd /c echo hello 656\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask657\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask657\",\"eTag\":\"0x8D7E09A89CF8BFC\",\"creationTime\":\"2020-04-14T17:37:43.7880316Z\",\"lastModified\":\"2020-04-14T17:37:43.7880316Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7880316Z\",\"commandLine\":\"cmd /c echo hello 657\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask658\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask658\",\"eTag\":\"0x8D7E09A89D27942\",\"creationTime\":\"2020-04-14T17:37:43.807213Z\",\"lastModified\":\"2020-04-14T17:37:43.807213Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.807213Z\",\"commandLine\":\"cmd /c echo hello 658\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask659\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask659\",\"eTag\":\"0x8D7E09A89CFB373\",\"creationTime\":\"2020-04-14T17:37:43.7890419Z\",\"lastModified\":\"2020-04-14T17:37:43.7890419Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.7890419Z\",\"commandLine\":\"cmd /c echo hello 659\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask66\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask66\",\"eTag\":\"0x8D7E09A8A1C8C4D\",\"creationTime\":\"2020-04-14T17:37:44.2926669Z\",\"lastModified\":\"2020-04-14T17:37:44.2926669Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2926669Z\",\"commandLine\":\"cmd /c echo hello 66\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask660\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask660\",\"eTag\":\"0x8D7E09A89D2993E\",\"creationTime\":\"2020-04-14T17:37:43.8080318Z\",\"lastModified\":\"2020-04-14T17:37:43.8080318Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8080318Z\",\"commandLine\":\"cmd /c echo hello 660\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask661\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask661\",\"eTag\":\"0x8D7E09A89D2C042\",\"creationTime\":\"2020-04-14T17:37:43.8090306Z\",\"lastModified\":\"2020-04-14T17:37:43.8090306Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8090306Z\",\"commandLine\":\"cmd /c echo hello 661\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask662\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask662\",\"eTag\":\"0x8D7E09A89D2993E\",\"creationTime\":\"2020-04-14T17:37:43.8080318Z\",\"lastModified\":\"2020-04-14T17:37:43.8080318Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8080318Z\",\"commandLine\":\"cmd /c echo hello 662\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask663\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask663\",\"eTag\":\"0x8D7E09A89D2C042\",\"creationTime\":\"2020-04-14T17:37:43.8090306Z\",\"lastModified\":\"2020-04-14T17:37:43.8090306Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8090306Z\",\"commandLine\":\"cmd /c echo hello 663\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask664\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask664\",\"eTag\":\"0x8D7E09A89D27942\",\"creationTime\":\"2020-04-14T17:37:43.807213Z\",\"lastModified\":\"2020-04-14T17:37:43.807213Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.807213Z\",\"commandLine\":\"cmd /c echo hello 664\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask665\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask665\",\"eTag\":\"0x8D7E09A89D27942\",\"creationTime\":\"2020-04-14T17:37:43.807213Z\",\"lastModified\":\"2020-04-14T17:37:43.807213Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.807213Z\",\"commandLine\":\"cmd /c echo hello 665\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask666\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask666\",\"eTag\":\"0x8D7E09A89D2993E\",\"creationTime\":\"2020-04-14T17:37:43.8080318Z\",\"lastModified\":\"2020-04-14T17:37:43.8080318Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8080318Z\",\"commandLine\":\"cmd /c echo hello 666\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask667\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask667\",\"eTag\":\"0x8D7E09A89D2993E\",\"creationTime\":\"2020-04-14T17:37:43.8080318Z\",\"lastModified\":\"2020-04-14T17:37:43.8080318Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8080318Z\",\"commandLine\":\"cmd /c echo hello 667\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask668\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask668\",\"eTag\":\"0x8D7E09A89D27942\",\"creationTime\":\"2020-04-14T17:37:43.807213Z\",\"lastModified\":\"2020-04-14T17:37:43.807213Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.807213Z\",\"commandLine\":\"cmd /c echo hello 668\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask669\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask669\",\"eTag\":\"0x8D7E09A89D3F8C0\",\"creationTime\":\"2020-04-14T17:37:43.8170304Z\",\"lastModified\":\"2020-04-14T17:37:43.8170304Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8170304Z\",\"commandLine\":\"cmd /c echo hello 669\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask67\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask67\",\"eTag\":\"0x8D7E09A8A1E12F1\",\"creationTime\":\"2020-04-14T17:37:44.3026673Z\",\"lastModified\":\"2020-04-14T17:37:44.3026673Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3026673Z\",\"commandLine\":\"cmd /c echo hello 67\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask670\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask670\",\"eTag\":\"0x8D7E09A89D88CA0\",\"creationTime\":\"2020-04-14T17:37:43.8470304Z\",\"lastModified\":\"2020-04-14T17:37:43.8470304Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8470304Z\",\"commandLine\":\"cmd /c echo hello 670\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask671\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask671\",\"eTag\":\"0x8D7E09A89D2C042\",\"creationTime\":\"2020-04-14T17:37:43.8090306Z\",\"lastModified\":\"2020-04-14T17:37:43.8090306Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8090306Z\",\"commandLine\":\"cmd /c echo hello 671\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask672\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask672\",\"eTag\":\"0x8D7E09A89D46DF6\",\"creationTime\":\"2020-04-14T17:37:43.820031Z\",\"lastModified\":\"2020-04-14T17:37:43.820031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.820031Z\",\"commandLine\":\"cmd /c echo hello 672\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask673\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask673\",\"eTag\":\"0x8D7E09A89D3F8C0\",\"creationTime\":\"2020-04-14T17:37:43.8170304Z\",\"lastModified\":\"2020-04-14T17:37:43.8170304Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8170304Z\",\"commandLine\":\"cmd /c echo hello 673\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask674\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask674\",\"eTag\":\"0x8D7E09A89D446E8\",\"creationTime\":\"2020-04-14T17:37:43.8190312Z\",\"lastModified\":\"2020-04-14T17:37:43.8190312Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8190312Z\",\"commandLine\":\"cmd /c echo hello 674\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask675\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask675\",\"eTag\":\"0x8D7E09A89D41FE1\",\"creationTime\":\"2020-04-14T17:37:43.8180321Z\",\"lastModified\":\"2020-04-14T17:37:43.8180321Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8180321Z\",\"commandLine\":\"cmd /c echo hello 675\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask676\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask676\",\"eTag\":\"0x8D7E09A89D41FE1\",\"creationTime\":\"2020-04-14T17:37:43.8180321Z\",\"lastModified\":\"2020-04-14T17:37:43.8180321Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8180321Z\",\"commandLine\":\"cmd /c echo hello 676\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask677\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask677\",\"eTag\":\"0x8D7E09A89D446E8\",\"creationTime\":\"2020-04-14T17:37:43.8190312Z\",\"lastModified\":\"2020-04-14T17:37:43.8190312Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8190312Z\",\"commandLine\":\"cmd /c echo hello 677\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask678\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask678\",\"eTag\":\"0x8D7E09A89D41FE1\",\"creationTime\":\"2020-04-14T17:37:43.8180321Z\",\"lastModified\":\"2020-04-14T17:37:43.8180321Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8180321Z\",\"commandLine\":\"cmd /c echo hello 678\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask679\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask679\",\"eTag\":\"0x8D7E09A89D578B7\",\"creationTime\":\"2020-04-14T17:37:43.8268599Z\",\"lastModified\":\"2020-04-14T17:37:43.8268599Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8268599Z\",\"commandLine\":\"cmd /c echo hello 679\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask68\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask68\",\"eTag\":\"0x8D7E09A8A1DF334\",\"creationTime\":\"2020-04-14T17:37:44.3018548Z\",\"lastModified\":\"2020-04-14T17:37:44.3018548Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3018548Z\",\"commandLine\":\"cmd /c echo hello 68\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask680\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask680\",\"eTag\":\"0x8D7E09A89D446E8\",\"creationTime\":\"2020-04-14T17:37:43.8190312Z\",\"lastModified\":\"2020-04-14T17:37:43.8190312Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8190312Z\",\"commandLine\":\"cmd /c echo hello 680\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask681\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask681\",\"eTag\":\"0x8D7E09A89D57F6A\",\"creationTime\":\"2020-04-14T17:37:43.8270314Z\",\"lastModified\":\"2020-04-14T17:37:43.8270314Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8270314Z\",\"commandLine\":\"cmd /c echo hello 681\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask682\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask682\",\"eTag\":\"0x8D7E09A89D41FE1\",\"creationTime\":\"2020-04-14T17:37:43.8180321Z\",\"lastModified\":\"2020-04-14T17:37:43.8180321Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8180321Z\",\"commandLine\":\"cmd /c echo hello 682\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask683\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask683\",\"eTag\":\"0x8D7E09A89D5A687\",\"creationTime\":\"2020-04-14T17:37:43.8280327Z\",\"lastModified\":\"2020-04-14T17:37:43.8280327Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8280327Z\",\"commandLine\":\"cmd /c echo hello 683\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask684\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask684\",\"eTag\":\"0x8D7E09A89D46DF6\",\"creationTime\":\"2020-04-14T17:37:43.820031Z\",\"lastModified\":\"2020-04-14T17:37:43.820031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.820031Z\",\"commandLine\":\"cmd /c echo hello 684\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask685\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask685\",\"eTag\":\"0x8D7E09A89D46DF6\",\"creationTime\":\"2020-04-14T17:37:43.820031Z\",\"lastModified\":\"2020-04-14T17:37:43.820031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.820031Z\",\"commandLine\":\"cmd /c echo hello 685\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask686\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask686\",\"eTag\":\"0x8D7E09A89D3F8C0\",\"creationTime\":\"2020-04-14T17:37:43.8170304Z\",\"lastModified\":\"2020-04-14T17:37:43.8170304Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8170304Z\",\"commandLine\":\"cmd /c echo hello 686\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask687\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask687\",\"eTag\":\"0x8D7E09A89D5CD96\",\"creationTime\":\"2020-04-14T17:37:43.8290326Z\",\"lastModified\":\"2020-04-14T17:37:43.8290326Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8290326Z\",\"commandLine\":\"cmd /c echo hello 687\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask688\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask688\",\"eTag\":\"0x8D7E09A89D5A687\",\"creationTime\":\"2020-04-14T17:37:43.8280327Z\",\"lastModified\":\"2020-04-14T17:37:43.8280327Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8280327Z\",\"commandLine\":\"cmd /c echo hello 688\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask689\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask689\",\"eTag\":\"0x8D7E09A89D57F6A\",\"creationTime\":\"2020-04-14T17:37:43.8270314Z\",\"lastModified\":\"2020-04-14T17:37:43.8270314Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8270314Z\",\"commandLine\":\"cmd /c echo hello 689\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask69\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask69\",\"eTag\":\"0x8D7E09A8A1C8C4D\",\"creationTime\":\"2020-04-14T17:37:44.2926669Z\",\"lastModified\":\"2020-04-14T17:37:44.2926669Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2926669Z\",\"commandLine\":\"cmd /c echo hello 69\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask690\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask690\",\"eTag\":\"0x8D7E09A89D46DF6\",\"creationTime\":\"2020-04-14T17:37:43.820031Z\",\"lastModified\":\"2020-04-14T17:37:43.820031Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.820031Z\",\"commandLine\":\"cmd /c echo hello 690\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask691\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask691\",\"eTag\":\"0x8D7E09A89D5A687\",\"creationTime\":\"2020-04-14T17:37:43.8280327Z\",\"lastModified\":\"2020-04-14T17:37:43.8280327Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8280327Z\",\"commandLine\":\"cmd /c echo hello 691\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask692\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask692\",\"eTag\":\"0x8D7E09A89D5A687\",\"creationTime\":\"2020-04-14T17:37:43.8280327Z\",\"lastModified\":\"2020-04-14T17:37:43.8280327Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8280327Z\",\"commandLine\":\"cmd /c echo hello 692\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask693\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask693\",\"eTag\":\"0x8D7E09A89D88CA0\",\"creationTime\":\"2020-04-14T17:37:43.8470304Z\",\"lastModified\":\"2020-04-14T17:37:43.8470304Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8470304Z\",\"commandLine\":\"cmd /c echo hello 693\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask694\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask694\",\"eTag\":\"0x8D7E09A89D5CD96\",\"creationTime\":\"2020-04-14T17:37:43.8290326Z\",\"lastModified\":\"2020-04-14T17:37:43.8290326Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8290326Z\",\"commandLine\":\"cmd /c echo hello 694\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask695\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask695\",\"eTag\":\"0x8D7E09A89D8B3C1\",\"creationTime\":\"2020-04-14T17:37:43.8480321Z\",\"lastModified\":\"2020-04-14T17:37:43.8480321Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8480321Z\",\"commandLine\":\"cmd /c echo hello 695\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask696\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask696\",\"eTag\":\"0x8D7E09A89D57F6A\",\"creationTime\":\"2020-04-14T17:37:43.8270314Z\",\"lastModified\":\"2020-04-14T17:37:43.8270314Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8270314Z\",\"commandLine\":\"cmd /c echo hello 696\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask697\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask697\",\"eTag\":\"0x8D7E09A89D5CD96\",\"creationTime\":\"2020-04-14T17:37:43.8290326Z\",\"lastModified\":\"2020-04-14T17:37:43.8290326Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8290326Z\",\"commandLine\":\"cmd /c echo hello 697\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask698\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask698\",\"eTag\":\"0x8D7E09A89DA3A58\",\"creationTime\":\"2020-04-14T17:37:43.8580312Z\",\"lastModified\":\"2020-04-14T17:37:43.8580312Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8580312Z\",\"commandLine\":\"cmd /c echo hello 698\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask699\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask699\",\"eTag\":\"0x8D7E09A89D88CA0\",\"creationTime\":\"2020-04-14T17:37:43.8470304Z\",\"lastModified\":\"2020-04-14T17:37:43.8470304Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8470304Z\",\"commandLine\":\"cmd /c echo hello 699\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask7\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask7\",\"eTag\":\"0x8D7E09A8A0310CE\",\"creationTime\":\"2020-04-14T17:37:44.1256654Z\",\"lastModified\":\"2020-04-14T17:37:44.1256654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1256654Z\",\"commandLine\":\"cmd /c echo hello 7\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask70\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask70\",\"eTag\":\"0x8D7E09A8A20F927\",\"creationTime\":\"2020-04-14T17:37:44.3216679Z\",\"lastModified\":\"2020-04-14T17:37:44.3216679Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3216679Z\",\"commandLine\":\"cmd /c echo hello 70\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask700\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask700\",\"eTag\":\"0x8D7E09A89D5CBDC\",\"creationTime\":\"2020-04-14T17:37:43.8289884Z\",\"lastModified\":\"2020-04-14T17:37:43.8289884Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8289884Z\",\"commandLine\":\"cmd /c echo hello 700\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask701\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask701\",\"eTag\":\"0x8D7E09A8A070F6F\",\"creationTime\":\"2020-04-14T17:37:44.1518447Z\",\"lastModified\":\"2020-04-14T17:37:44.1518447Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1518447Z\",\"commandLine\":\"cmd /c echo hello 701\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask702\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask702\",\"eTag\":\"0x8D7E09A89D9BD00\",\"creationTime\":\"2020-04-14T17:37:43.8548224Z\",\"lastModified\":\"2020-04-14T17:37:43.8548224Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8548224Z\",\"commandLine\":\"cmd /c echo hello 702\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask703\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask703\",\"eTag\":\"0x8D7E09A8A084713\",\"creationTime\":\"2020-04-14T17:37:44.1598227Z\",\"lastModified\":\"2020-04-14T17:37:44.1598227Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1598227Z\",\"commandLine\":\"cmd /c echo hello 703\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask704\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask704\",\"eTag\":\"0x8D7E09A8A07D1C6\",\"creationTime\":\"2020-04-14T17:37:44.1568198Z\",\"lastModified\":\"2020-04-14T17:37:44.1568198Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1568198Z\",\"commandLine\":\"cmd /c echo hello 704\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask705\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask705\",\"eTag\":\"0x8D7E09A8A081FEE\",\"creationTime\":\"2020-04-14T17:37:44.1588206Z\",\"lastModified\":\"2020-04-14T17:37:44.1588206Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1588206Z\",\"commandLine\":\"cmd /c echo hello 705\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask706\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask706\",\"eTag\":\"0x8D7E09A8A09301F\",\"creationTime\":\"2020-04-14T17:37:44.1657887Z\",\"lastModified\":\"2020-04-14T17:37:44.1657887Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1657887Z\",\"commandLine\":\"cmd /c echo hello 706\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask707\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask707\",\"eTag\":\"0x8D7E09A8A084713\",\"creationTime\":\"2020-04-14T17:37:44.1598227Z\",\"lastModified\":\"2020-04-14T17:37:44.1598227Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1598227Z\",\"commandLine\":\"cmd /c echo hello 707\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask708\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask708\",\"eTag\":\"0x8D7E09A8A0AB7F1\",\"creationTime\":\"2020-04-14T17:37:44.1758193Z\",\"lastModified\":\"2020-04-14T17:37:44.1758193Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1758193Z\",\"commandLine\":\"cmd /c echo hello 708\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask709\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask709\",\"eTag\":\"0x8D7E09A8A0B2D26\",\"creationTime\":\"2020-04-14T17:37:44.1788198Z\",\"lastModified\":\"2020-04-14T17:37:44.1788198Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1788198Z\",\"commandLine\":\"cmd /c echo hello 709\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask71\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask71\",\"eTag\":\"0x8D7E09A8A212035\",\"creationTime\":\"2020-04-14T17:37:44.3226677Z\",\"lastModified\":\"2020-04-14T17:37:44.3226677Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3226677Z\",\"commandLine\":\"cmd /c echo hello 71\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask710\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask710\",\"eTag\":\"0x8D7E09A89E507A7\",\"creationTime\":\"2020-04-14T17:37:43.9288231Z\",\"lastModified\":\"2020-04-14T17:37:43.9288231Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.9288231Z\",\"commandLine\":\"cmd /c echo hello 710\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask711\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask711\",\"eTag\":\"0x8D7E09A8A116EAA\",\"creationTime\":\"2020-04-14T17:37:44.2198186Z\",\"lastModified\":\"2020-04-14T17:37:44.2198186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2198186Z\",\"commandLine\":\"cmd /c echo hello 711\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask712\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask712\",\"eTag\":\"0x8D7E09A8A116EAA\",\"creationTime\":\"2020-04-14T17:37:44.2198186Z\",\"lastModified\":\"2020-04-14T17:37:44.2198186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2198186Z\",\"commandLine\":\"cmd /c echo hello 712\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask713\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask713\",\"eTag\":\"0x8D7E09A8A1195CA\",\"creationTime\":\"2020-04-14T17:37:44.2208202Z\",\"lastModified\":\"2020-04-14T17:37:44.2208202Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2208202Z\",\"commandLine\":\"cmd /c echo hello 713\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask714\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask714\",\"eTag\":\"0x8D7E09A8A116EAA\",\"creationTime\":\"2020-04-14T17:37:44.2198186Z\",\"lastModified\":\"2020-04-14T17:37:44.2198186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2198186Z\",\"commandLine\":\"cmd /c echo hello 714\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask715\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask715\",\"eTag\":\"0x8D7E09A8A123204\",\"creationTime\":\"2020-04-14T17:37:44.2248196Z\",\"lastModified\":\"2020-04-14T17:37:44.2248196Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2248196Z\",\"commandLine\":\"cmd /c echo hello 715\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask716\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask716\",\"eTag\":\"0x8D7E09A8A123204\",\"creationTime\":\"2020-04-14T17:37:44.2248196Z\",\"lastModified\":\"2020-04-14T17:37:44.2248196Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2248196Z\",\"commandLine\":\"cmd /c echo hello 716\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask717\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask717\",\"eTag\":\"0x8D7E09A8A19AC19\",\"creationTime\":\"2020-04-14T17:37:44.2738201Z\",\"lastModified\":\"2020-04-14T17:37:44.2738201Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2738201Z\",\"commandLine\":\"cmd /c echo hello 717\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask718\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask718\",\"eTag\":\"0x8D7E09A8A1A2139\",\"creationTime\":\"2020-04-14T17:37:44.2768185Z\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2768185Z\",\"commandLine\":\"cmd /c echo hello 718\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask719\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask719\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"creationTime\":\"2020-04-14T17:37:44.2868195Z\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2868195Z\",\"commandLine\":\"cmd /c echo hello 719\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask72\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask72\",\"eTag\":\"0x8D7E09A8A22320C\",\"creationTime\":\"2020-04-14T17:37:44.329678Z\",\"lastModified\":\"2020-04-14T17:37:44.329678Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.329678Z\",\"commandLine\":\"cmd /c echo hello 72\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask720\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask720\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"creationTime\":\"2020-04-14T17:37:44.2868195Z\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2868195Z\",\"commandLine\":\"cmd /c echo hello 720\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask721\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask721\",\"eTag\":\"0x8D7E09A8A1A2139\",\"creationTime\":\"2020-04-14T17:37:44.2768185Z\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2768185Z\",\"commandLine\":\"cmd /c echo hello 721\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask722\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask722\",\"eTag\":\"0x8D7E09A8A1A2139\",\"creationTime\":\"2020-04-14T17:37:44.2768185Z\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2768185Z\",\"commandLine\":\"cmd /c echo hello 722\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask723\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask723\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"creationTime\":\"2020-04-14T17:37:44.2868195Z\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2868195Z\",\"commandLine\":\"cmd /c echo hello 723\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask724\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask724\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"creationTime\":\"2020-04-14T17:37:44.2868195Z\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2868195Z\",\"commandLine\":\"cmd /c echo hello 724\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask725\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask725\",\"eTag\":\"0x8D7E09A8A1A2139\",\"creationTime\":\"2020-04-14T17:37:44.2768185Z\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2768185Z\",\"commandLine\":\"cmd /c echo hello 725\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask726\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask726\",\"eTag\":\"0x8D7E09A8A1A2139\",\"creationTime\":\"2020-04-14T17:37:44.2768185Z\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2768185Z\",\"commandLine\":\"cmd /c echo hello 726\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask727\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask727\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"creationTime\":\"2020-04-14T17:37:44.2868195Z\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2868195Z\",\"commandLine\":\"cmd /c echo hello 727\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask728\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask728\",\"eTag\":\"0x8D7E09A8A1B80C9\",\"creationTime\":\"2020-04-14T17:37:44.2858185Z\",\"lastModified\":\"2020-04-14T17:37:44.2858185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2858185Z\",\"commandLine\":\"cmd /c echo hello 728\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask729\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask729\",\"eTag\":\"0x8D7E09A8A1A2139\",\"creationTime\":\"2020-04-14T17:37:44.2768185Z\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2768185Z\",\"commandLine\":\"cmd /c echo hello 729\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask73\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask73\",\"eTag\":\"0x8D7E09A8A1F4B5D\",\"creationTime\":\"2020-04-14T17:37:44.3106653Z\",\"lastModified\":\"2020-04-14T17:37:44.3106653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3106653Z\",\"commandLine\":\"cmd /c echo hello 73\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask730\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask730\",\"eTag\":\"0x8D7E09A8A1A2139\",\"creationTime\":\"2020-04-14T17:37:44.2768185Z\",\"lastModified\":\"2020-04-14T17:37:44.2768185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2768185Z\",\"commandLine\":\"cmd /c echo hello 730\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask731\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask731\",\"eTag\":\"0x8D7E09A8A1B80C9\",\"creationTime\":\"2020-04-14T17:37:44.2858185Z\",\"lastModified\":\"2020-04-14T17:37:44.2858185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2858185Z\",\"commandLine\":\"cmd /c echo hello 731\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask732\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask732\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"creationTime\":\"2020-04-14T17:37:44.2968308Z\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2968308Z\",\"commandLine\":\"cmd /c echo hello 732\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask733\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask733\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"creationTime\":\"2020-04-14T17:37:44.2868195Z\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2868195Z\",\"commandLine\":\"cmd /c echo hello 733\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask734\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask734\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"creationTime\":\"2020-04-14T17:37:44.2968308Z\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2968308Z\",\"commandLine\":\"cmd /c echo hello 734\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask735\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask735\",\"eTag\":\"0x8D7E09A8A1BA7E3\",\"creationTime\":\"2020-04-14T17:37:44.2868195Z\",\"lastModified\":\"2020-04-14T17:37:44.2868195Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2868195Z\",\"commandLine\":\"cmd /c echo hello 735\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask736\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask736\",\"eTag\":\"0x8D7E09A8A1D078A\",\"creationTime\":\"2020-04-14T17:37:44.2958218Z\",\"lastModified\":\"2020-04-14T17:37:44.2958218Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2958218Z\",\"commandLine\":\"cmd /c echo hello 736\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask737\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask737\",\"eTag\":\"0x8D7E09A8A1D078A\",\"creationTime\":\"2020-04-14T17:37:44.2958218Z\",\"lastModified\":\"2020-04-14T17:37:44.2958218Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2958218Z\",\"commandLine\":\"cmd /c echo hello 737\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask738\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask738\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"creationTime\":\"2020-04-14T17:37:44.2968308Z\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2968308Z\",\"commandLine\":\"cmd /c echo hello 738\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask739\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask739\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"creationTime\":\"2020-04-14T17:37:44.2968308Z\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2968308Z\",\"commandLine\":\"cmd /c echo hello 739\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask74\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask74\",\"eTag\":\"0x8D7E09A8A216E48\",\"creationTime\":\"2020-04-14T17:37:44.3246664Z\",\"lastModified\":\"2020-04-14T17:37:44.3246664Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3246664Z\",\"commandLine\":\"cmd /c echo hello 74\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask740\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask740\",\"eTag\":\"0x8D7E09A8A2014B4\",\"creationTime\":\"2020-04-14T17:37:44.3158196Z\",\"lastModified\":\"2020-04-14T17:37:44.3158196Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3158196Z\",\"commandLine\":\"cmd /c echo hello 740\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask741\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask741\",\"eTag\":\"0x8D7E09A8A1CE065\",\"creationTime\":\"2020-04-14T17:37:44.2948197Z\",\"lastModified\":\"2020-04-14T17:37:44.2948197Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2948197Z\",\"commandLine\":\"cmd /c echo hello 741\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask742\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask742\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"creationTime\":\"2020-04-14T17:37:44.2968308Z\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2968308Z\",\"commandLine\":\"cmd /c echo hello 742\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask743\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask743\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"creationTime\":\"2020-04-14T17:37:44.2968308Z\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2968308Z\",\"commandLine\":\"cmd /c echo hello 743\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask744\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask744\",\"eTag\":\"0x8D7E09A8A1D2EF4\",\"creationTime\":\"2020-04-14T17:37:44.2968308Z\",\"lastModified\":\"2020-04-14T17:37:44.2968308Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2968308Z\",\"commandLine\":\"cmd /c echo hello 744\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask745\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask745\",\"eTag\":\"0x8D7E09A8A1FAFC9\",\"creationTime\":\"2020-04-14T17:37:44.3132361Z\",\"lastModified\":\"2020-04-14T17:37:44.3132361Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3132361Z\",\"commandLine\":\"cmd /c echo hello 745\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask746\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask746\",\"eTag\":\"0x8D7E09A8A1FEDA5\",\"creationTime\":\"2020-04-14T17:37:44.3148197Z\",\"lastModified\":\"2020-04-14T17:37:44.3148197Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3148197Z\",\"commandLine\":\"cmd /c echo hello 746\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask747\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask747\",\"eTag\":\"0x8D7E09A8A1FC691\",\"creationTime\":\"2020-04-14T17:37:44.3138193Z\",\"lastModified\":\"2020-04-14T17:37:44.3138193Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3138193Z\",\"commandLine\":\"cmd /c echo hello 747\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask748\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask748\",\"eTag\":\"0x8D7E09A8A1FC691\",\"creationTime\":\"2020-04-14T17:37:44.3138193Z\",\"lastModified\":\"2020-04-14T17:37:44.3138193Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3138193Z\",\"commandLine\":\"cmd /c echo hello 748\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask749\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask749\",\"eTag\":\"0x8D7E09A8A2014B4\",\"creationTime\":\"2020-04-14T17:37:44.3158196Z\",\"lastModified\":\"2020-04-14T17:37:44.3158196Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3158196Z\",\"commandLine\":\"cmd /c echo hello 749\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask75\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask75\",\"eTag\":\"0x8D7E09A8A1E12F1\",\"creationTime\":\"2020-04-14T17:37:44.3026673Z\",\"lastModified\":\"2020-04-14T17:37:44.3026673Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3026673Z\",\"commandLine\":\"cmd /c echo hello 75\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask750\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask750\",\"eTag\":\"0x8D7E09A8A2321F0\",\"creationTime\":\"2020-04-14T17:37:44.3358192Z\",\"lastModified\":\"2020-04-14T17:37:44.3358192Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3358192Z\",\"commandLine\":\"cmd /c echo hello 750\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask751\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask751\",\"eTag\":\"0x8D7E09A8A2130C5\",\"creationTime\":\"2020-04-14T17:37:44.3230917Z\",\"lastModified\":\"2020-04-14T17:37:44.3230917Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3230917Z\",\"commandLine\":\"cmd /c echo hello 751\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask752\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask752\",\"eTag\":\"0x8D7E09A8A234901\",\"creationTime\":\"2020-04-14T17:37:44.3368193Z\",\"lastModified\":\"2020-04-14T17:37:44.3368193Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3368193Z\",\"commandLine\":\"cmd /c echo hello 752\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask753\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask753\",\"eTag\":\"0x8D7E09A8A243802\",\"creationTime\":\"2020-04-14T17:37:44.3429378Z\",\"lastModified\":\"2020-04-14T17:37:44.3429378Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3429378Z\",\"commandLine\":\"cmd /c echo hello 753\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask754\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask754\",\"eTag\":\"0x8D7E09A8A22FAD9\",\"creationTime\":\"2020-04-14T17:37:44.3348185Z\",\"lastModified\":\"2020-04-14T17:37:44.3348185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3348185Z\",\"commandLine\":\"cmd /c echo hello 754\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask755\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask755\",\"eTag\":\"0x8D7E09A8A243567\",\"creationTime\":\"2020-04-14T17:37:44.3428711Z\",\"lastModified\":\"2020-04-14T17:37:44.3428711Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3428711Z\",\"commandLine\":\"cmd /c echo hello 755\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask756\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask756\",\"eTag\":\"0x8D7E09A8A234901\",\"creationTime\":\"2020-04-14T17:37:44.3368193Z\",\"lastModified\":\"2020-04-14T17:37:44.3368193Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3368193Z\",\"commandLine\":\"cmd /c echo hello 756\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask757\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask757\",\"eTag\":\"0x8D7E09A8A22FAD9\",\"creationTime\":\"2020-04-14T17:37:44.3348185Z\",\"lastModified\":\"2020-04-14T17:37:44.3348185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3348185Z\",\"commandLine\":\"cmd /c echo hello 757\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask758\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask758\",\"eTag\":\"0x8D7E09A8A2321F0\",\"creationTime\":\"2020-04-14T17:37:44.3358192Z\",\"lastModified\":\"2020-04-14T17:37:44.3358192Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3358192Z\",\"commandLine\":\"cmd /c echo hello 758\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask759\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask759\",\"eTag\":\"0x8D7E09A8A24A883\",\"creationTime\":\"2020-04-14T17:37:44.3458179Z\",\"lastModified\":\"2020-04-14T17:37:44.3458179Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3458179Z\",\"commandLine\":\"cmd /c echo hello 759\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask76\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask76\",\"eTag\":\"0x8D7E09A8A212035\",\"creationTime\":\"2020-04-14T17:37:44.3226677Z\",\"lastModified\":\"2020-04-14T17:37:44.3226677Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3226677Z\",\"commandLine\":\"cmd /c echo hello 76\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask760\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask760\",\"eTag\":\"0x8D7E09A8A03B31C\",\"creationTime\":\"2020-04-14T17:37:44.1298204Z\",\"lastModified\":\"2020-04-14T17:37:44.1298204Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1298204Z\",\"commandLine\":\"cmd /c echo hello 760\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask761\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask761\",\"eTag\":\"0x8D7E09A8A245A6C\",\"creationTime\":\"2020-04-14T17:37:44.3438188Z\",\"lastModified\":\"2020-04-14T17:37:44.3438188Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3438188Z\",\"commandLine\":\"cmd /c echo hello 761\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask762\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask762\",\"eTag\":\"0x8D7E09A8A243802\",\"creationTime\":\"2020-04-14T17:37:44.3429378Z\",\"lastModified\":\"2020-04-14T17:37:44.3429378Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3429378Z\",\"commandLine\":\"cmd /c echo hello 762\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask763\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask763\",\"eTag\":\"0x8D7E09A8A243802\",\"creationTime\":\"2020-04-14T17:37:44.3429378Z\",\"lastModified\":\"2020-04-14T17:37:44.3429378Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3429378Z\",\"commandLine\":\"cmd /c echo hello 763\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask764\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask764\",\"eTag\":\"0x8D7E09A8A274083\",\"creationTime\":\"2020-04-14T17:37:44.3628163Z\",\"lastModified\":\"2020-04-14T17:37:44.3628163Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3628163Z\",\"commandLine\":\"cmd /c echo hello 764\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask765\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask765\",\"eTag\":\"0x8D7E09A8A245A6C\",\"creationTime\":\"2020-04-14T17:37:44.3438188Z\",\"lastModified\":\"2020-04-14T17:37:44.3438188Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3438188Z\",\"commandLine\":\"cmd /c echo hello 765\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask766\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask766\",\"eTag\":\"0x8D7E09A8A234901\",\"creationTime\":\"2020-04-14T17:37:44.3368193Z\",\"lastModified\":\"2020-04-14T17:37:44.3368193Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3368193Z\",\"commandLine\":\"cmd /c echo hello 766\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask767\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask767\",\"eTag\":\"0x8D7E09A8A37E242\",\"creationTime\":\"2020-04-14T17:37:44.4718146Z\",\"lastModified\":\"2020-04-14T17:37:44.4718146Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4718146Z\",\"commandLine\":\"cmd /c echo hello 767\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask768\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask768\",\"eTag\":\"0x8D7E09A8A262F22\",\"creationTime\":\"2020-04-14T17:37:44.3558178Z\",\"lastModified\":\"2020-04-14T17:37:44.3558178Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3558178Z\",\"commandLine\":\"cmd /c echo hello 768\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask769\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask769\",\"eTag\":\"0x8D7E09A8A24A883\",\"creationTime\":\"2020-04-14T17:37:44.3458179Z\",\"lastModified\":\"2020-04-14T17:37:44.3458179Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3458179Z\",\"commandLine\":\"cmd /c echo hello 769\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask77\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask77\",\"eTag\":\"0x8D7E09A8A1F4B5D\",\"creationTime\":\"2020-04-14T17:37:44.3106653Z\",\"lastModified\":\"2020-04-14T17:37:44.3106653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3106653Z\",\"commandLine\":\"cmd /c echo hello 77\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask770\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask770\",\"eTag\":\"0x8D7E09A8A262F22\",\"creationTime\":\"2020-04-14T17:37:44.3558178Z\",\"lastModified\":\"2020-04-14T17:37:44.3558178Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3558178Z\",\"commandLine\":\"cmd /c echo hello 770\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask771\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask771\",\"eTag\":\"0x8D7E09A8A274083\",\"creationTime\":\"2020-04-14T17:37:44.3628163Z\",\"lastModified\":\"2020-04-14T17:37:44.3628163Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3628163Z\",\"commandLine\":\"cmd /c echo hello 771\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask772\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask772\",\"eTag\":\"0x8D7E09A8A326420\",\"creationTime\":\"2020-04-14T17:37:44.4358176Z\",\"lastModified\":\"2020-04-14T17:37:44.4358176Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4358176Z\",\"commandLine\":\"cmd /c echo hello 772\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask773\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask773\",\"eTag\":\"0x8D7E09A8A262F22\",\"creationTime\":\"2020-04-14T17:37:44.3558178Z\",\"lastModified\":\"2020-04-14T17:37:44.3558178Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3558178Z\",\"commandLine\":\"cmd /c echo hello 773\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask774\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask774\",\"eTag\":\"0x8D7E09A8A274083\",\"creationTime\":\"2020-04-14T17:37:44.3628163Z\",\"lastModified\":\"2020-04-14T17:37:44.3628163Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3628163Z\",\"commandLine\":\"cmd /c echo hello 774\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask775\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask775\",\"eTag\":\"0x8D7E09A8A274083\",\"creationTime\":\"2020-04-14T17:37:44.3628163Z\",\"lastModified\":\"2020-04-14T17:37:44.3628163Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3628163Z\",\"commandLine\":\"cmd /c echo hello 775\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask776\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask776\",\"eTag\":\"0x8D7E09A8A2F7DFF\",\"creationTime\":\"2020-04-14T17:37:44.4168191Z\",\"lastModified\":\"2020-04-14T17:37:44.4168191Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4168191Z\",\"commandLine\":\"cmd /c echo hello 776\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask777\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask777\",\"eTag\":\"0x8D7E09A8A27B5BB\",\"creationTime\":\"2020-04-14T17:37:44.3658171Z\",\"lastModified\":\"2020-04-14T17:37:44.3658171Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3658171Z\",\"commandLine\":\"cmd /c echo hello 777\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask778\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask778\",\"eTag\":\"0x8D7E09A8A2F2FD1\",\"creationTime\":\"2020-04-14T17:37:44.4148177Z\",\"lastModified\":\"2020-04-14T17:37:44.4148177Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4148177Z\",\"commandLine\":\"cmd /c echo hello 778\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask779\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask779\",\"eTag\":\"0x8D7E09A8A27B5BB\",\"creationTime\":\"2020-04-14T17:37:44.3658171Z\",\"lastModified\":\"2020-04-14T17:37:44.3658171Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3658171Z\",\"commandLine\":\"cmd /c echo hello 779\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask78\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask78\",\"eTag\":\"0x8D7E09A8A1E12F1\",\"creationTime\":\"2020-04-14T17:37:44.3026673Z\",\"lastModified\":\"2020-04-14T17:37:44.3026673Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3026673Z\",\"commandLine\":\"cmd /c echo hello 78\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask780\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask780\",\"eTag\":\"0x8D7E09A8A2F08C8\",\"creationTime\":\"2020-04-14T17:37:44.4138184Z\",\"lastModified\":\"2020-04-14T17:37:44.4138184Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4138184Z\",\"commandLine\":\"cmd /c echo hello 780\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask781\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask781\",\"eTag\":\"0x8D7E09A8A278EBF\",\"creationTime\":\"2020-04-14T17:37:44.3648191Z\",\"lastModified\":\"2020-04-14T17:37:44.3648191Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3648191Z\",\"commandLine\":\"cmd /c echo hello 781\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask782\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask782\",\"eTag\":\"0x8D7E09A8A2A4678\",\"creationTime\":\"2020-04-14T17:37:44.3826296Z\",\"lastModified\":\"2020-04-14T17:37:44.3826296Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3826296Z\",\"commandLine\":\"cmd /c echo hello 782\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask783\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask783\",\"eTag\":\"0x8D7E09A8A27B5BB\",\"creationTime\":\"2020-04-14T17:37:44.3658171Z\",\"lastModified\":\"2020-04-14T17:37:44.3658171Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3658171Z\",\"commandLine\":\"cmd /c echo hello 783\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask784\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask784\",\"eTag\":\"0x8D7E09A8A2767B3\",\"creationTime\":\"2020-04-14T17:37:44.3638195Z\",\"lastModified\":\"2020-04-14T17:37:44.3638195Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3638195Z\",\"commandLine\":\"cmd /c echo hello 784\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask785\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask785\",\"eTag\":\"0x8D7E09A8A326420\",\"creationTime\":\"2020-04-14T17:37:44.4358176Z\",\"lastModified\":\"2020-04-14T17:37:44.4358176Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4358176Z\",\"commandLine\":\"cmd /c echo hello 785\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask786\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask786\",\"eTag\":\"0x8D7E09A8A2D826F\",\"creationTime\":\"2020-04-14T17:37:44.4038255Z\",\"lastModified\":\"2020-04-14T17:37:44.4038255Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4038255Z\",\"commandLine\":\"cmd /c echo hello 786\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask787\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask787\",\"eTag\":\"0x8D7E09A8A2767B3\",\"creationTime\":\"2020-04-14T17:37:44.3638195Z\",\"lastModified\":\"2020-04-14T17:37:44.3638195Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3638195Z\",\"commandLine\":\"cmd /c echo hello 787\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask788\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask788\",\"eTag\":\"0x8D7E09A8A2C49AC\",\"creationTime\":\"2020-04-14T17:37:44.3958188Z\",\"lastModified\":\"2020-04-14T17:37:44.3958188Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3958188Z\",\"commandLine\":\"cmd /c echo hello 788\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask789\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask789\",\"eTag\":\"0x8D7E09A8A2A4DC0\",\"creationTime\":\"2020-04-14T17:37:44.382816Z\",\"lastModified\":\"2020-04-14T17:37:44.382816Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.382816Z\",\"commandLine\":\"cmd /c echo hello 789\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask79\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask79\",\"eTag\":\"0x8D7E09A8A1F0BED\",\"creationTime\":\"2020-04-14T17:37:44.3090413Z\",\"lastModified\":\"2020-04-14T17:37:44.3090413Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3090413Z\",\"commandLine\":\"cmd /c echo hello 79\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask790\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask790\",\"eTag\":\"0x8D7E09A8A2F7DFF\",\"creationTime\":\"2020-04-14T17:37:44.4168191Z\",\"lastModified\":\"2020-04-14T17:37:44.4168191Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4168191Z\",\"commandLine\":\"cmd /c echo hello 790\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask791\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask791\",\"eTag\":\"0x8D7E09A8A28C041\",\"creationTime\":\"2020-04-14T17:37:44.3726401Z\",\"lastModified\":\"2020-04-14T17:37:44.3726401Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3726401Z\",\"commandLine\":\"cmd /c echo hello 791\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask792\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask792\",\"eTag\":\"0x8D7E09A8A2C49AC\",\"creationTime\":\"2020-04-14T17:37:44.3958188Z\",\"lastModified\":\"2020-04-14T17:37:44.3958188Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3958188Z\",\"commandLine\":\"cmd /c echo hello 792\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask793\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask793\",\"eTag\":\"0x8D7E09A8A2EE1C2\",\"creationTime\":\"2020-04-14T17:37:44.4128194Z\",\"lastModified\":\"2020-04-14T17:37:44.4128194Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4128194Z\",\"commandLine\":\"cmd /c echo hello 793\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask794\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask794\",\"eTag\":\"0x8D7E09A8A2F56EE\",\"creationTime\":\"2020-04-14T17:37:44.415819Z\",\"lastModified\":\"2020-04-14T17:37:44.415819Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.415819Z\",\"commandLine\":\"cmd /c echo hello 794\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask795\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask795\",\"eTag\":\"0x8D7E09A8A2F2FD1\",\"creationTime\":\"2020-04-14T17:37:44.4148177Z\",\"lastModified\":\"2020-04-14T17:37:44.4148177Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4148177Z\",\"commandLine\":\"cmd /c echo hello 795\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask796\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask796\",\"eTag\":\"0x8D7E09A8A35719E\",\"creationTime\":\"2020-04-14T17:37:44.4558238Z\",\"lastModified\":\"2020-04-14T17:37:44.4558238Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4558238Z\",\"commandLine\":\"cmd /c echo hello 796\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask797\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask797\",\"eTag\":\"0x8D7E09A8A27B5BB\",\"creationTime\":\"2020-04-14T17:37:44.3658171Z\",\"lastModified\":\"2020-04-14T17:37:44.3658171Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3658171Z\",\"commandLine\":\"cmd /c echo hello 797\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask798\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask798\",\"eTag\":\"0x8D7E09A8A28C72E\",\"creationTime\":\"2020-04-14T17:37:44.3728174Z\",\"lastModified\":\"2020-04-14T17:37:44.3728174Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3728174Z\",\"commandLine\":\"cmd /c echo hello 798\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask799\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask799\",\"eTag\":\"0x8D7E09A8A35719E\",\"creationTime\":\"2020-04-14T17:37:44.4558238Z\",\"lastModified\":\"2020-04-14T17:37:44.4558238Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4558238Z\",\"commandLine\":\"cmd /c echo hello 799\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask8\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask8\",\"eTag\":\"0x8D7E09A89DAEF6E\",\"creationTime\":\"2020-04-14T17:37:43.862667Z\",\"lastModified\":\"2020-04-14T17:37:43.862667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.862667Z\",\"commandLine\":\"cmd /c echo hello 8\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask80\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask80\",\"eTag\":\"0x8D7E09A8A4692A4\",\"creationTime\":\"2020-04-14T17:37:44.5680804Z\",\"lastModified\":\"2020-04-14T17:37:44.5680804Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.5680804Z\",\"commandLine\":\"cmd /c echo hello 80\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask800\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask800\",\"eTag\":\"0x8D7E09A89D673A7\",\"creationTime\":\"2020-04-14T17:37:43.8332839Z\",\"lastModified\":\"2020-04-14T17:37:43.8332839Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8332839Z\",\"commandLine\":\"cmd /c echo hello 800\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask801\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask801\",\"eTag\":\"0x8D7E09A89FF2D21\",\"creationTime\":\"2020-04-14T17:37:44.1001761Z\",\"lastModified\":\"2020-04-14T17:37:44.1001761Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1001761Z\",\"commandLine\":\"cmd /c echo hello 801\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask802\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask802\",\"eTag\":\"0x8D7E09A89FF06F4\",\"creationTime\":\"2020-04-14T17:37:44.0991988Z\",\"lastModified\":\"2020-04-14T17:37:44.0991988Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.0991988Z\",\"commandLine\":\"cmd /c echo hello 802\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask803\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask803\",\"eTag\":\"0x8D7E09A89FF2D21\",\"creationTime\":\"2020-04-14T17:37:44.1001761Z\",\"lastModified\":\"2020-04-14T17:37:44.1001761Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1001761Z\",\"commandLine\":\"cmd /c echo hello 803\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask804\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask804\",\"eTag\":\"0x8D7E09A89FF2D21\",\"creationTime\":\"2020-04-14T17:37:44.1001761Z\",\"lastModified\":\"2020-04-14T17:37:44.1001761Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1001761Z\",\"commandLine\":\"cmd /c echo hello 804\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask805\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask805\",\"eTag\":\"0x8D7E09A8A040F1A\",\"creationTime\":\"2020-04-14T17:37:44.1321754Z\",\"lastModified\":\"2020-04-14T17:37:44.1321754Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1321754Z\",\"commandLine\":\"cmd /c echo hello 805\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask806\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask806\",\"eTag\":\"0x8D7E09A8A040F1A\",\"creationTime\":\"2020-04-14T17:37:44.1321754Z\",\"lastModified\":\"2020-04-14T17:37:44.1321754Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1321754Z\",\"commandLine\":\"cmd /c echo hello 806\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask807\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask807\",\"eTag\":\"0x8D7E09A89FF2D21\",\"creationTime\":\"2020-04-14T17:37:44.1001761Z\",\"lastModified\":\"2020-04-14T17:37:44.1001761Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1001761Z\",\"commandLine\":\"cmd /c echo hello 807\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask808\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask808\",\"eTag\":\"0x8D7E09A8A05208A\",\"creationTime\":\"2020-04-14T17:37:44.1391754Z\",\"lastModified\":\"2020-04-14T17:37:44.1391754Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1391754Z\",\"commandLine\":\"cmd /c echo hello 808\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask809\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask809\",\"eTag\":\"0x8D7E09A8A043641\",\"creationTime\":\"2020-04-14T17:37:44.1331777Z\",\"lastModified\":\"2020-04-14T17:37:44.1331777Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1331777Z\",\"commandLine\":\"cmd /c echo hello 809\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask81\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask81\",\"eTag\":\"0x8D7E09A8A1F4B5D\",\"creationTime\":\"2020-04-14T17:37:44.3106653Z\",\"lastModified\":\"2020-04-14T17:37:44.3106653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3106653Z\",\"commandLine\":\"cmd /c echo hello 81\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask810\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask810\",\"eTag\":\"0x8D7E09A8A043641\",\"creationTime\":\"2020-04-14T17:37:44.1331777Z\",\"lastModified\":\"2020-04-14T17:37:44.1331777Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1331777Z\",\"commandLine\":\"cmd /c echo hello 810\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask811\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask811\",\"eTag\":\"0x8D7E09A8A05963C\",\"creationTime\":\"2020-04-14T17:37:44.1421884Z\",\"lastModified\":\"2020-04-14T17:37:44.1421884Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1421884Z\",\"commandLine\":\"cmd /c echo hello 811\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask812\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask812\",\"eTag\":\"0x8D7E09A8A056EB9\",\"creationTime\":\"2020-04-14T17:37:44.1411769Z\",\"lastModified\":\"2020-04-14T17:37:44.1411769Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1411769Z\",\"commandLine\":\"cmd /c echo hello 812\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask813\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask813\",\"eTag\":\"0x8D7E09A8A0A02A1\",\"creationTime\":\"2020-04-14T17:37:44.1711777Z\",\"lastModified\":\"2020-04-14T17:37:44.1711777Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1711777Z\",\"commandLine\":\"cmd /c echo hello 813\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask814\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask814\",\"eTag\":\"0x8D7E09A8A0B183D\",\"creationTime\":\"2020-04-14T17:37:44.1782845Z\",\"lastModified\":\"2020-04-14T17:37:44.1782845Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1782845Z\",\"commandLine\":\"cmd /c echo hello 814\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask815\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask815\",\"eTag\":\"0x8D7E09A8A0A02A1\",\"creationTime\":\"2020-04-14T17:37:44.1711777Z\",\"lastModified\":\"2020-04-14T17:37:44.1711777Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1711777Z\",\"commandLine\":\"cmd /c echo hello 815\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask816\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask816\",\"eTag\":\"0x8D7E09A8A143BD2\",\"creationTime\":\"2020-04-14T17:37:44.2381778Z\",\"lastModified\":\"2020-04-14T17:37:44.2381778Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2381778Z\",\"commandLine\":\"cmd /c echo hello 816\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask817\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask817\",\"eTag\":\"0x8D7E09A8A101D2C\",\"creationTime\":\"2020-04-14T17:37:44.2111788Z\",\"lastModified\":\"2020-04-14T17:37:44.2111788Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2111788Z\",\"commandLine\":\"cmd /c echo hello 817\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask818\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask818\",\"eTag\":\"0x8D7E09A8A0FF608\",\"creationTime\":\"2020-04-14T17:37:44.2101768Z\",\"lastModified\":\"2020-04-14T17:37:44.2101768Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2101768Z\",\"commandLine\":\"cmd /c echo hello 818\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask819\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask819\",\"eTag\":\"0x8D7E09A8A0D0FDA\",\"creationTime\":\"2020-04-14T17:37:44.191177Z\",\"lastModified\":\"2020-04-14T17:37:44.191177Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.191177Z\",\"commandLine\":\"cmd /c echo hello 819\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask82\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask82\",\"eTag\":\"0x8D7E09A8A2396CD\",\"creationTime\":\"2020-04-14T17:37:44.3388109Z\",\"lastModified\":\"2020-04-14T17:37:44.3388109Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3388109Z\",\"commandLine\":\"cmd /c echo hello 82\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask820\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask820\",\"eTag\":\"0x8D7E09A89E3FD06\",\"creationTime\":\"2020-04-14T17:37:43.9219974Z\",\"lastModified\":\"2020-04-14T17:37:43.9219974Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.9219974Z\",\"commandLine\":\"cmd /c echo hello 820\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask821\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask821\",\"eTag\":\"0x8D7E09A8A0CE8D2\",\"creationTime\":\"2020-04-14T17:37:44.1901778Z\",\"lastModified\":\"2020-04-14T17:37:44.1901778Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1901778Z\",\"commandLine\":\"cmd /c echo hello 821\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask822\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask822\",\"eTag\":\"0x8D7E09A8A0D0FDA\",\"creationTime\":\"2020-04-14T17:37:44.191177Z\",\"lastModified\":\"2020-04-14T17:37:44.191177Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.191177Z\",\"commandLine\":\"cmd /c echo hello 822\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask823\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask823\",\"eTag\":\"0x8D7E09A8A0CE8D2\",\"creationTime\":\"2020-04-14T17:37:44.1901778Z\",\"lastModified\":\"2020-04-14T17:37:44.1901778Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1901778Z\",\"commandLine\":\"cmd /c echo hello 823\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask824\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask824\",\"eTag\":\"0x8D7E09A8A0D0FDA\",\"creationTime\":\"2020-04-14T17:37:44.191177Z\",\"lastModified\":\"2020-04-14T17:37:44.191177Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.191177Z\",\"commandLine\":\"cmd /c echo hello 824\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask825\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask825\",\"eTag\":\"0x8D7E09A8A0FF608\",\"creationTime\":\"2020-04-14T17:37:44.2101768Z\",\"lastModified\":\"2020-04-14T17:37:44.2101768Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2101768Z\",\"commandLine\":\"cmd /c echo hello 825\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask826\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask826\",\"eTag\":\"0x8D7E09A8A101D2C\",\"creationTime\":\"2020-04-14T17:37:44.2111788Z\",\"lastModified\":\"2020-04-14T17:37:44.2111788Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2111788Z\",\"commandLine\":\"cmd /c echo hello 826\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask827\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask827\",\"eTag\":\"0x8D7E09A8A0FF608\",\"creationTime\":\"2020-04-14T17:37:44.2101768Z\",\"lastModified\":\"2020-04-14T17:37:44.2101768Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2101768Z\",\"commandLine\":\"cmd /c echo hello 827\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask828\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask828\",\"eTag\":\"0x8D7E09A8A0D0FDA\",\"creationTime\":\"2020-04-14T17:37:44.191177Z\",\"lastModified\":\"2020-04-14T17:37:44.191177Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.191177Z\",\"commandLine\":\"cmd /c echo hello 828\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask829\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask829\",\"eTag\":\"0x8D7E09A8A112E93\",\"creationTime\":\"2020-04-14T17:37:44.2181779Z\",\"lastModified\":\"2020-04-14T17:37:44.2181779Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2181779Z\",\"commandLine\":\"cmd /c echo hello 829\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask83\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask83\",\"eTag\":\"0x8D7E09A8A20F927\",\"creationTime\":\"2020-04-14T17:37:44.3216679Z\",\"lastModified\":\"2020-04-14T17:37:44.3216679Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3216679Z\",\"commandLine\":\"cmd /c echo hello 83\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask830\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask830\",\"eTag\":\"0x8D7E09A8A112E93\",\"creationTime\":\"2020-04-14T17:37:44.2181779Z\",\"lastModified\":\"2020-04-14T17:37:44.2181779Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2181779Z\",\"commandLine\":\"cmd /c echo hello 830\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask831\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask831\",\"eTag\":\"0x8D7E09A8A101D2C\",\"creationTime\":\"2020-04-14T17:37:44.2111788Z\",\"lastModified\":\"2020-04-14T17:37:44.2111788Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2111788Z\",\"commandLine\":\"cmd /c echo hello 831\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask832\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask832\",\"eTag\":\"0x8D7E09A8A117CB5\",\"creationTime\":\"2020-04-14T17:37:44.2201781Z\",\"lastModified\":\"2020-04-14T17:37:44.2201781Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2201781Z\",\"commandLine\":\"cmd /c echo hello 832\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask833\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask833\",\"eTag\":\"0x8D7E09A8A117CB5\",\"creationTime\":\"2020-04-14T17:37:44.2201781Z\",\"lastModified\":\"2020-04-14T17:37:44.2201781Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2201781Z\",\"commandLine\":\"cmd /c echo hello 833\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask834\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask834\",\"eTag\":\"0x8D7E09A8A117CB5\",\"creationTime\":\"2020-04-14T17:37:44.2201781Z\",\"lastModified\":\"2020-04-14T17:37:44.2201781Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2201781Z\",\"commandLine\":\"cmd /c echo hello 834\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask835\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask835\",\"eTag\":\"0x8D7E09A8A132A6F\",\"creationTime\":\"2020-04-14T17:37:44.2311791Z\",\"lastModified\":\"2020-04-14T17:37:44.2311791Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2311791Z\",\"commandLine\":\"cmd /c echo hello 835\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask836\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask836\",\"eTag\":\"0x8D7E09A8A1462F2\",\"creationTime\":\"2020-04-14T17:37:44.2391794Z\",\"lastModified\":\"2020-04-14T17:37:44.2391794Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2391794Z\",\"commandLine\":\"cmd /c echo hello 836\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask837\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask837\",\"eTag\":\"0x8D7E09A8A14B118\",\"creationTime\":\"2020-04-14T17:37:44.24118Z\",\"lastModified\":\"2020-04-14T17:37:44.24118Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.24118Z\",\"commandLine\":\"cmd /c echo hello 837\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask838\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask838\",\"eTag\":\"0x8D7E09A8A143BD2\",\"creationTime\":\"2020-04-14T17:37:44.2381778Z\",\"lastModified\":\"2020-04-14T17:37:44.2381778Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2381778Z\",\"commandLine\":\"cmd /c echo hello 838\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask839\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask839\",\"eTag\":\"0x8D7E09A8A143BD2\",\"creationTime\":\"2020-04-14T17:37:44.2381778Z\",\"lastModified\":\"2020-04-14T17:37:44.2381778Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2381778Z\",\"commandLine\":\"cmd /c echo hello 839\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask84\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask84\",\"eTag\":\"0x8D7E09A8A220DE7\",\"creationTime\":\"2020-04-14T17:37:44.3287527Z\",\"lastModified\":\"2020-04-14T17:37:44.3287527Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3287527Z\",\"commandLine\":\"cmd /c echo hello 84\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask840\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask840\",\"eTag\":\"0x8D7E09A8A14B118\",\"creationTime\":\"2020-04-14T17:37:44.24118Z\",\"lastModified\":\"2020-04-14T17:37:44.24118Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.24118Z\",\"commandLine\":\"cmd /c echo hello 840\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask841\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask841\",\"eTag\":\"0x8D7E09A8A148A02\",\"creationTime\":\"2020-04-14T17:37:44.2401794Z\",\"lastModified\":\"2020-04-14T17:37:44.2401794Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2401794Z\",\"commandLine\":\"cmd /c echo hello 841\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask842\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask842\",\"eTag\":\"0x8D7E09A8A148A02\",\"creationTime\":\"2020-04-14T17:37:44.2401794Z\",\"lastModified\":\"2020-04-14T17:37:44.2401794Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2401794Z\",\"commandLine\":\"cmd /c echo hello 842\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask843\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask843\",\"eTag\":\"0x8D7E09A8A1462F2\",\"creationTime\":\"2020-04-14T17:37:44.2391794Z\",\"lastModified\":\"2020-04-14T17:37:44.2391794Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2391794Z\",\"commandLine\":\"cmd /c echo hello 843\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask844\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask844\",\"eTag\":\"0x8D7E09A8A14B118\",\"creationTime\":\"2020-04-14T17:37:44.24118Z\",\"lastModified\":\"2020-04-14T17:37:44.24118Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.24118Z\",\"commandLine\":\"cmd /c echo hello 844\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask845\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask845\",\"eTag\":\"0x8D7E09A8A148A02\",\"creationTime\":\"2020-04-14T17:37:44.2401794Z\",\"lastModified\":\"2020-04-14T17:37:44.2401794Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2401794Z\",\"commandLine\":\"cmd /c echo hello 845\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask846\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask846\",\"eTag\":\"0x8D7E09A8A17E5DC\",\"creationTime\":\"2020-04-14T17:37:44.2621916Z\",\"lastModified\":\"2020-04-14T17:37:44.2621916Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2621916Z\",\"commandLine\":\"cmd /c echo hello 846\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask847\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask847\",\"eTag\":\"0x8D7E09A8A17717A\",\"creationTime\":\"2020-04-14T17:37:44.2592122Z\",\"lastModified\":\"2020-04-14T17:37:44.2592122Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2592122Z\",\"commandLine\":\"cmd /c echo hello 847\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask848\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask848\",\"eTag\":\"0x8D7E09A8A17E5DC\",\"creationTime\":\"2020-04-14T17:37:44.2621916Z\",\"lastModified\":\"2020-04-14T17:37:44.2621916Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2621916Z\",\"commandLine\":\"cmd /c echo hello 848\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask849\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask849\",\"eTag\":\"0x8D7E09A8A17BE58\",\"creationTime\":\"2020-04-14T17:37:44.26118Z\",\"lastModified\":\"2020-04-14T17:37:44.26118Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.26118Z\",\"commandLine\":\"cmd /c echo hello 849\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask85\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask85\",\"eTag\":\"0x8D7E09A8A1DF334\",\"creationTime\":\"2020-04-14T17:37:44.3018548Z\",\"lastModified\":\"2020-04-14T17:37:44.3018548Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3018548Z\",\"commandLine\":\"cmd /c echo hello 85\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask850\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask850\",\"eTag\":\"0x8D7E09A8A17E5DC\",\"creationTime\":\"2020-04-14T17:37:44.2621916Z\",\"lastModified\":\"2020-04-14T17:37:44.2621916Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2621916Z\",\"commandLine\":\"cmd /c echo hello 850\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask851\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask851\",\"eTag\":\"0x8D7E09A8A18DAAC\",\"creationTime\":\"2020-04-14T17:37:44.2684588Z\",\"lastModified\":\"2020-04-14T17:37:44.2684588Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2684588Z\",\"commandLine\":\"cmd /c echo hello 851\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask852\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask852\",\"eTag\":\"0x8D7E09A8A17717A\",\"creationTime\":\"2020-04-14T17:37:44.2592122Z\",\"lastModified\":\"2020-04-14T17:37:44.2592122Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2592122Z\",\"commandLine\":\"cmd /c echo hello 852\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask853\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask853\",\"eTag\":\"0x8D7E09A8A179731\",\"creationTime\":\"2020-04-14T17:37:44.2601777Z\",\"lastModified\":\"2020-04-14T17:37:44.2601777Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2601777Z\",\"commandLine\":\"cmd /c echo hello 853\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask854\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask854\",\"eTag\":\"0x8D7E09A8A179731\",\"creationTime\":\"2020-04-14T17:37:44.2601777Z\",\"lastModified\":\"2020-04-14T17:37:44.2601777Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2601777Z\",\"commandLine\":\"cmd /c echo hello 854\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask855\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask855\",\"eTag\":\"0x8D7E09A8A17BE58\",\"creationTime\":\"2020-04-14T17:37:44.26118Z\",\"lastModified\":\"2020-04-14T17:37:44.26118Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.26118Z\",\"commandLine\":\"cmd /c echo hello 855\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask856\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask856\",\"eTag\":\"0x8D7E09A8A17BE58\",\"creationTime\":\"2020-04-14T17:37:44.26118Z\",\"lastModified\":\"2020-04-14T17:37:44.26118Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.26118Z\",\"commandLine\":\"cmd /c echo hello 856\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask857\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask857\",\"eTag\":\"0x8D7E09A8A18DAAC\",\"creationTime\":\"2020-04-14T17:37:44.2684588Z\",\"lastModified\":\"2020-04-14T17:37:44.2684588Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2684588Z\",\"commandLine\":\"cmd /c echo hello 857\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask858\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask858\",\"eTag\":\"0x8D7E09A8A17717A\",\"creationTime\":\"2020-04-14T17:37:44.2592122Z\",\"lastModified\":\"2020-04-14T17:37:44.2592122Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2592122Z\",\"commandLine\":\"cmd /c echo hello 858\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask859\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask859\",\"eTag\":\"0x8D7E09A8A17BE58\",\"creationTime\":\"2020-04-14T17:37:44.26118Z\",\"lastModified\":\"2020-04-14T17:37:44.26118Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.26118Z\",\"commandLine\":\"cmd /c echo hello 859\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask86\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask86\",\"eTag\":\"0x8D7E09A8A219566\",\"creationTime\":\"2020-04-14T17:37:44.3256678Z\",\"lastModified\":\"2020-04-14T17:37:44.3256678Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3256678Z\",\"commandLine\":\"cmd /c echo hello 86\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask860\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask860\",\"eTag\":\"0x8D7E09A8A179731\",\"creationTime\":\"2020-04-14T17:37:44.2601777Z\",\"lastModified\":\"2020-04-14T17:37:44.2601777Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2601777Z\",\"commandLine\":\"cmd /c echo hello 860\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask861\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask861\",\"eTag\":\"0x8D7E09A8A1A5E39\",\"creationTime\":\"2020-04-14T17:37:44.2783801Z\",\"lastModified\":\"2020-04-14T17:37:44.2783801Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2783801Z\",\"commandLine\":\"cmd /c echo hello 861\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask862\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask862\",\"eTag\":\"0x8D7E09A8A179731\",\"creationTime\":\"2020-04-14T17:37:44.2601777Z\",\"lastModified\":\"2020-04-14T17:37:44.2601777Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2601777Z\",\"commandLine\":\"cmd /c echo hello 862\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask863\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask863\",\"eTag\":\"0x8D7E09A8A1AA480\",\"creationTime\":\"2020-04-14T17:37:44.2801792Z\",\"lastModified\":\"2020-04-14T17:37:44.2801792Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2801792Z\",\"commandLine\":\"cmd /c echo hello 863\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask864\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask864\",\"eTag\":\"0x8D7E09A8A2293D1\",\"creationTime\":\"2020-04-14T17:37:44.3321809Z\",\"lastModified\":\"2020-04-14T17:37:44.3321809Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3321809Z\",\"commandLine\":\"cmd /c echo hello 864\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask865\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask865\",\"eTag\":\"0x8D7E09A8A1A7D74\",\"creationTime\":\"2020-04-14T17:37:44.2791796Z\",\"lastModified\":\"2020-04-14T17:37:44.2791796Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2791796Z\",\"commandLine\":\"cmd /c echo hello 865\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask866\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask866\",\"eTag\":\"0x8D7E09A8A226CC5\",\"creationTime\":\"2020-04-14T17:37:44.3311813Z\",\"lastModified\":\"2020-04-14T17:37:44.3311813Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3311813Z\",\"commandLine\":\"cmd /c echo hello 866\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask867\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask867\",\"eTag\":\"0x8D7E09A8A1F115F\",\"creationTime\":\"2020-04-14T17:37:44.3091807Z\",\"lastModified\":\"2020-04-14T17:37:44.3091807Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3091807Z\",\"commandLine\":\"cmd /c echo hello 867\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask868\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask868\",\"eTag\":\"0x8D7E09A8A226CC5\",\"creationTime\":\"2020-04-14T17:37:44.3311813Z\",\"lastModified\":\"2020-04-14T17:37:44.3311813Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3311813Z\",\"commandLine\":\"cmd /c echo hello 868\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask869\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask869\",\"eTag\":\"0x8D7E09A8A1D6386\",\"creationTime\":\"2020-04-14T17:37:44.2981766Z\",\"lastModified\":\"2020-04-14T17:37:44.2981766Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2981766Z\",\"commandLine\":\"cmd /c echo hello 869\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask87\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask87\",\"eTag\":\"0x8D7E09A8A220DE7\",\"creationTime\":\"2020-04-14T17:37:44.3287527Z\",\"lastModified\":\"2020-04-14T17:37:44.3287527Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3287527Z\",\"commandLine\":\"cmd /c echo hello 87\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask870\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask870\",\"eTag\":\"0x8D7E09A8A1D8AB8\",\"creationTime\":\"2020-04-14T17:37:44.29918Z\",\"lastModified\":\"2020-04-14T17:37:44.29918Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.29918Z\",\"commandLine\":\"cmd /c echo hello 870\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask871\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask871\",\"eTag\":\"0x8D7E09A8A1A7D74\",\"creationTime\":\"2020-04-14T17:37:44.2791796Z\",\"lastModified\":\"2020-04-14T17:37:44.2791796Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2791796Z\",\"commandLine\":\"cmd /c echo hello 871\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask872\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask872\",\"eTag\":\"0x8D7E09A8A1EEA47\",\"creationTime\":\"2020-04-14T17:37:44.3081799Z\",\"lastModified\":\"2020-04-14T17:37:44.3081799Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3081799Z\",\"commandLine\":\"cmd /c echo hello 872\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask873\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask873\",\"eTag\":\"0x8D7E09A8A1F115F\",\"creationTime\":\"2020-04-14T17:37:44.3091807Z\",\"lastModified\":\"2020-04-14T17:37:44.3091807Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3091807Z\",\"commandLine\":\"cmd /c echo hello 873\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask874\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask874\",\"eTag\":\"0x8D7E09A8A1F115F\",\"creationTime\":\"2020-04-14T17:37:44.3091807Z\",\"lastModified\":\"2020-04-14T17:37:44.3091807Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3091807Z\",\"commandLine\":\"cmd /c echo hello 874\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask875\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask875\",\"eTag\":\"0x8D7E09A8A1C5239\",\"creationTime\":\"2020-04-14T17:37:44.2911801Z\",\"lastModified\":\"2020-04-14T17:37:44.2911801Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2911801Z\",\"commandLine\":\"cmd /c echo hello 875\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask876\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask876\",\"eTag\":\"0x8D7E09A8A1DD8E0\",\"creationTime\":\"2020-04-14T17:37:44.3011808Z\",\"lastModified\":\"2020-04-14T17:37:44.3011808Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3011808Z\",\"commandLine\":\"cmd /c echo hello 876\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask877\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask877\",\"eTag\":\"0x8D7E09A8A1C5239\",\"creationTime\":\"2020-04-14T17:37:44.2911801Z\",\"lastModified\":\"2020-04-14T17:37:44.2911801Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2911801Z\",\"commandLine\":\"cmd /c echo hello 877\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask878\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask878\",\"eTag\":\"0x8D7E09A8A1C040A\",\"creationTime\":\"2020-04-14T17:37:44.2891786Z\",\"lastModified\":\"2020-04-14T17:37:44.2891786Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2891786Z\",\"commandLine\":\"cmd /c echo hello 878\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask879\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask879\",\"eTag\":\"0x8D7E09A8A1DD8E0\",\"creationTime\":\"2020-04-14T17:37:44.3011808Z\",\"lastModified\":\"2020-04-14T17:37:44.3011808Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3011808Z\",\"commandLine\":\"cmd /c echo hello 879\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask88\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask88\",\"eTag\":\"0x8D7E09A8A21473B\",\"creationTime\":\"2020-04-14T17:37:44.3236667Z\",\"lastModified\":\"2020-04-14T17:37:44.3236667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3236667Z\",\"commandLine\":\"cmd /c echo hello 88\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask880\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask880\",\"eTag\":\"0x8D7E09A8A1DD8E0\",\"creationTime\":\"2020-04-14T17:37:44.3011808Z\",\"lastModified\":\"2020-04-14T17:37:44.3011808Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3011808Z\",\"commandLine\":\"cmd /c echo hello 880\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask881\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask881\",\"eTag\":\"0x8D7E09A8A1DB1C3\",\"creationTime\":\"2020-04-14T17:37:44.3001795Z\",\"lastModified\":\"2020-04-14T17:37:44.3001795Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3001795Z\",\"commandLine\":\"cmd /c echo hello 881\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask882\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask882\",\"eTag\":\"0x8D7E09A8A24FF79\",\"creationTime\":\"2020-04-14T17:37:44.3480441Z\",\"lastModified\":\"2020-04-14T17:37:44.3480441Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3480441Z\",\"commandLine\":\"cmd /c echo hello 882\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask883\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask883\",\"eTag\":\"0x8D7E09A8A1DD8E0\",\"creationTime\":\"2020-04-14T17:37:44.3011808Z\",\"lastModified\":\"2020-04-14T17:37:44.3011808Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3011808Z\",\"commandLine\":\"cmd /c echo hello 883\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask884\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask884\",\"eTag\":\"0x8D7E09A8A1C5239\",\"creationTime\":\"2020-04-14T17:37:44.2911801Z\",\"lastModified\":\"2020-04-14T17:37:44.2911801Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2911801Z\",\"commandLine\":\"cmd /c echo hello 884\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask885\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask885\",\"eTag\":\"0x8D7E09A8A224682\",\"creationTime\":\"2020-04-14T17:37:44.3302018Z\",\"lastModified\":\"2020-04-14T17:37:44.3302018Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3302018Z\",\"commandLine\":\"cmd /c echo hello 885\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask886\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask886\",\"eTag\":\"0x8D7E09A8A23F35A\",\"creationTime\":\"2020-04-14T17:37:44.3411802Z\",\"lastModified\":\"2020-04-14T17:37:44.3411802Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3411802Z\",\"commandLine\":\"cmd /c echo hello 886\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask887\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask887\",\"eTag\":\"0x8D7E09A8A1EEA47\",\"creationTime\":\"2020-04-14T17:37:44.3081799Z\",\"lastModified\":\"2020-04-14T17:37:44.3081799Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3081799Z\",\"commandLine\":\"cmd /c echo hello 887\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask888\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask888\",\"eTag\":\"0x8D7E09A8A2509F6\",\"creationTime\":\"2020-04-14T17:37:44.3483126Z\",\"lastModified\":\"2020-04-14T17:37:44.3483126Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3483126Z\",\"commandLine\":\"cmd /c echo hello 888\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask889\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask889\",\"eTag\":\"0x8D7E09A8A1DB1C3\",\"creationTime\":\"2020-04-14T17:37:44.3001795Z\",\"lastModified\":\"2020-04-14T17:37:44.3001795Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3001795Z\",\"commandLine\":\"cmd /c echo hello 889\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask89\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask89\",\"eTag\":\"0x8D7E09A8A1F2467\",\"creationTime\":\"2020-04-14T17:37:44.3096679Z\",\"lastModified\":\"2020-04-14T17:37:44.3096679Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3096679Z\",\"commandLine\":\"cmd /c echo hello 89\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask890\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask890\",\"eTag\":\"0x8D7E09A8A3817AA\",\"creationTime\":\"2020-04-14T17:37:44.4731818Z\",\"lastModified\":\"2020-04-14T17:37:44.4731818Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4731818Z\",\"commandLine\":\"cmd /c echo hello 890\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask891\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask891\",\"eTag\":\"0x8D7E09A8A2509F6\",\"creationTime\":\"2020-04-14T17:37:44.3483126Z\",\"lastModified\":\"2020-04-14T17:37:44.3483126Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3483126Z\",\"commandLine\":\"cmd /c echo hello 891\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask892\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask892\",\"eTag\":\"0x8D7E09A8A23F35A\",\"creationTime\":\"2020-04-14T17:37:44.3411802Z\",\"lastModified\":\"2020-04-14T17:37:44.3411802Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3411802Z\",\"commandLine\":\"cmd /c echo hello 892\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask893\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask893\",\"eTag\":\"0x8D7E09A8A252BD8\",\"creationTime\":\"2020-04-14T17:37:44.34918Z\",\"lastModified\":\"2020-04-14T17:37:44.34918Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.34918Z\",\"commandLine\":\"cmd /c echo hello 893\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask894\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask894\",\"eTag\":\"0x8D7E09A8A2509F6\",\"creationTime\":\"2020-04-14T17:37:44.3483126Z\",\"lastModified\":\"2020-04-14T17:37:44.3483126Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3483126Z\",\"commandLine\":\"cmd /c echo hello 894\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask895\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask895\",\"eTag\":\"0x8D7E09A8A23A57B\",\"creationTime\":\"2020-04-14T17:37:44.3391867Z\",\"lastModified\":\"2020-04-14T17:37:44.3391867Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3391867Z\",\"commandLine\":\"cmd /c echo hello 895\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask896\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask896\",\"eTag\":\"0x8D7E09A8A23CC4D\",\"creationTime\":\"2020-04-14T17:37:44.3401805Z\",\"lastModified\":\"2020-04-14T17:37:44.3401805Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3401805Z\",\"commandLine\":\"cmd /c echo hello 896\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask897\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask897\",\"eTag\":\"0x8D7E09A8A22E1E9\",\"creationTime\":\"2020-04-14T17:37:44.3341801Z\",\"lastModified\":\"2020-04-14T17:37:44.3341801Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3341801Z\",\"commandLine\":\"cmd /c echo hello 897\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask898\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask898\",\"eTag\":\"0x8D7E09A8A2509F6\",\"creationTime\":\"2020-04-14T17:37:44.3483126Z\",\"lastModified\":\"2020-04-14T17:37:44.3483126Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3483126Z\",\"commandLine\":\"cmd /c echo hello 898\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask899\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask899\",\"eTag\":\"0x8D7E09A89FF06F4\",\"creationTime\":\"2020-04-14T17:37:44.0991988Z\",\"lastModified\":\"2020-04-14T17:37:44.0991988Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.0991988Z\",\"commandLine\":\"cmd /c echo hello 899\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask9\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask9\",\"eTag\":\"0x8D7E09A8A0337D4\",\"creationTime\":\"2020-04-14T17:37:44.1266644Z\",\"lastModified\":\"2020-04-14T17:37:44.1266644Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1266644Z\",\"commandLine\":\"cmd /c echo hello 9\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask90\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask90\",\"eTag\":\"0x8D7E09A8A21473B\",\"creationTime\":\"2020-04-14T17:37:44.3236667Z\",\"lastModified\":\"2020-04-14T17:37:44.3236667Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3236667Z\",\"commandLine\":\"cmd /c echo hello 90\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask900\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask900\",\"eTag\":\"0x8D7E09A89D45367\",\"creationTime\":\"2020-04-14T17:37:43.8193511Z\",\"lastModified\":\"2020-04-14T17:37:43.8193511Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8193511Z\",\"commandLine\":\"cmd /c echo hello 900\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask901\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask901\",\"eTag\":\"0x8D7E09A8A035125\",\"creationTime\":\"2020-04-14T17:37:44.1273125Z\",\"lastModified\":\"2020-04-14T17:37:44.1273125Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1273125Z\",\"commandLine\":\"cmd /c echo hello 901\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask902\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask902\",\"eTag\":\"0x8D7E09A89D8BEE7\",\"creationTime\":\"2020-04-14T17:37:43.8483175Z\",\"lastModified\":\"2020-04-14T17:37:43.8483175Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.8483175Z\",\"commandLine\":\"cmd /c echo hello 902\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask903\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask903\",\"eTag\":\"0x8D7E09A8A035125\",\"creationTime\":\"2020-04-14T17:37:44.1273125Z\",\"lastModified\":\"2020-04-14T17:37:44.1273125Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1273125Z\",\"commandLine\":\"cmd /c echo hello 903\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask904\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask904\",\"eTag\":\"0x8D7E09A8A035125\",\"creationTime\":\"2020-04-14T17:37:44.1273125Z\",\"lastModified\":\"2020-04-14T17:37:44.1273125Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1273125Z\",\"commandLine\":\"cmd /c echo hello 904\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask905\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask905\",\"eTag\":\"0x8D7E09A8A035125\",\"creationTime\":\"2020-04-14T17:37:44.1273125Z\",\"lastModified\":\"2020-04-14T17:37:44.1273125Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1273125Z\",\"commandLine\":\"cmd /c echo hello 905\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask906\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask906\",\"eTag\":\"0x8D7E09A8A035125\",\"creationTime\":\"2020-04-14T17:37:44.1273125Z\",\"lastModified\":\"2020-04-14T17:37:44.1273125Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1273125Z\",\"commandLine\":\"cmd /c echo hello 906\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask907\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask907\",\"eTag\":\"0x8D7E09A8A044571\",\"creationTime\":\"2020-04-14T17:37:44.1335665Z\",\"lastModified\":\"2020-04-14T17:37:44.1335665Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1335665Z\",\"commandLine\":\"cmd /c echo hello 907\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask908\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask908\",\"eTag\":\"0x8D7E09A8A0796E7\",\"creationTime\":\"2020-04-14T17:37:44.1553127Z\",\"lastModified\":\"2020-04-14T17:37:44.1553127Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1553127Z\",\"commandLine\":\"cmd /c echo hello 908\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask909\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask909\",\"eTag\":\"0x8D7E09A8A0796E7\",\"creationTime\":\"2020-04-14T17:37:44.1553127Z\",\"lastModified\":\"2020-04-14T17:37:44.1553127Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1553127Z\",\"commandLine\":\"cmd /c echo hello 909\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask91\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask91\",\"eTag\":\"0x8D7E09A8A1F4B5D\",\"creationTime\":\"2020-04-14T17:37:44.3106653Z\",\"lastModified\":\"2020-04-14T17:37:44.3106653Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3106653Z\",\"commandLine\":\"cmd /c echo hello 91\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask910\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask910\",\"eTag\":\"0x8D7E09A8A07BE6B\",\"creationTime\":\"2020-04-14T17:37:44.1563243Z\",\"lastModified\":\"2020-04-14T17:37:44.1563243Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1563243Z\",\"commandLine\":\"cmd /c echo hello 910\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask911\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask911\",\"eTag\":\"0x8D7E09A8A094506\",\"creationTime\":\"2020-04-14T17:37:44.1663238Z\",\"lastModified\":\"2020-04-14T17:37:44.1663238Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1663238Z\",\"commandLine\":\"cmd /c echo hello 911\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask912\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask912\",\"eTag\":\"0x8D7E09A8A08F679\",\"creationTime\":\"2020-04-14T17:37:44.1643129Z\",\"lastModified\":\"2020-04-14T17:37:44.1643129Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1643129Z\",\"commandLine\":\"cmd /c echo hello 912\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask913\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask913\",\"eTag\":\"0x8D7E09A8A08AEC0\",\"creationTime\":\"2020-04-14T17:37:44.1624768Z\",\"lastModified\":\"2020-04-14T17:37:44.1624768Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.1624768Z\",\"commandLine\":\"cmd /c echo hello 913\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask914\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask914\",\"eTag\":\"0x8D7E09A8A0EC2EC\",\"creationTime\":\"2020-04-14T17:37:44.2023148Z\",\"lastModified\":\"2020-04-14T17:37:44.2023148Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2023148Z\",\"commandLine\":\"cmd /c echo hello 914\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask915\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask915\",\"eTag\":\"0x8D7E09A8A0EE9EB\",\"creationTime\":\"2020-04-14T17:37:44.2033131Z\",\"lastModified\":\"2020-04-14T17:37:44.2033131Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2033131Z\",\"commandLine\":\"cmd /c echo hello 915\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask916\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask916\",\"eTag\":\"0x8D7E09A8A0EE9EB\",\"creationTime\":\"2020-04-14T17:37:44.2033131Z\",\"lastModified\":\"2020-04-14T17:37:44.2033131Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2033131Z\",\"commandLine\":\"cmd /c echo hello 916\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask917\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask917\",\"eTag\":\"0x8D7E09A8A0EC2EC\",\"creationTime\":\"2020-04-14T17:37:44.2023148Z\",\"lastModified\":\"2020-04-14T17:37:44.2023148Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2023148Z\",\"commandLine\":\"cmd /c echo hello 917\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask918\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask918\",\"eTag\":\"0x8D7E09A8A0F1161\",\"creationTime\":\"2020-04-14T17:37:44.2043233Z\",\"lastModified\":\"2020-04-14T17:37:44.2043233Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2043233Z\",\"commandLine\":\"cmd /c echo hello 918\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask919\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask919\",\"eTag\":\"0x8D7E09A8A1097C3\",\"creationTime\":\"2020-04-14T17:37:44.2143171Z\",\"lastModified\":\"2020-04-14T17:37:44.2143171Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2143171Z\",\"commandLine\":\"cmd /c echo hello 919\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask92\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask92\",\"eTag\":\"0x8D7E09A8A1E12F1\",\"creationTime\":\"2020-04-14T17:37:44.3026673Z\",\"lastModified\":\"2020-04-14T17:37:44.3026673Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3026673Z\",\"commandLine\":\"cmd /c echo hello 92\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask920\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask920\",\"eTag\":\"0x8D7E09A8A11A905\",\"creationTime\":\"2020-04-14T17:37:44.2213125Z\",\"lastModified\":\"2020-04-14T17:37:44.2213125Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2213125Z\",\"commandLine\":\"cmd /c echo hello 920\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask921\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask921\",\"eTag\":\"0x8D7E09A8A17C377\",\"creationTime\":\"2020-04-14T17:37:44.2613111Z\",\"lastModified\":\"2020-04-14T17:37:44.2613111Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2613111Z\",\"commandLine\":\"cmd /c echo hello 921\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask922\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask922\",\"eTag\":\"0x8D7E09A8A0DA40E\",\"creationTime\":\"2020-04-14T17:37:44.194971Z\",\"lastModified\":\"2020-04-14T17:37:44.194971Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.194971Z\",\"commandLine\":\"cmd /c echo hello 922\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask923\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask923\",\"eTag\":\"0x8D7E09A8A1185DC\",\"creationTime\":\"2020-04-14T17:37:44.2204124Z\",\"lastModified\":\"2020-04-14T17:37:44.2204124Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2204124Z\",\"commandLine\":\"cmd /c echo hello 923\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask924\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask924\",\"eTag\":\"0x8D7E09A8A118875\",\"creationTime\":\"2020-04-14T17:37:44.2204789Z\",\"lastModified\":\"2020-04-14T17:37:44.2204789Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2204789Z\",\"commandLine\":\"cmd /c echo hello 924\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask925\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask925\",\"eTag\":\"0x8D7E09A8A11F724\",\"creationTime\":\"2020-04-14T17:37:44.2233124Z\",\"lastModified\":\"2020-04-14T17:37:44.2233124Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2233124Z\",\"commandLine\":\"cmd /c echo hello 925\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask926\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask926\",\"eTag\":\"0x8D7E09A8A118875\",\"creationTime\":\"2020-04-14T17:37:44.2204789Z\",\"lastModified\":\"2020-04-14T17:37:44.2204789Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2204789Z\",\"commandLine\":\"cmd /c echo hello 926\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask927\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask927\",\"eTag\":\"0x8D7E09A8A1615BB\",\"creationTime\":\"2020-04-14T17:37:44.2503099Z\",\"lastModified\":\"2020-04-14T17:37:44.2503099Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2503099Z\",\"commandLine\":\"cmd /c echo hello 927\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask928\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask928\",\"eTag\":\"0x8D7E09A8A179C72\",\"creationTime\":\"2020-04-14T17:37:44.2603122Z\",\"lastModified\":\"2020-04-14T17:37:44.2603122Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2603122Z\",\"commandLine\":\"cmd /c echo hello 928\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask929\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask929\",\"eTag\":\"0x8D7E09A89E987AF\",\"creationTime\":\"2020-04-14T17:37:43.9583151Z\",\"lastModified\":\"2020-04-14T17:37:43.9583151Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:43.9583151Z\",\"commandLine\":\"cmd /c echo hello 929\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask93\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask93\",\"eTag\":\"0x8D7E09A8A212035\",\"creationTime\":\"2020-04-14T17:37:44.3226677Z\",\"lastModified\":\"2020-04-14T17:37:44.3226677Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3226677Z\",\"commandLine\":\"cmd /c echo hello 93\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask930\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask930\",\"eTag\":\"0x8D7E09A8A163CD8\",\"creationTime\":\"2020-04-14T17:37:44.2513112Z\",\"lastModified\":\"2020-04-14T17:37:44.2513112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2513112Z\",\"commandLine\":\"cmd /c echo hello 930\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask931\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask931\",\"eTag\":\"0x8D7E09A8A1663E1\",\"creationTime\":\"2020-04-14T17:37:44.2523105Z\",\"lastModified\":\"2020-04-14T17:37:44.2523105Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2523105Z\",\"commandLine\":\"cmd /c echo hello 931\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask932\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask932\",\"eTag\":\"0x8D7E09A8A163CD8\",\"creationTime\":\"2020-04-14T17:37:44.2513112Z\",\"lastModified\":\"2020-04-14T17:37:44.2513112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2513112Z\",\"commandLine\":\"cmd /c echo hello 932\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask933\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask933\",\"eTag\":\"0x8D7E09A8A1762E4\",\"creationTime\":\"2020-04-14T17:37:44.2588388Z\",\"lastModified\":\"2020-04-14T17:37:44.2588388Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2588388Z\",\"commandLine\":\"cmd /c echo hello 933\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask934\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask934\",\"eTag\":\"0x8D7E09A8A17755C\",\"creationTime\":\"2020-04-14T17:37:44.2593116Z\",\"lastModified\":\"2020-04-14T17:37:44.2593116Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2593116Z\",\"commandLine\":\"cmd /c echo hello 934\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask935\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask935\",\"eTag\":\"0x8D7E09A8A1762E4\",\"creationTime\":\"2020-04-14T17:37:44.2588388Z\",\"lastModified\":\"2020-04-14T17:37:44.2588388Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2588388Z\",\"commandLine\":\"cmd /c echo hello 935\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask936\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask936\",\"eTag\":\"0x8D7E09A8A17755C\",\"creationTime\":\"2020-04-14T17:37:44.2593116Z\",\"lastModified\":\"2020-04-14T17:37:44.2593116Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2593116Z\",\"commandLine\":\"cmd /c echo hello 936\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask937\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask937\",\"eTag\":\"0x8D7E09A8A1663E1\",\"creationTime\":\"2020-04-14T17:37:44.2523105Z\",\"lastModified\":\"2020-04-14T17:37:44.2523105Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2523105Z\",\"commandLine\":\"cmd /c echo hello 937\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask938\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask938\",\"eTag\":\"0x8D7E09A8A1663E1\",\"creationTime\":\"2020-04-14T17:37:44.2523105Z\",\"lastModified\":\"2020-04-14T17:37:44.2523105Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2523105Z\",\"commandLine\":\"cmd /c echo hello 938\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask939\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask939\",\"eTag\":\"0x8D7E09A8A17755C\",\"creationTime\":\"2020-04-14T17:37:44.2593116Z\",\"lastModified\":\"2020-04-14T17:37:44.2593116Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2593116Z\",\"commandLine\":\"cmd /c echo hello 939\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask94\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask94\",\"eTag\":\"0x8D7E09A8A64C911\",\"creationTime\":\"2020-04-14T17:37:44.7660817Z\",\"lastModified\":\"2020-04-14T17:37:44.7660817Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7660817Z\",\"commandLine\":\"cmd /c echo hello 94\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask940\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask940\",\"eTag\":\"0x8D7E09A8A179C72\",\"creationTime\":\"2020-04-14T17:37:44.2603122Z\",\"lastModified\":\"2020-04-14T17:37:44.2603122Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2603122Z\",\"commandLine\":\"cmd /c echo hello 940\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask941\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask941\",\"eTag\":\"0x8D7E09A8A17755C\",\"creationTime\":\"2020-04-14T17:37:44.2593116Z\",\"lastModified\":\"2020-04-14T17:37:44.2593116Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2593116Z\",\"commandLine\":\"cmd /c echo hello 941\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask942\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask942\",\"eTag\":\"0x8D7E09A8A17EAFB\",\"creationTime\":\"2020-04-14T17:37:44.2623227Z\",\"lastModified\":\"2020-04-14T17:37:44.2623227Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2623227Z\",\"commandLine\":\"cmd /c echo hello 942\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask943\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask943\",\"eTag\":\"0x8D7E09A8A2F4329\",\"creationTime\":\"2020-04-14T17:37:44.4153129Z\",\"lastModified\":\"2020-04-14T17:37:44.4153129Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4153129Z\",\"commandLine\":\"cmd /c echo hello 943\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask944\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask944\",\"eTag\":\"0x8D7E09A8A1AA99A\",\"creationTime\":\"2020-04-14T17:37:44.2803098Z\",\"lastModified\":\"2020-04-14T17:37:44.2803098Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2803098Z\",\"commandLine\":\"cmd /c echo hello 944\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask945\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask945\",\"eTag\":\"0x8D7E09A8A1AD10F\",\"creationTime\":\"2020-04-14T17:37:44.2813199Z\",\"lastModified\":\"2020-04-14T17:37:44.2813199Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2813199Z\",\"commandLine\":\"cmd /c echo hello 945\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask946\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask946\",\"eTag\":\"0x8D7E09A8A1AD10F\",\"creationTime\":\"2020-04-14T17:37:44.2813199Z\",\"lastModified\":\"2020-04-14T17:37:44.2813199Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2813199Z\",\"commandLine\":\"cmd /c echo hello 946\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask947\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask947\",\"eTag\":\"0x8D7E09A8A1DB6E4\",\"creationTime\":\"2020-04-14T17:37:44.3003108Z\",\"lastModified\":\"2020-04-14T17:37:44.3003108Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3003108Z\",\"commandLine\":\"cmd /c echo hello 947\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask948\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask948\",\"eTag\":\"0x8D7E09A8A203792\",\"creationTime\":\"2020-04-14T17:37:44.3167122Z\",\"lastModified\":\"2020-04-14T17:37:44.3167122Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3167122Z\",\"commandLine\":\"cmd /c echo hello 948\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask949\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask949\",\"eTag\":\"0x8D7E09A8A1D8FD4\",\"creationTime\":\"2020-04-14T17:37:44.2993108Z\",\"lastModified\":\"2020-04-14T17:37:44.2993108Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2993108Z\",\"commandLine\":\"cmd /c echo hello 949\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask95\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask95\",\"eTag\":\"0x8D7E09A8A64A287\",\"creationTime\":\"2020-04-14T17:37:44.7650951Z\",\"lastModified\":\"2020-04-14T17:37:44.7650951Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7650951Z\",\"commandLine\":\"cmd /c echo hello 95\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask950\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask950\",\"eTag\":\"0x8D7E09A8A1EBBD2\",\"creationTime\":\"2020-04-14T17:37:44.3069906Z\",\"lastModified\":\"2020-04-14T17:37:44.3069906Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3069906Z\",\"commandLine\":\"cmd /c echo hello 950\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask951\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask951\",\"eTag\":\"0x8D7E09A8A1DB6E4\",\"creationTime\":\"2020-04-14T17:37:44.3003108Z\",\"lastModified\":\"2020-04-14T17:37:44.3003108Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3003108Z\",\"commandLine\":\"cmd /c echo hello 951\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask952\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask952\",\"eTag\":\"0x8D7E09A8A21D597\",\"creationTime\":\"2020-04-14T17:37:44.3273111Z\",\"lastModified\":\"2020-04-14T17:37:44.3273111Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3273111Z\",\"commandLine\":\"cmd /c echo hello 952\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask953\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask953\",\"eTag\":\"0x8D7E09A8A1D8FD4\",\"creationTime\":\"2020-04-14T17:37:44.2993108Z\",\"lastModified\":\"2020-04-14T17:37:44.2993108Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2993108Z\",\"commandLine\":\"cmd /c echo hello 953\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask954\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask954\",\"eTag\":\"0x8D7E09A8A2530F8\",\"creationTime\":\"2020-04-14T17:37:44.3493112Z\",\"lastModified\":\"2020-04-14T17:37:44.3493112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3493112Z\",\"commandLine\":\"cmd /c echo hello 954\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask955\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask955\",\"eTag\":\"0x8D7E09A8A2223B8\",\"creationTime\":\"2020-04-14T17:37:44.3293112Z\",\"lastModified\":\"2020-04-14T17:37:44.3293112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3293112Z\",\"commandLine\":\"cmd /c echo hello 955\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask956\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask956\",\"eTag\":\"0x8D7E09A8A23351E\",\"creationTime\":\"2020-04-14T17:37:44.3363102Z\",\"lastModified\":\"2020-04-14T17:37:44.3363102Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3363102Z\",\"commandLine\":\"cmd /c echo hello 956\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask957\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask957\",\"eTag\":\"0x8D7E09A8A26905F\",\"creationTime\":\"2020-04-14T17:37:44.3583071Z\",\"lastModified\":\"2020-04-14T17:37:44.3583071Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3583071Z\",\"commandLine\":\"cmd /c echo hello 957\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask958\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask958\",\"eTag\":\"0x8D7E09A8A21FCA8\",\"creationTime\":\"2020-04-14T17:37:44.3283112Z\",\"lastModified\":\"2020-04-14T17:37:44.3283112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3283112Z\",\"commandLine\":\"cmd /c echo hello 958\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask959\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask959\",\"eTag\":\"0x8D7E09A8A20C472\",\"creationTime\":\"2020-04-14T17:37:44.3203186Z\",\"lastModified\":\"2020-04-14T17:37:44.3203186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3203186Z\",\"commandLine\":\"cmd /c echo hello 959\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask96\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask96\",\"eTag\":\"0x8D7E09A8A65F23F\",\"creationTime\":\"2020-04-14T17:37:44.7736895Z\",\"lastModified\":\"2020-04-14T17:37:44.7736895Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7736895Z\",\"commandLine\":\"cmd /c echo hello 96\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask960\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask960\",\"eTag\":\"0x8D7E09A8A20C472\",\"creationTime\":\"2020-04-14T17:37:44.3203186Z\",\"lastModified\":\"2020-04-14T17:37:44.3203186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3203186Z\",\"commandLine\":\"cmd /c echo hello 960\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask961\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask961\",\"eTag\":\"0x8D7E09A8A209D15\",\"creationTime\":\"2020-04-14T17:37:44.3193109Z\",\"lastModified\":\"2020-04-14T17:37:44.3193109Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3193109Z\",\"commandLine\":\"cmd /c echo hello 961\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask962\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask962\",\"eTag\":\"0x8D7E09A8A21D597\",\"creationTime\":\"2020-04-14T17:37:44.3273111Z\",\"lastModified\":\"2020-04-14T17:37:44.3273111Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3273111Z\",\"commandLine\":\"cmd /c echo hello 962\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask963\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask963\",\"eTag\":\"0x8D7E09A8A1EEF6D\",\"creationTime\":\"2020-04-14T17:37:44.3083117Z\",\"lastModified\":\"2020-04-14T17:37:44.3083117Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3083117Z\",\"commandLine\":\"cmd /c echo hello 963\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask964\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask964\",\"eTag\":\"0x8D7E09A8A2223B8\",\"creationTime\":\"2020-04-14T17:37:44.3293112Z\",\"lastModified\":\"2020-04-14T17:37:44.3293112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3293112Z\",\"commandLine\":\"cmd /c echo hello 964\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask965\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask965\",\"eTag\":\"0x8D7E09A8A1D68CA\",\"creationTime\":\"2020-04-14T17:37:44.2983114Z\",\"lastModified\":\"2020-04-14T17:37:44.2983114Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2983114Z\",\"commandLine\":\"cmd /c echo hello 965\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask966\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask966\",\"eTag\":\"0x8D7E09A8A20C472\",\"creationTime\":\"2020-04-14T17:37:44.3203186Z\",\"lastModified\":\"2020-04-14T17:37:44.3203186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3203186Z\",\"commandLine\":\"cmd /c echo hello 966\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask967\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask967\",\"eTag\":\"0x8D7E09A8A2223B8\",\"creationTime\":\"2020-04-14T17:37:44.3293112Z\",\"lastModified\":\"2020-04-14T17:37:44.3293112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3293112Z\",\"commandLine\":\"cmd /c echo hello 967\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask968\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask968\",\"eTag\":\"0x8D7E09A8A1D8FD4\",\"creationTime\":\"2020-04-14T17:37:44.2993108Z\",\"lastModified\":\"2020-04-14T17:37:44.2993108Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2993108Z\",\"commandLine\":\"cmd /c echo hello 968\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask969\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask969\",\"eTag\":\"0x8D7E09A8A2075FC\",\"creationTime\":\"2020-04-14T17:37:44.31831Z\",\"lastModified\":\"2020-04-14T17:37:44.31831Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.31831Z\",\"commandLine\":\"cmd /c echo hello 969\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask97\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask97\",\"eTag\":\"0x8D7E09A8A64C911\",\"creationTime\":\"2020-04-14T17:37:44.7660817Z\",\"lastModified\":\"2020-04-14T17:37:44.7660817Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7660817Z\",\"commandLine\":\"cmd /c echo hello 97\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask970\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask970\",\"eTag\":\"0x8D7E09A8A1EC859\",\"creationTime\":\"2020-04-14T17:37:44.3073113Z\",\"lastModified\":\"2020-04-14T17:37:44.3073113Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3073113Z\",\"commandLine\":\"cmd /c echo hello 970\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask971\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask971\",\"eTag\":\"0x8D7E09A8A1D8FD4\",\"creationTime\":\"2020-04-14T17:37:44.2993108Z\",\"lastModified\":\"2020-04-14T17:37:44.2993108Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2993108Z\",\"commandLine\":\"cmd /c echo hello 971\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask972\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask972\",\"eTag\":\"0x8D7E09A8A1DB6E4\",\"creationTime\":\"2020-04-14T17:37:44.3003108Z\",\"lastModified\":\"2020-04-14T17:37:44.3003108Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3003108Z\",\"commandLine\":\"cmd /c echo hello 972\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask973\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask973\",\"eTag\":\"0x8D7E09A8A2223B8\",\"creationTime\":\"2020-04-14T17:37:44.3293112Z\",\"lastModified\":\"2020-04-14T17:37:44.3293112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3293112Z\",\"commandLine\":\"cmd /c echo hello 973\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask974\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask974\",\"eTag\":\"0x8D7E09A8A21AEDC\",\"creationTime\":\"2020-04-14T17:37:44.3263196Z\",\"lastModified\":\"2020-04-14T17:37:44.3263196Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3263196Z\",\"commandLine\":\"cmd /c echo hello 974\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask975\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask975\",\"eTag\":\"0x8D7E09A8A1DB6E4\",\"creationTime\":\"2020-04-14T17:37:44.3003108Z\",\"lastModified\":\"2020-04-14T17:37:44.3003108Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3003108Z\",\"commandLine\":\"cmd /c echo hello 975\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask976\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask976\",\"eTag\":\"0x8D7E09A8A21D597\",\"creationTime\":\"2020-04-14T17:37:44.3273111Z\",\"lastModified\":\"2020-04-14T17:37:44.3273111Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3273111Z\",\"commandLine\":\"cmd /c echo hello 976\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask977\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask977\",\"eTag\":\"0x8D7E09A8A2530F8\",\"creationTime\":\"2020-04-14T17:37:44.3493112Z\",\"lastModified\":\"2020-04-14T17:37:44.3493112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3493112Z\",\"commandLine\":\"cmd /c echo hello 977\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask978\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask978\",\"eTag\":\"0x8D7E09A8A27A25C\",\"creationTime\":\"2020-04-14T17:37:44.3653212Z\",\"lastModified\":\"2020-04-14T17:37:44.3653212Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3653212Z\",\"commandLine\":\"cmd /c echo hello 978\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask979\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask979\",\"eTag\":\"0x8D7E09A8A27F003\",\"creationTime\":\"2020-04-14T17:37:44.3673091Z\",\"lastModified\":\"2020-04-14T17:37:44.3673091Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3673091Z\",\"commandLine\":\"cmd /c echo hello 979\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask98\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask98\",\"eTag\":\"0x8D7E09A8A64A287\",\"creationTime\":\"2020-04-14T17:37:44.7650951Z\",\"lastModified\":\"2020-04-14T17:37:44.7650951Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7650951Z\",\"commandLine\":\"cmd /c echo hello 98\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask980\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask980\",\"eTag\":\"0x8D7E09A8A21FCA8\",\"creationTime\":\"2020-04-14T17:37:44.3283112Z\",\"lastModified\":\"2020-04-14T17:37:44.3283112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3283112Z\",\"commandLine\":\"cmd /c echo hello 980\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask981\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask981\",\"eTag\":\"0x8D7E09A8A209D15\",\"creationTime\":\"2020-04-14T17:37:44.3193109Z\",\"lastModified\":\"2020-04-14T17:37:44.3193109Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3193109Z\",\"commandLine\":\"cmd /c echo hello 981\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask982\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask982\",\"eTag\":\"0x8D7E09A8A21FCA8\",\"creationTime\":\"2020-04-14T17:37:44.3283112Z\",\"lastModified\":\"2020-04-14T17:37:44.3283112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3283112Z\",\"commandLine\":\"cmd /c echo hello 982\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask983\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask983\",\"eTag\":\"0x8D7E09A8A27C8FC\",\"creationTime\":\"2020-04-14T17:37:44.36631Z\",\"lastModified\":\"2020-04-14T17:37:44.36631Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.36631Z\",\"commandLine\":\"cmd /c echo hello 983\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask984\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask984\",\"eTag\":\"0x8D7E09A8A2223B8\",\"creationTime\":\"2020-04-14T17:37:44.3293112Z\",\"lastModified\":\"2020-04-14T17:37:44.3293112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3293112Z\",\"commandLine\":\"cmd /c echo hello 984\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask985\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask985\",\"eTag\":\"0x8D7E09A8A24BBB0\",\"creationTime\":\"2020-04-14T17:37:44.3463088Z\",\"lastModified\":\"2020-04-14T17:37:44.3463088Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3463088Z\",\"commandLine\":\"cmd /c echo hello 985\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask986\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask986\",\"eTag\":\"0x8D7E09A8A1D8FD4\",\"creationTime\":\"2020-04-14T17:37:44.2993108Z\",\"lastModified\":\"2020-04-14T17:37:44.2993108Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.2993108Z\",\"commandLine\":\"cmd /c echo hello 986\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask987\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask987\",\"eTag\":\"0x8D7E09A8A26905F\",\"creationTime\":\"2020-04-14T17:37:44.3583071Z\",\"lastModified\":\"2020-04-14T17:37:44.3583071Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3583071Z\",\"commandLine\":\"cmd /c echo hello 987\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask988\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask988\",\"eTag\":\"0x8D7E09A8A2509E5\",\"creationTime\":\"2020-04-14T17:37:44.3483109Z\",\"lastModified\":\"2020-04-14T17:37:44.3483109Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3483109Z\",\"commandLine\":\"cmd /c echo hello 988\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask989\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask989\",\"eTag\":\"0x8D7E09A8A2530F8\",\"creationTime\":\"2020-04-14T17:37:44.3493112Z\",\"lastModified\":\"2020-04-14T17:37:44.3493112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3493112Z\",\"commandLine\":\"cmd /c echo hello 989\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask99\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask99\",\"eTag\":\"0x8D7E09A8A647AF9\",\"creationTime\":\"2020-04-14T17:37:44.7640825Z\",\"lastModified\":\"2020-04-14T17:37:44.7640825Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.7640825Z\",\"commandLine\":\"cmd /c echo hello 99\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask990\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask990\",\"eTag\":\"0x8D7E09A8A26905F\",\"creationTime\":\"2020-04-14T17:37:44.3583071Z\",\"lastModified\":\"2020-04-14T17:37:44.3583071Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3583071Z\",\"commandLine\":\"cmd /c echo hello 990\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask991\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask991\",\"eTag\":\"0x8D7E09A8A21FCA8\",\"creationTime\":\"2020-04-14T17:37:44.3283112Z\",\"lastModified\":\"2020-04-14T17:37:44.3283112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3283112Z\",\"commandLine\":\"cmd /c echo hello 991\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask992\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask992\",\"eTag\":\"0x8D7E09A8A26905F\",\"creationTime\":\"2020-04-14T17:37:44.3583071Z\",\"lastModified\":\"2020-04-14T17:37:44.3583071Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3583071Z\",\"commandLine\":\"cmd /c echo hello 992\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask993\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask993\",\"eTag\":\"0x8D7E09A8A24BBB0\",\"creationTime\":\"2020-04-14T17:37:44.3463088Z\",\"lastModified\":\"2020-04-14T17:37:44.3463088Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3463088Z\",\"commandLine\":\"cmd /c echo hello 993\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask994\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask994\",\"eTag\":\"0x8D7E09A8A26905F\",\"creationTime\":\"2020-04-14T17:37:44.3583071Z\",\"lastModified\":\"2020-04-14T17:37:44.3583071Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3583071Z\",\"commandLine\":\"cmd /c echo hello 994\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask995\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask995\",\"eTag\":\"0x8D7E09A8A281746\",\"creationTime\":\"2020-04-14T17:37:44.3683142Z\",\"lastModified\":\"2020-04-14T17:37:44.3683142Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3683142Z\",\"commandLine\":\"cmd /c echo hello 995\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask996\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask996\",\"eTag\":\"0x8D7E09A8A2530F8\",\"creationTime\":\"2020-04-14T17:37:44.3493112Z\",\"lastModified\":\"2020-04-14T17:37:44.3493112Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3493112Z\",\"commandLine\":\"cmd /c echo hello 996\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask997\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask997\",\"eTag\":\"0x8D7E09A8A27A25C\",\"creationTime\":\"2020-04-14T17:37:44.3653212Z\",\"lastModified\":\"2020-04-14T17:37:44.3653212Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3653212Z\",\"commandLine\":\"cmd /c echo hello 997\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask998\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask998\",\"eTag\":\"0x8D7E09A8A292885\",\"creationTime\":\"2020-04-14T17:37:44.3753093Z\",\"lastModified\":\"2020-04-14T17:37:44.3753093Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.3753093Z\",\"commandLine\":\"cmd /c echo hello 998\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n },{\r\n \"id\":\"mytask999\",\"url\":\"https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks/tasks/mytask999\",\"eTag\":\"0x8D7E09A8A308C51\",\"creationTime\":\"2020-04-14T17:37:44.4237393Z\",\"lastModified\":\"2020-04-14T17:37:44.4237393Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-04-14T17:37:44.4237393Z\",\"commandLine\":\"cmd /c echo hello 999\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n }\r\n ]\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "DELETE", - "Uri" : "https://sdktest2.westcentralus.batch.azure.com/jobs/BatchUser-testAddMultiTasks?api-version=2020-03-01.11.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:6af0687e9696ddb898873c0cf08ca2cbde35f03414152ca2b00c9aee10e6c335 Java:1.8.0_212-1-ojdkbuild (BatchServiceClient, 2020-03-01.11.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 14 Apr 2020 17:37:47 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "x-content-type-options" : "nosniff", - "client-request-id" : "e6598e39-4694-444e-b939-fc0b6700468a", - "retry-after" : "0", - "request-id" : "945694fd-00bb-421c-8a3a-0c28b9de5e27", - "StatusCode" : "202", - "dataserviceversion" : "3.0", - "Body" : "", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - } ], - "variables" : [ ] -} \ No newline at end of file diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testGetTaskCounts.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testGetTaskCounts.json index d9e456e3febe..4f4d95ab1348 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testGetTaskCounts.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testGetTaskCounts.json @@ -1,523 +1,481 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:44 GMT", + "date" : "Fri, 11 Feb 2022 01:03:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "af35ee48-2aaf-4708-ade8-42c66408f5b6", + "request-id" : "b1fc6e00-77ba-438f-8592-d7d7b2417839", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:44 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:57 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a33239d7-388c-40bc-a439-493677782cb7", - "etag" : "0x8D95060AFC41683", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "client-request-id" : "f1bade71-58a5-4a9d-9a24-00a351bda37a", + "etag" : "0x8D9ECFA6196C3E3", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/taskcounts?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/taskcounts?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:00 GMT", - "content-length" : "384", + "date" : "Fri, 11 Feb 2022 01:03:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "809a44d1-e7ac-4e7f-8c34-947e32c97aa3", + "client-request-id" : "ac563875-002f-44bb-84ba-0248d86f29de", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "c650b543-db78-439f-ad17-f98dd5ede4a1", - "StatusCode" : "500", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"InternalError\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"Server encountered an internal error. Please try again after some time.\\nRequestId:c650b543-db78-439f-ad17-f98dd5ede4a1\\nTime:2021-07-26T18:11:00.5873690Z\"\r\n }\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/taskcounts?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:15 GMT", - "content-length" : "384", - "server" : "Microsoft-HTTPAPI/2.0", - "x-content-type-options" : "nosniff", - "client-request-id" : "809a44d1-e7ac-4e7f-8c34-947e32c97aa3", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "3354504c-b55c-4df0-bedc-4d2be9fb0316", - "StatusCode" : "500", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"InternalError\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"Server encountered an internal error. Please try again after some time.\\nRequestId:3354504c-b55c-4df0-bedc-4d2be9fb0316\\nTime:2021-07-26T18:11:15.7330782Z\"\r\n }\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" - } - }, { - "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/taskcounts?api-version=2021-06-01.14.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "x-content-type-options" : "nosniff", - "client-request-id" : "809a44d1-e7ac-4e7f-8c34-947e32c97aa3", - "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "71686348-1535-4f13-844f-7ad4989db327", + "request-id" : "31c2a51f-021f-4f4e-8f01-e305b673413f", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskcountsresult/@Element\",\"taskCounts\":{\r\n \"active\":0,\"running\":0,\"completed\":0,\"succeeded\":0,\"failed\":0\r\n },\"taskSlotCounts\":{\r\n \"active\":0,\"running\":0,\"completed\":0,\"succeeded\":0,\"failed\":0\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskcountsresult/@Element\",\"taskCounts\":{\r\n \"active\":0,\"running\":0,\"completed\":0,\"succeeded\":0,\"failed\":0\r\n },\"taskSlotCounts\":{\r\n \"active\":0,\"running\":0,\"completed\":0,\"succeeded\":0,\"failed\":0\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:26 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "d0eaf125-4d60-44e1-93a6-b1734959b433", + "client-request-id" : "3a366f9a-d984-44bb-9f2d-31e4e3ca627b", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "9a52b262-3622-4462-ae73-c11b28bc4d05", + "request-id" : "2c21fa61-3ca2-4e73-bba8-3b7e3bd4ed3a", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask450\",\"eTag\":\"0x8D95060C8CB536A\",\"lastModified\":\"2021-07-26T18:11:26.5486698Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask450\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask470\",\"eTag\":\"0x8D95060C8DF5087\",\"lastModified\":\"2021-07-26T18:11:26.6796679Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask470\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask452\",\"eTag\":\"0x8D95060C8CE87E4\",\"lastModified\":\"2021-07-26T18:11:26.569674Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask452\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask467\",\"eTag\":\"0x8D95060C9168EA1\",\"lastModified\":\"2021-07-26T18:11:27.0417057Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask467\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask468\",\"eTag\":\"0x8D95060C9179E13\",\"lastModified\":\"2021-07-26T18:11:27.0486547Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask468\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask474\",\"eTag\":\"0x8D95060C91A0F0B\",\"lastModified\":\"2021-07-26T18:11:27.0646539Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask474\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask451\",\"eTag\":\"0x8D95060C8FA2B40\",\"lastModified\":\"2021-07-26T18:11:26.8556608Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask451\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask455\",\"eTag\":\"0x8D95060C901F353\",\"lastModified\":\"2021-07-26T18:11:26.9066579Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask455\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask453\",\"eTag\":\"0x8D95060C8FFF7A1\",\"lastModified\":\"2021-07-26T18:11:26.8936609Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask453\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask454\",\"eTag\":\"0x8D95060C90304CE\",\"lastModified\":\"2021-07-26T18:11:26.913659Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask454\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask456\",\"eTag\":\"0x8D95060C902DDCF\",\"lastModified\":\"2021-07-26T18:11:26.9126607Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask456\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask459\",\"eTag\":\"0x8D95060C90FD5FF\",\"lastModified\":\"2021-07-26T18:11:26.9976575Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask459\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask461\",\"eTag\":\"0x8D95060C9129519\",\"lastModified\":\"2021-07-26T18:11:27.0156569Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask461\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask457\",\"eTag\":\"0x8D95060C9104B2E\",\"lastModified\":\"2021-07-26T18:11:27.0006574Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask457\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask458\",\"eTag\":\"0x8D95060C9104B2E\",\"lastModified\":\"2021-07-26T18:11:27.0006574Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask458\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask462\",\"eTag\":\"0x8D95060C912BC11\",\"lastModified\":\"2021-07-26T18:11:27.0166545Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask462\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask463\",\"eTag\":\"0x8D95060C9129519\",\"lastModified\":\"2021-07-26T18:11:27.0156569Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask463\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask464\",\"eTag\":\"0x8D95060C912BC11\",\"lastModified\":\"2021-07-26T18:11:27.0166545Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask464\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask460\",\"eTag\":\"0x8D95060C911AAAE\",\"lastModified\":\"2021-07-26T18:11:27.0096558Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask460\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask465\",\"eTag\":\"0x8D95060C91442BE\",\"lastModified\":\"2021-07-26T18:11:27.0266558Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask465\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask466\",\"eTag\":\"0x8D95060C9157B3C\",\"lastModified\":\"2021-07-26T18:11:27.0346556Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask466\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask473\",\"eTag\":\"0x8D95060C91A844D\",\"lastModified\":\"2021-07-26T18:11:27.0676557Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask473\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask472\",\"eTag\":\"0x8D95060C91B4795\",\"lastModified\":\"2021-07-26T18:11:27.0726549Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask472\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask476\",\"eTag\":\"0x8D95060C91B2156\",\"lastModified\":\"2021-07-26T18:11:27.0716758Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask476\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask478\",\"eTag\":\"0x8D95060C91C5906\",\"lastModified\":\"2021-07-26T18:11:27.079655Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask478\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask475\",\"eTag\":\"0x8D95060C91C0AC6\",\"lastModified\":\"2021-07-26T18:11:27.0776518Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask475\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask477\",\"eTag\":\"0x8D95060C91CF529\",\"lastModified\":\"2021-07-26T18:11:27.0836521Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask477\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask479\",\"eTag\":\"0x8D95060C91D6A76\",\"lastModified\":\"2021-07-26T18:11:27.086655Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask479\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask480\",\"eTag\":\"0x8D95060C91D1C47\",\"lastModified\":\"2021-07-26T18:11:27.0846535Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask480\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask469\",\"eTag\":\"0x8D95060C91E7C35\",\"lastModified\":\"2021-07-26T18:11:27.0936629Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask469\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask481\",\"eTag\":\"0x8D95060C91EA388\",\"lastModified\":\"2021-07-26T18:11:27.0946696Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask481\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask484\",\"eTag\":\"0x8D95060C920778A\",\"lastModified\":\"2021-07-26T18:11:27.1066506Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask484\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask487\",\"eTag\":\"0x8D95060C920C5B2\",\"lastModified\":\"2021-07-26T18:11:27.1086514Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask487\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask489\",\"eTag\":\"0x8D95060C9213B04\",\"lastModified\":\"2021-07-26T18:11:27.1116548Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask489\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask486\",\"eTag\":\"0x8D95060C920ECC7\",\"lastModified\":\"2021-07-26T18:11:27.1096519Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask486\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask483\",\"eTag\":\"0x8D95060C92113D7\",\"lastModified\":\"2021-07-26T18:11:27.1106519Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask483\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask482\",\"eTag\":\"0x8D95060C91EF1CA\",\"lastModified\":\"2021-07-26T18:11:27.096673Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask482\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask485\",\"eTag\":\"0x8D95060C920778A\",\"lastModified\":\"2021-07-26T18:11:27.1066506Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask485\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask492\",\"eTag\":\"0x8D95060C922C194\",\"lastModified\":\"2021-07-26T18:11:27.1216532Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask492\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask488\",\"eTag\":\"0x8D95060C922254C\",\"lastModified\":\"2021-07-26T18:11:27.1176524Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask488\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask491\",\"eTag\":\"0x8D95060C9229A74\",\"lastModified\":\"2021-07-26T18:11:27.1206516Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask491\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask490\",\"eTag\":\"0x8D95060C9224C60\",\"lastModified\":\"2021-07-26T18:11:27.1186528Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask490\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask497\",\"eTag\":\"0x8D95060C9235DCD\",\"lastModified\":\"2021-07-26T18:11:27.1256525Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask497\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask494\",\"eTag\":\"0x8D95060C923FA37\",\"lastModified\":\"2021-07-26T18:11:27.1296567Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask494\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask495\",\"eTag\":\"0x8D95060C9231095\",\"lastModified\":\"2021-07-26T18:11:27.1236757Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask495\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask496\",\"eTag\":\"0x8D95060C923D2FE\",\"lastModified\":\"2021-07-26T18:11:27.1286526Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask496\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask493\",\"eTag\":\"0x8D95060C923372A\",\"lastModified\":\"2021-07-26T18:11:27.1246634Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask493\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask498\",\"eTag\":\"0x8D95060C9242102\",\"lastModified\":\"2021-07-26T18:11:27.1306498Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask498\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask471\",\"eTag\":\"0x8D95060C923ABF6\",\"lastModified\":\"2021-07-26T18:11:27.1276534Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask471\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask499\",\"eTag\":\"0x8D95060C924E474\",\"lastModified\":\"2021-07-26T18:11:27.1356532Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask499\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask253\",\"eTag\":\"0x8D9ECFA61F44C75\",\"lastModified\":\"2022-02-11T01:03:57.9015285Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask253\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask254\",\"eTag\":\"0x8D9ECFA61F44C75\",\"lastModified\":\"2022-02-11T01:03:57.9015285Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask254\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask252\",\"eTag\":\"0x8D9ECFA61F4256A\",\"lastModified\":\"2022-02-11T01:03:57.900529Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask252\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask251\",\"eTag\":\"0x8D9ECFA61F44C75\",\"lastModified\":\"2022-02-11T01:03:57.9015285Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask251\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask255\",\"eTag\":\"0x8D9ECFA61F44C75\",\"lastModified\":\"2022-02-11T01:03:57.9015285Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask255\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask250\",\"eTag\":\"0x8D9ECFA61F44C75\",\"lastModified\":\"2022-02-11T01:03:57.9015285Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask250\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask258\",\"eTag\":\"0x8D9ECFA61F6E46C\",\"lastModified\":\"2022-02-11T01:03:57.918526Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask258\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask261\",\"eTag\":\"0x8D9ECFA61F70B97\",\"lastModified\":\"2022-02-11T01:03:57.9195287Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask261\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask257\",\"eTag\":\"0x8D9ECFA61F70B97\",\"lastModified\":\"2022-02-11T01:03:57.9195287Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask257\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask260\",\"eTag\":\"0x8D9ECFA61F70B97\",\"lastModified\":\"2022-02-11T01:03:57.9195287Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask260\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask262\",\"eTag\":\"0x8D9ECFA61F70B97\",\"lastModified\":\"2022-02-11T01:03:57.9195287Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask262\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask263\",\"eTag\":\"0x8D9ECFA61F732C4\",\"lastModified\":\"2022-02-11T01:03:57.9205316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask263\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask265\",\"eTag\":\"0x8D9ECFA61F732C4\",\"lastModified\":\"2022-02-11T01:03:57.9205316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask265\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask267\",\"eTag\":\"0x8D9ECFA61F759A4\",\"lastModified\":\"2022-02-11T01:03:57.9215268Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask267\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask256\",\"eTag\":\"0x8D9ECFA61F732C4\",\"lastModified\":\"2022-02-11T01:03:57.9205316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask256\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask273\",\"eTag\":\"0x8D9ECFA61F780B6\",\"lastModified\":\"2022-02-11T01:03:57.922527Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask273\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask269\",\"eTag\":\"0x8D9ECFA61F759A4\",\"lastModified\":\"2022-02-11T01:03:57.9215268Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask269\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask266\",\"eTag\":\"0x8D9ECFA61F732C4\",\"lastModified\":\"2022-02-11T01:03:57.9205316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask266\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask268\",\"eTag\":\"0x8D9ECFA61F759A4\",\"lastModified\":\"2022-02-11T01:03:57.9215268Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask268\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask272\",\"eTag\":\"0x8D9ECFA61F780B6\",\"lastModified\":\"2022-02-11T01:03:57.922527Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask272\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask270\",\"eTag\":\"0x8D9ECFA61F759A4\",\"lastModified\":\"2022-02-11T01:03:57.9215268Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask270\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask271\",\"eTag\":\"0x8D9ECFA61F780B6\",\"lastModified\":\"2022-02-11T01:03:57.922527Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask271\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask259\",\"eTag\":\"0x8D9ECFA61F6E46C\",\"lastModified\":\"2022-02-11T01:03:57.918526Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask259\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask276\",\"eTag\":\"0x8D9ECFA61F843FB\",\"lastModified\":\"2022-02-11T01:03:57.9275259Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask276\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask278\",\"eTag\":\"0x8D9ECFA61F86B0F\",\"lastModified\":\"2022-02-11T01:03:57.9285263Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask278\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask280\",\"eTag\":\"0x8D9ECFA61F89221\",\"lastModified\":\"2022-02-11T01:03:57.9295265Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask280\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask274\",\"eTag\":\"0x8D9ECFA61F89221\",\"lastModified\":\"2022-02-11T01:03:57.9295265Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask274\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask279\",\"eTag\":\"0x8D9ECFA61F86B0F\",\"lastModified\":\"2022-02-11T01:03:57.9285263Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask279\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask281\",\"eTag\":\"0x8D9ECFA61F9557E\",\"lastModified\":\"2022-02-11T01:03:57.9345278Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask281\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask275\",\"eTag\":\"0x8D9ECFA61F86B0F\",\"lastModified\":\"2022-02-11T01:03:57.9285263Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask275\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask282\",\"eTag\":\"0x8D9ECFA61F8B93A\",\"lastModified\":\"2022-02-11T01:03:57.9305274Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask282\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask277\",\"eTag\":\"0x8D9ECFA61F8B93A\",\"lastModified\":\"2022-02-11T01:03:57.9305274Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask277\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask283\",\"eTag\":\"0x8D9ECFA61F9F1D7\",\"lastModified\":\"2022-02-11T01:03:57.9385303Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask283\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask284\",\"eTag\":\"0x8D9ECFA61FA66E6\",\"lastModified\":\"2022-02-11T01:03:57.941527Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask284\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask287\",\"eTag\":\"0x8D9ECFA61FA3FF1\",\"lastModified\":\"2022-02-11T01:03:57.9405297Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask287\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask286\",\"eTag\":\"0x8D9ECFA61FA66E6\",\"lastModified\":\"2022-02-11T01:03:57.941527Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask286\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask292\",\"eTag\":\"0x8D9ECFA61FBED76\",\"lastModified\":\"2022-02-11T01:03:57.9515254Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask292\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask290\",\"eTag\":\"0x8D9ECFA61FBED76\",\"lastModified\":\"2022-02-11T01:03:57.9515254Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask290\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask289\",\"eTag\":\"0x8D9ECFA61FC14A2\",\"lastModified\":\"2022-02-11T01:03:57.9525282Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask289\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask285\",\"eTag\":\"0x8D9ECFA61FC14A2\",\"lastModified\":\"2022-02-11T01:03:57.9525282Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask285\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask294\",\"eTag\":\"0x8D9ECFA61FC3BBE\",\"lastModified\":\"2022-02-11T01:03:57.9535294Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask294\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask296\",\"eTag\":\"0x8D9ECFA61FC14A2\",\"lastModified\":\"2022-02-11T01:03:57.9525282Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask296\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask293\",\"eTag\":\"0x8D9ECFA61FBED76\",\"lastModified\":\"2022-02-11T01:03:57.9515254Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask293\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask264\",\"eTag\":\"0x8D9ECFA61F732C4\",\"lastModified\":\"2022-02-11T01:03:57.9205316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask264\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask297\",\"eTag\":\"0x8D9ECFA61FC3BBE\",\"lastModified\":\"2022-02-11T01:03:57.9535294Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask297\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask288\",\"eTag\":\"0x8D9ECFA61FC89D3\",\"lastModified\":\"2022-02-11T01:03:57.9555283Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask288\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask295\",\"eTag\":\"0x8D9ECFA61FCB0E1\",\"lastModified\":\"2022-02-11T01:03:57.9565281Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask295\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask299\",\"eTag\":\"0x8D9ECFA61FC62CD\",\"lastModified\":\"2022-02-11T01:03:57.9545293Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask299\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask291\",\"eTag\":\"0x8D9ECFA61FC3BBE\",\"lastModified\":\"2022-02-11T01:03:57.9535294Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask291\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask298\",\"eTag\":\"0x8D9ECFA61FCB0E1\",\"lastModified\":\"2022-02-11T01:03:57.9565281Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask298\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "23532d40-edd5-49e5-b228-537ae701e199", + "client-request-id" : "74e46e1b-f7b7-4115-8e0d-1bce81d97ce3", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "ddce5a01-6af1-4d1b-99ca-38af9f04b5c5", + "request-id" : "064cc6f1-4203-46e2-b268-c88881fab026", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask0\",\"eTag\":\"0x8D95060C91A3629\",\"lastModified\":\"2021-07-26T18:11:27.0656553Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask0\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask1\",\"eTag\":\"0x8D95060C91B6E98\",\"lastModified\":\"2021-07-26T18:11:27.0736536Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask1\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask5\",\"eTag\":\"0x8D95060C91C31EC\",\"lastModified\":\"2021-07-26T18:11:27.078654Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask5\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask2\",\"eTag\":\"0x8D95060C91C8018\",\"lastModified\":\"2021-07-26T18:11:27.0806552Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask2\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask7\",\"eTag\":\"0x8D95060C91D9185\",\"lastModified\":\"2021-07-26T18:11:27.0876549Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask7\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask6\",\"eTag\":\"0x8D95060C91E06A8\",\"lastModified\":\"2021-07-26T18:11:27.0906536Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask6\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask11\",\"eTag\":\"0x8D95060C920507A\",\"lastModified\":\"2021-07-26T18:11:27.1056506Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask11\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask3\",\"eTag\":\"0x8D95060C91D434C\",\"lastModified\":\"2021-07-26T18:11:27.0856524Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask3\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask9\",\"eTag\":\"0x8D95060C9209EC3\",\"lastModified\":\"2021-07-26T18:11:27.1076547Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask9\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask8\",\"eTag\":\"0x8D95060C9209EC3\",\"lastModified\":\"2021-07-26T18:11:27.1076547Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask8\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask4\",\"eTag\":\"0x8D95060C91DB890\",\"lastModified\":\"2021-07-26T18:11:27.0886544Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask4\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask17\",\"eTag\":\"0x8D95060C92113D7\",\"lastModified\":\"2021-07-26T18:11:27.1106519Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask17\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask10\",\"eTag\":\"0x8D95060C920507A\",\"lastModified\":\"2021-07-26T18:11:27.1056506Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask10\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask14\",\"eTag\":\"0x8D95060C920ECC7\",\"lastModified\":\"2021-07-26T18:11:27.1096519Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask14\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask12\",\"eTag\":\"0x8D95060C920778A\",\"lastModified\":\"2021-07-26T18:11:27.1066506Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask12\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask13\",\"eTag\":\"0x8D95060C920C5B2\",\"lastModified\":\"2021-07-26T18:11:27.1086514Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask13\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask16\",\"eTag\":\"0x8D95060C92113D7\",\"lastModified\":\"2021-07-26T18:11:27.1106519Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask16\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask21\",\"eTag\":\"0x8D95060C9229A74\",\"lastModified\":\"2021-07-26T18:11:27.1206516Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask21\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask18\",\"eTag\":\"0x8D95060C922E984\",\"lastModified\":\"2021-07-26T18:11:27.1226756Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask18\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask22\",\"eTag\":\"0x8D95060C9231095\",\"lastModified\":\"2021-07-26T18:11:27.1236757Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask22\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask20\",\"eTag\":\"0x8D95060C92274D8\",\"lastModified\":\"2021-07-26T18:11:27.1196888Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask20\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask25\",\"eTag\":\"0x8D95060C923ABF6\",\"lastModified\":\"2021-07-26T18:11:27.1276534Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask25\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask28\",\"eTag\":\"0x8D95060C9242102\",\"lastModified\":\"2021-07-26T18:11:27.1306498Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask28\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask19\",\"eTag\":\"0x8D95060C92274D8\",\"lastModified\":\"2021-07-26T18:11:27.1196888Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask19\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask23\",\"eTag\":\"0x8D95060C92384E8\",\"lastModified\":\"2021-07-26T18:11:27.1266536Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask23\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask26\",\"eTag\":\"0x8D95060C923D2FE\",\"lastModified\":\"2021-07-26T18:11:27.1286526Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask26\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask24\",\"eTag\":\"0x8D95060C92384E8\",\"lastModified\":\"2021-07-26T18:11:27.1266536Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask24\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask31\",\"eTag\":\"0x8D95060C9250B79\",\"lastModified\":\"2021-07-26T18:11:27.1366521Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask31\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask30\",\"eTag\":\"0x8D95060C9250B79\",\"lastModified\":\"2021-07-26T18:11:27.1366521Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask30\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask32\",\"eTag\":\"0x8D95060C9261CEC\",\"lastModified\":\"2021-07-26T18:11:27.1436524Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask32\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask35\",\"eTag\":\"0x8D95060C92643FD\",\"lastModified\":\"2021-07-26T18:11:27.1446525Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask35\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask37\",\"eTag\":\"0x8D95060C925CF8B\",\"lastModified\":\"2021-07-26T18:11:27.1416715Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask37\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask34\",\"eTag\":\"0x8D95060C9266B8A\",\"lastModified\":\"2021-07-26T18:11:27.145665Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask34\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask29\",\"eTag\":\"0x8D95060C925332D\",\"lastModified\":\"2021-07-26T18:11:27.1376685Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask29\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask36\",\"eTag\":\"0x8D95060C926E0AE\",\"lastModified\":\"2021-07-26T18:11:27.1486638Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask36\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask40\",\"eTag\":\"0x8D95060C926E0AE\",\"lastModified\":\"2021-07-26T18:11:27.1486638Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask40\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask27\",\"eTag\":\"0x8D95060C9266B8A\",\"lastModified\":\"2021-07-26T18:11:27.145665Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask27\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask41\",\"eTag\":\"0x8D95060C927A423\",\"lastModified\":\"2021-07-26T18:11:27.1536675Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask41\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask42\",\"eTag\":\"0x8D95060C927F18D\",\"lastModified\":\"2021-07-26T18:11:27.1556493Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask42\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask44\",\"eTag\":\"0x8D95060C928192D\",\"lastModified\":\"2021-07-26T18:11:27.1566637Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask44\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask43\",\"eTag\":\"0x8D95060C927F18D\",\"lastModified\":\"2021-07-26T18:11:27.1556493Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask43\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask47\",\"eTag\":\"0x8D95060C9288E36\",\"lastModified\":\"2021-07-26T18:11:27.1596598Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask47\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask38\",\"eTag\":\"0x8D95060C9277CFE\",\"lastModified\":\"2021-07-26T18:11:27.1526654Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask38\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask15\",\"eTag\":\"0x8D95060C920ECC7\",\"lastModified\":\"2021-07-26T18:11:27.1096519Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask15\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask39\",\"eTag\":\"0x8D95060C9299F34\",\"lastModified\":\"2021-07-26T18:11:27.1666484Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask39\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask46\",\"eTag\":\"0x8D95060C9299F34\",\"lastModified\":\"2021-07-26T18:11:27.1666484Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask46\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask45\",\"eTag\":\"0x8D95060C9286737\",\"lastModified\":\"2021-07-26T18:11:27.1586615Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask45\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask48\",\"eTag\":\"0x8D95060C92A629D\",\"lastModified\":\"2021-07-26T18:11:27.1716509Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask48\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask49\",\"eTag\":\"0x8D95060C92BC225\",\"lastModified\":\"2021-07-26T18:11:27.1806501Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask49\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask33\",\"eTag\":\"0x8D95060C92C5E64\",\"lastModified\":\"2021-07-26T18:11:27.18465Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask33\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask451\",\"eTag\":\"0x8D9ECFA61D2454A\",\"lastModified\":\"2022-02-11T01:03:57.6785226Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask451\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask454\",\"eTag\":\"0x8D9ECFA61D2BA97\",\"lastModified\":\"2022-02-11T01:03:57.6815255Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask454\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask453\",\"eTag\":\"0x8D9ECFA61D26C61\",\"lastModified\":\"2022-02-11T01:03:57.6795233Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask453\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask455\",\"eTag\":\"0x8D9ECFA61D2E1A4\",\"lastModified\":\"2022-02-11T01:03:57.6825252Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask455\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask456\",\"eTag\":\"0x8D9ECFA61D2E1A4\",\"lastModified\":\"2022-02-11T01:03:57.6825252Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask456\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask457\",\"eTag\":\"0x8D9ECFA61D52B88\",\"lastModified\":\"2022-02-11T01:03:57.697524Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask457\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask452\",\"eTag\":\"0x8D9ECFA61D52B88\",\"lastModified\":\"2022-02-11T01:03:57.697524Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask452\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask458\",\"eTag\":\"0x8D9ECFA61D579A6\",\"lastModified\":\"2022-02-11T01:03:57.6995238Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask458\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask465\",\"eTag\":\"0x8D9ECFA61D5A0B2\",\"lastModified\":\"2022-02-11T01:03:57.7005234Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask465\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask460\",\"eTag\":\"0x8D9ECFA61D579A6\",\"lastModified\":\"2022-02-11T01:03:57.6995238Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask460\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask464\",\"eTag\":\"0x8D9ECFA61D5C7D9\",\"lastModified\":\"2022-02-11T01:03:57.7015257Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask464\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask466\",\"eTag\":\"0x8D9ECFA61D5C7D9\",\"lastModified\":\"2022-02-11T01:03:57.7015257Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask466\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask459\",\"eTag\":\"0x8D9ECFA61D579A6\",\"lastModified\":\"2022-02-11T01:03:57.6995238Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask459\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask469\",\"eTag\":\"0x8D9ECFA61D5EEE2\",\"lastModified\":\"2022-02-11T01:03:57.702525Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask469\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask467\",\"eTag\":\"0x8D9ECFA61D5EEE2\",\"lastModified\":\"2022-02-11T01:03:57.702525Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask467\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask470\",\"eTag\":\"0x8D9ECFA61D615F7\",\"lastModified\":\"2022-02-11T01:03:57.7035255Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask470\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask462\",\"eTag\":\"0x8D9ECFA61F054C3\",\"lastModified\":\"2022-02-11T01:03:57.8755267Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask462\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask463\",\"eTag\":\"0x8D9ECFA61F3B034\",\"lastModified\":\"2022-02-11T01:03:57.8975284Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask463\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask450\",\"eTag\":\"0x8D9ECFA61F4256A\",\"lastModified\":\"2022-02-11T01:03:57.900529Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask450\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask473\",\"eTag\":\"0x8D9ECFA620BCC36\",\"lastModified\":\"2022-02-11T01:03:58.0555318Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask473\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask471\",\"eTag\":\"0x8D9ECFA61D615F7\",\"lastModified\":\"2022-02-11T01:03:57.7035255Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask471\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask468\",\"eTag\":\"0x8D9ECFA61D615F7\",\"lastModified\":\"2022-02-11T01:03:57.7035255Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask468\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask461\",\"eTag\":\"0x8D9ECFA61D63D03\",\"lastModified\":\"2022-02-11T01:03:57.7045251Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask461\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask474\",\"eTag\":\"0x8D9ECFA620D2BB9\",\"lastModified\":\"2022-02-11T01:03:58.0645305Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask474\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask472\",\"eTag\":\"0x8D9ECFA61D66423\",\"lastModified\":\"2022-02-11T01:03:57.7055267Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask472\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask476\",\"eTag\":\"0x8D9ECFA620EB24B\",\"lastModified\":\"2022-02-11T01:03:58.0745291Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask476\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask478\",\"eTag\":\"0x8D9ECFA62120DBE\",\"lastModified\":\"2022-02-11T01:03:58.096531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask478\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask477\",\"eTag\":\"0x8D9ECFA6211E69C\",\"lastModified\":\"2022-02-11T01:03:58.0955292Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask477\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask475\",\"eTag\":\"0x8D9ECFA6211E69C\",\"lastModified\":\"2022-02-11T01:03:58.0955292Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask475\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask483\",\"eTag\":\"0x8D9ECFA621A240F\",\"lastModified\":\"2022-02-11T01:03:58.1495311Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask483\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask479\",\"eTag\":\"0x8D9ECFA621A4B21\",\"lastModified\":\"2022-02-11T01:03:58.1505313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask479\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask488\",\"eTag\":\"0x8D9ECFA621A9945\",\"lastModified\":\"2022-02-11T01:03:58.1525317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask488\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask485\",\"eTag\":\"0x8D9ECFA621A4B21\",\"lastModified\":\"2022-02-11T01:03:58.1505313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask485\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask482\",\"eTag\":\"0x8D9ECFA621A722F\",\"lastModified\":\"2022-02-11T01:03:58.1515311Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask482\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask484\",\"eTag\":\"0x8D9ECFA621AC04E\",\"lastModified\":\"2022-02-11T01:03:58.153531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask484\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask487\",\"eTag\":\"0x8D9ECFA621AC04E\",\"lastModified\":\"2022-02-11T01:03:58.153531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask487\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask486\",\"eTag\":\"0x8D9ECFA621A9945\",\"lastModified\":\"2022-02-11T01:03:58.1525317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask486\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask491\",\"eTag\":\"0x8D9ECFA621D0A47\",\"lastModified\":\"2022-02-11T01:03:58.1685319Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask491\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask495\",\"eTag\":\"0x8D9ECFA621E1BA9\",\"lastModified\":\"2022-02-11T01:03:58.1755305Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask495\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask492\",\"eTag\":\"0x8D9ECFA621E1BA9\",\"lastModified\":\"2022-02-11T01:03:58.1755305Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask492\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask489\",\"eTag\":\"0x8D9ECFA621E90EC\",\"lastModified\":\"2022-02-11T01:03:58.1785324Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask489\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask490\",\"eTag\":\"0x8D9ECFA621F0602\",\"lastModified\":\"2022-02-11T01:03:58.1815298Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask490\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask493\",\"eTag\":\"0x8D9ECFA6220DAD5\",\"lastModified\":\"2022-02-11T01:03:58.1935317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask493\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask498\",\"eTag\":\"0x8D9ECFA6221770E\",\"lastModified\":\"2022-02-11T01:03:58.197531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask498\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask497\",\"eTag\":\"0x8D9ECFA6220B3DA\",\"lastModified\":\"2022-02-11T01:03:58.1925338Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask497\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask499\",\"eTag\":\"0x8D9ECFA6220DAD5\",\"lastModified\":\"2022-02-11T01:03:58.1935317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask499\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask494\",\"eTag\":\"0x8D9ECFA6220DAD5\",\"lastModified\":\"2022-02-11T01:03:58.1935317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask494\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask480\",\"eTag\":\"0x8D9ECFA62219E1C\",\"lastModified\":\"2022-02-11T01:03:58.1985308Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask480\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask496\",\"eTag\":\"0x8D9ECFA6229B472\",\"lastModified\":\"2022-02-11T01:03:58.2515314Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask496\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask481\",\"eTag\":\"0x8D9ECFA6229DB99\",\"lastModified\":\"2022-02-11T01:03:58.2525337Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask481\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "71860ecb-bbcf-4ca7-93f4-042dbad029a6", + "client-request-id" : "4e57a615-3344-428f-af98-953adea1d834", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "4e9a2e28-dd83-4eb1-8087-acdcf6cb2971", + "request-id" : "e5de36a0-edda-42f6-8c5f-a8cb3f9f67a3", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask350\",\"eTag\":\"0x8D95060C922C194\",\"lastModified\":\"2021-07-26T18:11:27.1216532Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask350\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask351\",\"eTag\":\"0x8D95060C924C078\",\"lastModified\":\"2021-07-26T18:11:27.134732Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask351\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask353\",\"eTag\":\"0x8D95060C924E474\",\"lastModified\":\"2021-07-26T18:11:27.1356532Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask353\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask357\",\"eTag\":\"0x8D95060C925A7B7\",\"lastModified\":\"2021-07-26T18:11:27.1406519Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask357\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask356\",\"eTag\":\"0x8D95060C924E474\",\"lastModified\":\"2021-07-26T18:11:27.1356532Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask356\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask362\",\"eTag\":\"0x8D95060C926B923\",\"lastModified\":\"2021-07-26T18:11:27.1476515Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask362\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask354\",\"eTag\":\"0x8D95060C925332D\",\"lastModified\":\"2021-07-26T18:11:27.1376685Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask354\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask358\",\"eTag\":\"0x8D95060C9261CEC\",\"lastModified\":\"2021-07-26T18:11:27.1436524Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask358\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask360\",\"eTag\":\"0x8D95060C92580A9\",\"lastModified\":\"2021-07-26T18:11:27.1396521Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask360\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask359\",\"eTag\":\"0x8D95060C925F5E0\",\"lastModified\":\"2021-07-26T18:11:27.1426528Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask359\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask355\",\"eTag\":\"0x8D95060C9255986\",\"lastModified\":\"2021-07-26T18:11:27.1386502Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask355\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask361\",\"eTag\":\"0x8D95060C9269206\",\"lastModified\":\"2021-07-26T18:11:27.1466502Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask361\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask367\",\"eTag\":\"0x8D95060C926E0AE\",\"lastModified\":\"2021-07-26T18:11:27.1486638Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask367\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask364\",\"eTag\":\"0x8D95060C9269206\",\"lastModified\":\"2021-07-26T18:11:27.1466502Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask364\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask366\",\"eTag\":\"0x8D95060C926B923\",\"lastModified\":\"2021-07-26T18:11:27.1476515Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask366\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask363\",\"eTag\":\"0x8D95060C92643FD\",\"lastModified\":\"2021-07-26T18:11:27.1446525Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask363\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask370\",\"eTag\":\"0x8D95060C927A423\",\"lastModified\":\"2021-07-26T18:11:27.1536675Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask370\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask368\",\"eTag\":\"0x8D95060C9272E85\",\"lastModified\":\"2021-07-26T18:11:27.1506565Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask368\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask371\",\"eTag\":\"0x8D95060C9286737\",\"lastModified\":\"2021-07-26T18:11:27.1586615Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask371\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask373\",\"eTag\":\"0x8D95060C928DC9A\",\"lastModified\":\"2021-07-26T18:11:27.1616666Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask373\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask352\",\"eTag\":\"0x8D95060C9244816\",\"lastModified\":\"2021-07-26T18:11:27.1316502Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask352\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask374\",\"eTag\":\"0x8D95060C9290394\",\"lastModified\":\"2021-07-26T18:11:27.1626644Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask374\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask372\",\"eTag\":\"0x8D95060C9288E36\",\"lastModified\":\"2021-07-26T18:11:27.1596598Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask372\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask369\",\"eTag\":\"0x8D95060C9277CFE\",\"lastModified\":\"2021-07-26T18:11:27.1526654Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask369\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask376\",\"eTag\":\"0x8D95060C92C104A\",\"lastModified\":\"2021-07-26T18:11:27.1826506Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask376\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask375\",\"eTag\":\"0x8D95060C92BE928\",\"lastModified\":\"2021-07-26T18:11:27.1816488Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask375\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask378\",\"eTag\":\"0x8D95060C92C104A\",\"lastModified\":\"2021-07-26T18:11:27.1826506Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask378\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask379\",\"eTag\":\"0x8D95060C92C377F\",\"lastModified\":\"2021-07-26T18:11:27.1836543Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask379\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask380\",\"eTag\":\"0x8D95060C92D225B\",\"lastModified\":\"2021-07-26T18:11:27.1896667Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask380\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask382\",\"eTag\":\"0x8D95060C92D9730\",\"lastModified\":\"2021-07-26T18:11:27.1926576Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask382\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask381\",\"eTag\":\"0x8D95060C92C8566\",\"lastModified\":\"2021-07-26T18:11:27.1856486Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask381\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask384\",\"eTag\":\"0x8D95060C92EA855\",\"lastModified\":\"2021-07-26T18:11:27.1996501Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask384\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask387\",\"eTag\":\"0x8D95060C92ECF51\",\"lastModified\":\"2021-07-26T18:11:27.2006481Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask387\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask388\",\"eTag\":\"0x8D95060C92F6BDE\",\"lastModified\":\"2021-07-26T18:11:27.2046558Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask388\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask377\",\"eTag\":\"0x8D95060C92D6FCD\",\"lastModified\":\"2021-07-26T18:11:27.1916493Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask377\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask365\",\"eTag\":\"0x8D95060C92E0F52\",\"lastModified\":\"2021-07-26T18:11:27.195733Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask365\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask390\",\"eTag\":\"0x8D95060C92FB9BD\",\"lastModified\":\"2021-07-26T18:11:27.2066493Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask390\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask386\",\"eTag\":\"0x8D95060C92EA855\",\"lastModified\":\"2021-07-26T18:11:27.1996501Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask386\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask392\",\"eTag\":\"0x8D95060C92FE0E1\",\"lastModified\":\"2021-07-26T18:11:27.2076513Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask392\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask389\",\"eTag\":\"0x8D95060C92F448E\",\"lastModified\":\"2021-07-26T18:11:27.2036494Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask389\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask395\",\"eTag\":\"0x8D95060C93055FF\",\"lastModified\":\"2021-07-26T18:11:27.2106495Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask395\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask385\",\"eTag\":\"0x8D95060C92ECF51\",\"lastModified\":\"2021-07-26T18:11:27.2006481Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask385\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask397\",\"eTag\":\"0x8D95060C93055FF\",\"lastModified\":\"2021-07-26T18:11:27.2106495Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask397\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask391\",\"eTag\":\"0x8D95060C92FE0E1\",\"lastModified\":\"2021-07-26T18:11:27.2076513Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask391\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask393\",\"eTag\":\"0x8D95060C9300833\",\"lastModified\":\"2021-07-26T18:11:27.2086579Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask393\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask394\",\"eTag\":\"0x8D95060C9300833\",\"lastModified\":\"2021-07-26T18:11:27.2086579Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask394\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask383\",\"eTag\":\"0x8D95060C930A425\",\"lastModified\":\"2021-07-26T18:11:27.2126501Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask383\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask398\",\"eTag\":\"0x8D95060C930A425\",\"lastModified\":\"2021-07-26T18:11:27.2126501Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask398\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask396\",\"eTag\":\"0x8D95060C9307CFE\",\"lastModified\":\"2021-07-26T18:11:27.2116478Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask396\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask399\",\"eTag\":\"0x8D95060C930F231\",\"lastModified\":\"2021-07-26T18:11:27.2146481Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask399\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask400\",\"eTag\":\"0x8D9ECFA61D133F9\",\"lastModified\":\"2022-02-11T01:03:57.6715257Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask400\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask407\",\"eTag\":\"0x8D9ECFA61D308BD\",\"lastModified\":\"2022-02-11T01:03:57.6835261Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask407\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask402\",\"eTag\":\"0x8D9ECFA61D2938A\",\"lastModified\":\"2022-02-11T01:03:57.6805258Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask402\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask404\",\"eTag\":\"0x8D9ECFA61D2BA97\",\"lastModified\":\"2022-02-11T01:03:57.6815255Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask404\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask403\",\"eTag\":\"0x8D9ECFA61D2938A\",\"lastModified\":\"2022-02-11T01:03:57.6805258Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask403\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask405\",\"eTag\":\"0x8D9ECFA61D2E1A4\",\"lastModified\":\"2022-02-11T01:03:57.6825252Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask405\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask401\",\"eTag\":\"0x8D9ECFA61D552A2\",\"lastModified\":\"2022-02-11T01:03:57.698525Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask401\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask406\",\"eTag\":\"0x8D9ECFA61D2E1A4\",\"lastModified\":\"2022-02-11T01:03:57.6825252Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask406\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask409\",\"eTag\":\"0x8D9ECFA61D579A6\",\"lastModified\":\"2022-02-11T01:03:57.6995238Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask409\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask408\",\"eTag\":\"0x8D9ECFA61D579A6\",\"lastModified\":\"2022-02-11T01:03:57.6995238Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask408\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask410\",\"eTag\":\"0x8D9ECFA61D579A6\",\"lastModified\":\"2022-02-11T01:03:57.6995238Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask410\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask411\",\"eTag\":\"0x8D9ECFA61D5A0B2\",\"lastModified\":\"2022-02-11T01:03:57.7005234Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask411\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask416\",\"eTag\":\"0x8D9ECFA61D5C7D9\",\"lastModified\":\"2022-02-11T01:03:57.7015257Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask416\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask415\",\"eTag\":\"0x8D9ECFA61D5C7D9\",\"lastModified\":\"2022-02-11T01:03:57.7015257Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask415\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask414\",\"eTag\":\"0x8D9ECFA61D5A0B2\",\"lastModified\":\"2022-02-11T01:03:57.7005234Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask414\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask418\",\"eTag\":\"0x8D9ECFA61D5EEE2\",\"lastModified\":\"2022-02-11T01:03:57.702525Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask418\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask412\",\"eTag\":\"0x8D9ECFA61D5A0B2\",\"lastModified\":\"2022-02-11T01:03:57.7005234Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask412\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask420\",\"eTag\":\"0x8D9ECFA6210D52F\",\"lastModified\":\"2022-02-11T01:03:58.0885295Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask420\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask417\",\"eTag\":\"0x8D9ECFA61D615F7\",\"lastModified\":\"2022-02-11T01:03:57.7035255Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask417\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask421\",\"eTag\":\"0x8D9ECFA6211E69C\",\"lastModified\":\"2022-02-11T01:03:58.0955292Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask421\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask413\",\"eTag\":\"0x8D9ECFA61D5C7D9\",\"lastModified\":\"2022-02-11T01:03:57.7015257Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask413\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask426\",\"eTag\":\"0x8D9ECFA621AC04E\",\"lastModified\":\"2022-02-11T01:03:58.153531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask426\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask423\",\"eTag\":\"0x8D9ECFA621D0A47\",\"lastModified\":\"2022-02-11T01:03:58.1685319Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask423\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask424\",\"eTag\":\"0x8D9ECFA621D315C\",\"lastModified\":\"2022-02-11T01:03:58.1695324Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask424\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask425\",\"eTag\":\"0x8D9ECFA621E69D2\",\"lastModified\":\"2022-02-11T01:03:58.1775314Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask425\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask432\",\"eTag\":\"0x8D9ECFA621EDF0F\",\"lastModified\":\"2022-02-11T01:03:58.1805327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask432\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask429\",\"eTag\":\"0x8D9ECFA621EDF0F\",\"lastModified\":\"2022-02-11T01:03:58.1805327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask429\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask419\",\"eTag\":\"0x8D9ECFA6238A897\",\"lastModified\":\"2022-02-11T01:03:58.3495319Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask419\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask422\",\"eTag\":\"0x8D9ECFA622101E0\",\"lastModified\":\"2022-02-11T01:03:58.1945312Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask422\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask427\",\"eTag\":\"0x8D9ECFA621F0602\",\"lastModified\":\"2022-02-11T01:03:58.1815298Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask427\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask436\",\"eTag\":\"0x8D9ECFA62221354\",\"lastModified\":\"2022-02-11T01:03:58.2015316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask436\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask430\",\"eTag\":\"0x8D9ECFA622101E0\",\"lastModified\":\"2022-02-11T01:03:58.1945312Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask430\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask428\",\"eTag\":\"0x8D9ECFA622101E0\",\"lastModified\":\"2022-02-11T01:03:58.1945312Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask428\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask437\",\"eTag\":\"0x8D9ECFA62219E1C\",\"lastModified\":\"2022-02-11T01:03:58.1985308Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask437\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask434\",\"eTag\":\"0x8D9ECFA62219E1C\",\"lastModified\":\"2022-02-11T01:03:58.1985308Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask434\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask433\",\"eTag\":\"0x8D9ECFA62212903\",\"lastModified\":\"2022-02-11T01:03:58.1955331Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask433\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask431\",\"eTag\":\"0x8D9ECFA621F0602\",\"lastModified\":\"2022-02-11T01:03:58.1815298Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask431\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask438\",\"eTag\":\"0x8D9ECFA62240F07\",\"lastModified\":\"2022-02-11T01:03:58.2145287Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask438\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask442\",\"eTag\":\"0x8D9ECFA62243635\",\"lastModified\":\"2022-02-11T01:03:58.2155317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask442\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask435\",\"eTag\":\"0x8D9ECFA6221C53A\",\"lastModified\":\"2022-02-11T01:03:58.1995322Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask435\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask441\",\"eTag\":\"0x8D9ECFA6225BCBE\",\"lastModified\":\"2022-02-11T01:03:58.2255294Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask441\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask443\",\"eTag\":\"0x8D9ECFA62248454\",\"lastModified\":\"2022-02-11T01:03:58.2175316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask443\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask449\",\"eTag\":\"0x8D9ECFA622547AC\",\"lastModified\":\"2022-02-11T01:03:58.2225324Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask449\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask439\",\"eTag\":\"0x8D9ECFA6224D259\",\"lastModified\":\"2022-02-11T01:03:58.2195289Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask439\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask446\",\"eTag\":\"0x8D9ECFA62298D63\",\"lastModified\":\"2022-02-11T01:03:58.2505315Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask446\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask444\",\"eTag\":\"0x8D9ECFA62248454\",\"lastModified\":\"2022-02-11T01:03:58.2175316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask444\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask448\",\"eTag\":\"0x8D9ECFA6224D259\",\"lastModified\":\"2022-02-11T01:03:58.2195289Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask448\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask445\",\"eTag\":\"0x8D9ECFA6224D259\",\"lastModified\":\"2022-02-11T01:03:58.2195289Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask445\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask447\",\"eTag\":\"0x8D9ECFA6224F967\",\"lastModified\":\"2022-02-11T01:03:58.2205287Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask447\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask440\",\"eTag\":\"0x8D9ECFA6225BCBE\",\"lastModified\":\"2022-02-11T01:03:58.2255294Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask440\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "5319655b-f582-48b2-b05a-6728965c830d", + "client-request-id" : "3238ccb2-3eb4-418d-bd33-e8bd3a2d5b7a", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "1b47c94b-0a5a-43c2-9694-b6db0f057783", + "request-id" : "f6b025b5-d393-4e20-aa01-6bdfe1beff77", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask400\",\"eTag\":\"0x8D95060C96966CA\",\"lastModified\":\"2021-07-26T18:11:27.5846346Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask400\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask421\",\"eTag\":\"0x8D95060C96C9B18\",\"lastModified\":\"2021-07-26T18:11:27.6056344Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask421\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask401\",\"eTag\":\"0x8D95060C9698DDB\",\"lastModified\":\"2021-07-26T18:11:27.5856347Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask401\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask429\",\"eTag\":\"0x8D95060C96CF333\",\"lastModified\":\"2021-07-26T18:11:27.6078899Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask429\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask402\",\"eTag\":\"0x8D95060C96966CA\",\"lastModified\":\"2021-07-26T18:11:27.5846346Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask402\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask404\",\"eTag\":\"0x8D95060C969B501\",\"lastModified\":\"2021-07-26T18:11:27.5866369Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask404\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask406\",\"eTag\":\"0x8D95060C969DC09\",\"lastModified\":\"2021-07-26T18:11:27.5876361Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask406\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask403\",\"eTag\":\"0x8D95060C969B501\",\"lastModified\":\"2021-07-26T18:11:27.5866369Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask403\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask405\",\"eTag\":\"0x8D95060C969B501\",\"lastModified\":\"2021-07-26T18:11:27.5866369Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask405\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask408\",\"eTag\":\"0x8D95060C96A5131\",\"lastModified\":\"2021-07-26T18:11:27.5906353Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask408\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask407\",\"eTag\":\"0x8D95060C96A5131\",\"lastModified\":\"2021-07-26T18:11:27.5906353Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask407\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask409\",\"eTag\":\"0x8D95060C96AA0AE\",\"lastModified\":\"2021-07-26T18:11:27.5926702Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask409\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask410\",\"eTag\":\"0x8D95060C96AA0AE\",\"lastModified\":\"2021-07-26T18:11:27.5926702Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask410\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask412\",\"eTag\":\"0x8D95060C96AC669\",\"lastModified\":\"2021-07-26T18:11:27.5936361Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask412\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask413\",\"eTag\":\"0x8D95060C96AED78\",\"lastModified\":\"2021-07-26T18:11:27.594636Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask413\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask415\",\"eTag\":\"0x8D95060C96AED78\",\"lastModified\":\"2021-07-26T18:11:27.594636Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask415\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask416\",\"eTag\":\"0x8D95060C96B1492\",\"lastModified\":\"2021-07-26T18:11:27.595637Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask416\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask417\",\"eTag\":\"0x8D95060C96B1492\",\"lastModified\":\"2021-07-26T18:11:27.595637Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask417\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask419\",\"eTag\":\"0x8D95060C96B62AE\",\"lastModified\":\"2021-07-26T18:11:27.5976366Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask419\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask424\",\"eTag\":\"0x8D95060C96D3762\",\"lastModified\":\"2021-07-26T18:11:27.6096354Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask424\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask420\",\"eTag\":\"0x8D95060C96B3B9E\",\"lastModified\":\"2021-07-26T18:11:27.5966366Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask420\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask431\",\"eTag\":\"0x8D95060C96DAC96\",\"lastModified\":\"2021-07-26T18:11:27.6126358Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask431\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask422\",\"eTag\":\"0x8D95060C96CC233\",\"lastModified\":\"2021-07-26T18:11:27.6066355Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask422\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask414\",\"eTag\":\"0x8D95060C96B1492\",\"lastModified\":\"2021-07-26T18:11:27.595637Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask414\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask430\",\"eTag\":\"0x8D95060C96D8584\",\"lastModified\":\"2021-07-26T18:11:27.6116356Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask430\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask418\",\"eTag\":\"0x8D95060C96B89BD\",\"lastModified\":\"2021-07-26T18:11:27.5986365Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask418\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask428\",\"eTag\":\"0x8D95060C96CF333\",\"lastModified\":\"2021-07-26T18:11:27.6078899Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask428\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask426\",\"eTag\":\"0x8D95060C96D3762\",\"lastModified\":\"2021-07-26T18:11:27.6096354Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask426\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask411\",\"eTag\":\"0x8D95060C96D5E76\",\"lastModified\":\"2021-07-26T18:11:27.6106358Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask411\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask437\",\"eTag\":\"0x8D95060C96E48D8\",\"lastModified\":\"2021-07-26T18:11:27.616636Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask437\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask427\",\"eTag\":\"0x8D95060C96D5E76\",\"lastModified\":\"2021-07-26T18:11:27.6106358Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask427\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask423\",\"eTag\":\"0x8D95060C96C9B18\",\"lastModified\":\"2021-07-26T18:11:27.6056344Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask423\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask433\",\"eTag\":\"0x8D95060C96E21C8\",\"lastModified\":\"2021-07-26T18:11:27.615636Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask433\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask425\",\"eTag\":\"0x8D95060C96D5E76\",\"lastModified\":\"2021-07-26T18:11:27.6106358Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask425\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask434\",\"eTag\":\"0x8D95060C96DFAB3\",\"lastModified\":\"2021-07-26T18:11:27.6146355Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask434\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask435\",\"eTag\":\"0x8D95060C96E21C8\",\"lastModified\":\"2021-07-26T18:11:27.615636Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask435\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask436\",\"eTag\":\"0x8D95060C96E48D8\",\"lastModified\":\"2021-07-26T18:11:27.616636Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask436\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask438\",\"eTag\":\"0x8D95060C96E7013\",\"lastModified\":\"2021-07-26T18:11:27.6176403Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask438\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask448\",\"eTag\":\"0x8D95060C97044B6\",\"lastModified\":\"2021-07-26T18:11:27.6296374Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask448\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask449\",\"eTag\":\"0x8D95060C97044B6\",\"lastModified\":\"2021-07-26T18:11:27.6296374Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask449\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask446\",\"eTag\":\"0x8D95060C9706BA8\",\"lastModified\":\"2021-07-26T18:11:27.6306344Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask446\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask442\",\"eTag\":\"0x8D95060C96FCF4C\",\"lastModified\":\"2021-07-26T18:11:27.6266316Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask442\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask444\",\"eTag\":\"0x8D95060C96EBDF6\",\"lastModified\":\"2021-07-26T18:11:27.6196342Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask444\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask440\",\"eTag\":\"0x8D95060C96EE512\",\"lastModified\":\"2021-07-26T18:11:27.6206354Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask440\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask445\",\"eTag\":\"0x8D95060C970B9C8\",\"lastModified\":\"2021-07-26T18:11:27.6326344Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask445\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask443\",\"eTag\":\"0x8D95060C9701D75\",\"lastModified\":\"2021-07-26T18:11:27.6286325Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask443\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask441\",\"eTag\":\"0x8D95060C970B9C8\",\"lastModified\":\"2021-07-26T18:11:27.6326344Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask441\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask439\",\"eTag\":\"0x8D95060C96E7013\",\"lastModified\":\"2021-07-26T18:11:27.6176403Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask439\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask447\",\"eTag\":\"0x8D95060C96FF6FC\",\"lastModified\":\"2021-07-26T18:11:27.6276476Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask447\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask432\",\"eTag\":\"0x8D95060C96C9B18\",\"lastModified\":\"2021-07-26T18:11:27.6056344Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask432\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask301\",\"eTag\":\"0x8D9ECFA61D2BA97\",\"lastModified\":\"2022-02-11T01:03:57.6815255Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask301\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask302\",\"eTag\":\"0x8D9ECFA61D2938A\",\"lastModified\":\"2022-02-11T01:03:57.6805258Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask302\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask303\",\"eTag\":\"0x8D9ECFA61D2E1A4\",\"lastModified\":\"2022-02-11T01:03:57.6825252Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask303\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask305\",\"eTag\":\"0x8D9ECFA61D5A0B2\",\"lastModified\":\"2022-02-11T01:03:57.7005234Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask305\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask306\",\"eTag\":\"0x8D9ECFA61D5A0B2\",\"lastModified\":\"2022-02-11T01:03:57.7005234Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask306\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask304\",\"eTag\":\"0x8D9ECFA61F3FE52\",\"lastModified\":\"2022-02-11T01:03:57.8995282Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask304\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask300\",\"eTag\":\"0x8D9ECFA61F7A7D8\",\"lastModified\":\"2022-02-11T01:03:57.9235288Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask300\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask307\",\"eTag\":\"0x8D9ECFA620CB660\",\"lastModified\":\"2022-02-11T01:03:58.0615264Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask307\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask308\",\"eTag\":\"0x8D9ECFA620C685C\",\"lastModified\":\"2022-02-11T01:03:58.0595292Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask308\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask309\",\"eTag\":\"0x8D9ECFA6210D52F\",\"lastModified\":\"2022-02-11T01:03:58.0885295Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask309\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask310\",\"eTag\":\"0x8D9ECFA6211BF8F\",\"lastModified\":\"2022-02-11T01:03:58.0945295Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask310\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask315\",\"eTag\":\"0x8D9ECFA621A240F\",\"lastModified\":\"2022-02-11T01:03:58.1495311Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask315\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask314\",\"eTag\":\"0x8D9ECFA621A4B21\",\"lastModified\":\"2022-02-11T01:03:58.1505313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask314\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask311\",\"eTag\":\"0x8D9ECFA621A722F\",\"lastModified\":\"2022-02-11T01:03:58.1515311Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask311\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask312\",\"eTag\":\"0x8D9ECFA621B0E76\",\"lastModified\":\"2022-02-11T01:03:58.1555318Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask312\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask313\",\"eTag\":\"0x8D9ECFA621A240F\",\"lastModified\":\"2022-02-11T01:03:58.1495311Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask313\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask323\",\"eTag\":\"0x8D9ECFA621D0A47\",\"lastModified\":\"2022-02-11T01:03:58.1685319Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask323\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask316\",\"eTag\":\"0x8D9ECFA621D5852\",\"lastModified\":\"2022-02-11T01:03:58.1705298Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask316\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask317\",\"eTag\":\"0x8D9ECFA621D5852\",\"lastModified\":\"2022-02-11T01:03:58.1705298Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask317\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask321\",\"eTag\":\"0x8D9ECFA621DA66B\",\"lastModified\":\"2022-02-11T01:03:58.1725291Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask321\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask318\",\"eTag\":\"0x8D9ECFA621DCD8D\",\"lastModified\":\"2022-02-11T01:03:58.1735309Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask318\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask328\",\"eTag\":\"0x8D9ECFA621DA66B\",\"lastModified\":\"2022-02-11T01:03:58.1725291Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask328\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask320\",\"eTag\":\"0x8D9ECFA621EB7FE\",\"lastModified\":\"2022-02-11T01:03:58.1795326Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask320\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask319\",\"eTag\":\"0x8D9ECFA621EB7FE\",\"lastModified\":\"2022-02-11T01:03:58.1795326Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask319\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask340\",\"eTag\":\"0x8D9ECFA623881A2\",\"lastModified\":\"2022-02-11T01:03:58.3485346Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask340\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask324\",\"eTag\":\"0x8D9ECFA6220B3DA\",\"lastModified\":\"2022-02-11T01:03:58.1925338Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask324\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask322\",\"eTag\":\"0x8D9ECFA622101E0\",\"lastModified\":\"2022-02-11T01:03:58.1945312Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask322\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask327\",\"eTag\":\"0x8D9ECFA62212903\",\"lastModified\":\"2022-02-11T01:03:58.1955331Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask327\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask326\",\"eTag\":\"0x8D9ECFA6221770E\",\"lastModified\":\"2022-02-11T01:03:58.197531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask326\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask332\",\"eTag\":\"0x8D9ECFA62221354\",\"lastModified\":\"2022-02-11T01:03:58.2015316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask332\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask334\",\"eTag\":\"0x8D9ECFA62239A10\",\"lastModified\":\"2022-02-11T01:03:58.2115344Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask334\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask325\",\"eTag\":\"0x8D9ECFA6221500A\",\"lastModified\":\"2022-02-11T01:03:58.1965322Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask325\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask335\",\"eTag\":\"0x8D9ECFA62245D2D\",\"lastModified\":\"2022-02-11T01:03:58.2165293Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask335\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask331\",\"eTag\":\"0x8D9ECFA62248454\",\"lastModified\":\"2022-02-11T01:03:58.2175316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask331\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask344\",\"eTag\":\"0x8D9ECFA6229B472\",\"lastModified\":\"2022-02-11T01:03:58.2515314Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask344\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask349\",\"eTag\":\"0x8D9ECFA622A02A2\",\"lastModified\":\"2022-02-11T01:03:58.253533Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask349\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask336\",\"eTag\":\"0x8D9ECFA6224AB51\",\"lastModified\":\"2022-02-11T01:03:58.2185297Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask336\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask330\",\"eTag\":\"0x8D9ECFA6223C104\",\"lastModified\":\"2022-02-11T01:03:58.2125316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask330\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask345\",\"eTag\":\"0x8D9ECFA6225E3F3\",\"lastModified\":\"2022-02-11T01:03:58.2265331Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask345\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask341\",\"eTag\":\"0x8D9ECFA6224AB51\",\"lastModified\":\"2022-02-11T01:03:58.2185297Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask341\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask337\",\"eTag\":\"0x8D9ECFA62243635\",\"lastModified\":\"2022-02-11T01:03:58.2155317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask337\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask333\",\"eTag\":\"0x8D9ECFA62248454\",\"lastModified\":\"2022-02-11T01:03:58.2175316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask333\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask343\",\"eTag\":\"0x8D9ECFA6224AB51\",\"lastModified\":\"2022-02-11T01:03:58.2185297Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask343\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask342\",\"eTag\":\"0x8D9ECFA6225BCBE\",\"lastModified\":\"2022-02-11T01:03:58.2255294Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask342\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask329\",\"eTag\":\"0x8D9ECFA6221EC39\",\"lastModified\":\"2022-02-11T01:03:58.2005305Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask329\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask348\",\"eTag\":\"0x8D9ECFA6229DB99\",\"lastModified\":\"2022-02-11T01:03:58.2525337Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask348\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask347\",\"eTag\":\"0x8D9ECFA62298D63\",\"lastModified\":\"2022-02-11T01:03:58.2505315Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask347\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask346\",\"eTag\":\"0x8D9ECFA622A2993\",\"lastModified\":\"2022-02-11T01:03:58.2545299Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask346\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask338\",\"eTag\":\"0x8D9ECFA6224AB51\",\"lastModified\":\"2022-02-11T01:03:58.2185297Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask338\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask339\",\"eTag\":\"0x8D9ECFA6229B472\",\"lastModified\":\"2022-02-11T01:03:58.2515314Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask339\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "5cca3c47-bb02-454f-b57d-838bfe4a7a60", + "client-request-id" : "d5174e27-0412-42cd-a32c-43e0e7a78ec4", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "8e103e1d-c98a-4df3-a75e-1ca2fbd3e8c7", + "request-id" : "6b696929-b4bc-4995-b004-5737843fefea", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask187\",\"eTag\":\"0x8D95060C97D15C0\",\"lastModified\":\"2021-07-26T18:11:27.713632Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask187\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask150\",\"eTag\":\"0x8D95060C96966CA\",\"lastModified\":\"2021-07-26T18:11:27.5846346Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask150\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask152\",\"eTag\":\"0x8D95060C9698DDB\",\"lastModified\":\"2021-07-26T18:11:27.5856347Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask152\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask151\",\"eTag\":\"0x8D95060C9698DDB\",\"lastModified\":\"2021-07-26T18:11:27.5856347Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask151\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask154\",\"eTag\":\"0x8D95060C969DC09\",\"lastModified\":\"2021-07-26T18:11:27.5876361Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask154\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask155\",\"eTag\":\"0x8D95060C969DC09\",\"lastModified\":\"2021-07-26T18:11:27.5876361Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask155\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask156\",\"eTag\":\"0x8D95060C969DC09\",\"lastModified\":\"2021-07-26T18:11:27.5876361Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask156\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask153\",\"eTag\":\"0x8D95060C969B501\",\"lastModified\":\"2021-07-26T18:11:27.5866369Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask153\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask157\",\"eTag\":\"0x8D95060C96A031B\",\"lastModified\":\"2021-07-26T18:11:27.5886363Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask157\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask159\",\"eTag\":\"0x8D95060C96A5131\",\"lastModified\":\"2021-07-26T18:11:27.5906353Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask159\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask158\",\"eTag\":\"0x8D95060C96A7851\",\"lastModified\":\"2021-07-26T18:11:27.5916369Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask158\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask160\",\"eTag\":\"0x8D95060C96A5131\",\"lastModified\":\"2021-07-26T18:11:27.5906353Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask160\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask165\",\"eTag\":\"0x8D95060C96AED78\",\"lastModified\":\"2021-07-26T18:11:27.594636Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask165\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask161\",\"eTag\":\"0x8D95060C96AA0AE\",\"lastModified\":\"2021-07-26T18:11:27.5926702Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask161\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask163\",\"eTag\":\"0x8D95060C96AC669\",\"lastModified\":\"2021-07-26T18:11:27.5936361Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask163\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask164\",\"eTag\":\"0x8D95060C96AED78\",\"lastModified\":\"2021-07-26T18:11:27.594636Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask164\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask166\",\"eTag\":\"0x8D95060C96B89BD\",\"lastModified\":\"2021-07-26T18:11:27.5986365Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask166\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask170\",\"eTag\":\"0x8D95060C96B62AE\",\"lastModified\":\"2021-07-26T18:11:27.5976366Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask170\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask175\",\"eTag\":\"0x8D95060C96D105C\",\"lastModified\":\"2021-07-26T18:11:27.6086364Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask175\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask169\",\"eTag\":\"0x8D95060C96B62AE\",\"lastModified\":\"2021-07-26T18:11:27.5976366Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask169\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask174\",\"eTag\":\"0x8D95060C96CC233\",\"lastModified\":\"2021-07-26T18:11:27.6066355Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask174\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask178\",\"eTag\":\"0x8D95060C96D3762\",\"lastModified\":\"2021-07-26T18:11:27.6096354Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask178\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask172\",\"eTag\":\"0x8D95060C96BB0C3\",\"lastModified\":\"2021-07-26T18:11:27.5996355Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask172\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask173\",\"eTag\":\"0x8D95060C96BB0C3\",\"lastModified\":\"2021-07-26T18:11:27.5996355Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask173\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask171\",\"eTag\":\"0x8D95060C96BB0C3\",\"lastModified\":\"2021-07-26T18:11:27.5996355Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask171\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask182\",\"eTag\":\"0x8D95060C96D8584\",\"lastModified\":\"2021-07-26T18:11:27.6116356Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask182\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask162\",\"eTag\":\"0x8D95060C96D3762\",\"lastModified\":\"2021-07-26T18:11:27.6096354Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask162\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask185\",\"eTag\":\"0x8D95060C96E21C8\",\"lastModified\":\"2021-07-26T18:11:27.615636Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask185\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask168\",\"eTag\":\"0x8D95060C96D105C\",\"lastModified\":\"2021-07-26T18:11:27.6086364Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask168\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask176\",\"eTag\":\"0x8D95060C96D5E76\",\"lastModified\":\"2021-07-26T18:11:27.6106358Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask176\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask183\",\"eTag\":\"0x8D95060C96DAC96\",\"lastModified\":\"2021-07-26T18:11:27.6126358Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask183\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask188\",\"eTag\":\"0x8D95060C96E7013\",\"lastModified\":\"2021-07-26T18:11:27.6176403Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask188\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask177\",\"eTag\":\"0x8D95060C96DAC96\",\"lastModified\":\"2021-07-26T18:11:27.6126358Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask177\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask190\",\"eTag\":\"0x8D95060C9701D75\",\"lastModified\":\"2021-07-26T18:11:27.6286325Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask190\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask194\",\"eTag\":\"0x8D95060C96E970C\",\"lastModified\":\"2021-07-26T18:11:27.618638Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask194\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask193\",\"eTag\":\"0x8D95060C97044B6\",\"lastModified\":\"2021-07-26T18:11:27.6296374Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask193\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask191\",\"eTag\":\"0x8D95060C96EBDF6\",\"lastModified\":\"2021-07-26T18:11:27.6196342Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask191\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask189\",\"eTag\":\"0x8D95060C96EE512\",\"lastModified\":\"2021-07-26T18:11:27.6206354Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask189\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask180\",\"eTag\":\"0x8D95060C96DD3A4\",\"lastModified\":\"2021-07-26T18:11:27.6136356Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask180\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask186\",\"eTag\":\"0x8D95060C96E21C8\",\"lastModified\":\"2021-07-26T18:11:27.615636Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask186\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask192\",\"eTag\":\"0x8D95060C96FCF4C\",\"lastModified\":\"2021-07-26T18:11:27.6266316Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask192\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask184\",\"eTag\":\"0x8D95060C96DFAB3\",\"lastModified\":\"2021-07-26T18:11:27.6146355Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask184\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask196\",\"eTag\":\"0x8D95060C97092A9\",\"lastModified\":\"2021-07-26T18:11:27.6316329Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask196\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask195\",\"eTag\":\"0x8D95060C9701D75\",\"lastModified\":\"2021-07-26T18:11:27.6286325Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask195\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask198\",\"eTag\":\"0x8D95060C97092A9\",\"lastModified\":\"2021-07-26T18:11:27.6316329Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask198\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask199\",\"eTag\":\"0x8D95060C970B9C8\",\"lastModified\":\"2021-07-26T18:11:27.6326344Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask199\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask197\",\"eTag\":\"0x8D95060C9706BA8\",\"lastModified\":\"2021-07-26T18:11:27.6306344Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask197\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask181\",\"eTag\":\"0x8D95060C96D3762\",\"lastModified\":\"2021-07-26T18:11:27.6096354Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask181\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask179\",\"eTag\":\"0x8D95060C96D105C\",\"lastModified\":\"2021-07-26T18:11:27.6086364Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask179\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask167\",\"eTag\":\"0x8D95060C96DD3A4\",\"lastModified\":\"2021-07-26T18:11:27.6136356Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask167\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask200\",\"eTag\":\"0x8D9ECFA61D0BEAC\",\"lastModified\":\"2022-02-11T01:03:57.6685228Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask200\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask201\",\"eTag\":\"0x8D9ECFA61D10CD0\",\"lastModified\":\"2022-02-11T01:03:57.6705232Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask201\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask205\",\"eTag\":\"0x8D9ECFA61D26C61\",\"lastModified\":\"2022-02-11T01:03:57.6795233Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask205\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask202\",\"eTag\":\"0x8D9ECFA61D21E55\",\"lastModified\":\"2022-02-11T01:03:57.6775253Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask202\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask206\",\"eTag\":\"0x8D9ECFA61D2BA97\",\"lastModified\":\"2022-02-11T01:03:57.6815255Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask206\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask204\",\"eTag\":\"0x8D9ECFA61D2938A\",\"lastModified\":\"2022-02-11T01:03:57.6805258Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask204\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask208\",\"eTag\":\"0x8D9ECFA61D308BD\",\"lastModified\":\"2022-02-11T01:03:57.6835261Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask208\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask203\",\"eTag\":\"0x8D9ECFA61D552A2\",\"lastModified\":\"2022-02-11T01:03:57.698525Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask203\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask209\",\"eTag\":\"0x8D9ECFA61D579A6\",\"lastModified\":\"2022-02-11T01:03:57.6995238Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask209\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask212\",\"eTag\":\"0x8D9ECFA61D5EEE2\",\"lastModified\":\"2022-02-11T01:03:57.702525Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask212\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask210\",\"eTag\":\"0x8D9ECFA61D7EAAC\",\"lastModified\":\"2022-02-11T01:03:57.7155244Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask210\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask207\",\"eTag\":\"0x8D9ECFA61F3FE52\",\"lastModified\":\"2022-02-11T01:03:57.8995282Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask207\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask216\",\"eTag\":\"0x8D9ECFA620C1A54\",\"lastModified\":\"2022-02-11T01:03:58.0575316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask216\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask211\",\"eTag\":\"0x8D9ECFA61D63D03\",\"lastModified\":\"2022-02-11T01:03:57.7045251Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask211\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask217\",\"eTag\":\"0x8D9ECFA620C413F\",\"lastModified\":\"2022-02-11T01:03:58.0585279Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask217\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask218\",\"eTag\":\"0x8D9ECFA6210D52F\",\"lastModified\":\"2022-02-11T01:03:58.0885295Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask218\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask214\",\"eTag\":\"0x8D9ECFA61D63D03\",\"lastModified\":\"2022-02-11T01:03:57.7045251Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask214\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask219\",\"eTag\":\"0x8D9ECFA6211E69C\",\"lastModified\":\"2022-02-11T01:03:58.0955292Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask219\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask213\",\"eTag\":\"0x8D9ECFA61D63D03\",\"lastModified\":\"2022-02-11T01:03:57.7045251Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask213\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask221\",\"eTag\":\"0x8D9ECFA6219FCFD\",\"lastModified\":\"2022-02-11T01:03:58.1485309Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask221\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask220\",\"eTag\":\"0x8D9ECFA621D315C\",\"lastModified\":\"2022-02-11T01:03:58.1695324Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask220\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask228\",\"eTag\":\"0x8D9ECFA621DCD8D\",\"lastModified\":\"2022-02-11T01:03:58.1735309Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask228\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask224\",\"eTag\":\"0x8D9ECFA621EDF0F\",\"lastModified\":\"2022-02-11T01:03:58.1805327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask224\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask244\",\"eTag\":\"0x8D9ECFA6225209F\",\"lastModified\":\"2022-02-11T01:03:58.2215327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask244\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask249\",\"eTag\":\"0x8D9ECFA6238A897\",\"lastModified\":\"2022-02-11T01:03:58.3495319Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask249\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask226\",\"eTag\":\"0x8D9ECFA622101E0\",\"lastModified\":\"2022-02-11T01:03:58.1945312Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask226\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask229\",\"eTag\":\"0x8D9ECFA62212903\",\"lastModified\":\"2022-02-11T01:03:58.1955331Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask229\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask231\",\"eTag\":\"0x8D9ECFA6221500A\",\"lastModified\":\"2022-02-11T01:03:58.1965322Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask231\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask225\",\"eTag\":\"0x8D9ECFA6220B3DA\",\"lastModified\":\"2022-02-11T01:03:58.1925338Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask225\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask230\",\"eTag\":\"0x8D9ECFA6221770E\",\"lastModified\":\"2022-02-11T01:03:58.197531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask230\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask234\",\"eTag\":\"0x8D9ECFA6221C53A\",\"lastModified\":\"2022-02-11T01:03:58.1995322Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask234\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask235\",\"eTag\":\"0x8D9ECFA6221EC39\",\"lastModified\":\"2022-02-11T01:03:58.2005305Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask235\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask215\",\"eTag\":\"0x8D9ECFA6221500A\",\"lastModified\":\"2022-02-11T01:03:58.1965322Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask215\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask227\",\"eTag\":\"0x8D9ECFA62221354\",\"lastModified\":\"2022-02-11T01:03:58.2015316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask227\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask232\",\"eTag\":\"0x8D9ECFA62239A10\",\"lastModified\":\"2022-02-11T01:03:58.2115344Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask232\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask241\",\"eTag\":\"0x8D9ECFA62245D2D\",\"lastModified\":\"2022-02-11T01:03:58.2165293Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask241\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask237\",\"eTag\":\"0x8D9ECFA6224F967\",\"lastModified\":\"2022-02-11T01:03:58.2205287Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask237\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask245\",\"eTag\":\"0x8D9ECFA6224F967\",\"lastModified\":\"2022-02-11T01:03:58.2205287Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask245\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask238\",\"eTag\":\"0x8D9ECFA6223C104\",\"lastModified\":\"2022-02-11T01:03:58.2125316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask238\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask247\",\"eTag\":\"0x8D9ECFA6225E3F3\",\"lastModified\":\"2022-02-11T01:03:58.2265331Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask247\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask236\",\"eTag\":\"0x8D9ECFA62221354\",\"lastModified\":\"2022-02-11T01:03:58.2015316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask236\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask243\",\"eTag\":\"0x8D9ECFA6225209F\",\"lastModified\":\"2022-02-11T01:03:58.2215327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask243\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask240\",\"eTag\":\"0x8D9ECFA6223C104\",\"lastModified\":\"2022-02-11T01:03:58.2125316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask240\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask242\",\"eTag\":\"0x8D9ECFA6224D259\",\"lastModified\":\"2022-02-11T01:03:58.2195289Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask242\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask239\",\"eTag\":\"0x8D9ECFA6221C53A\",\"lastModified\":\"2022-02-11T01:03:58.1995322Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask239\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask233\",\"eTag\":\"0x8D9ECFA6221EC39\",\"lastModified\":\"2022-02-11T01:03:58.2005305Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask233\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask246\",\"eTag\":\"0x8D9ECFA62245D2D\",\"lastModified\":\"2022-02-11T01:03:58.2165293Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask246\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask248\",\"eTag\":\"0x8D9ECFA622A02A2\",\"lastModified\":\"2022-02-11T01:03:58.253533Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask248\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask223\",\"eTag\":\"0x8D9ECFA622A50C2\",\"lastModified\":\"2022-02-11T01:03:58.255533Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask223\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask222\",\"eTag\":\"0x8D9ECFA622A77CF\",\"lastModified\":\"2022-02-11T01:03:58.2565327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask222\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "49620c6c-f2a1-4219-a643-772f652728c0", + "client-request-id" : "a83d6d5a-57c6-46b1-b964-6c6e2b6203de", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "5e726ad4-7bbe-4bc9-8442-cde57963c550", + "request-id" : "246513a5-5664-4725-af24-d0beb41a6c87", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask247\",\"eTag\":\"0x8D95060C98C7EF0\",\"lastModified\":\"2021-07-26T18:11:27.8146288Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask247\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask244\",\"eTag\":\"0x8D95060C986D9D5\",\"lastModified\":\"2021-07-26T18:11:27.7776341Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask244\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask241\",\"eTag\":\"0x8D95060C9848FC7\",\"lastModified\":\"2021-07-26T18:11:27.7626311Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask241\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask240\",\"eTag\":\"0x8D95060C98CA5FD\",\"lastModified\":\"2021-07-26T18:11:27.8156285Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask240\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask245\",\"eTag\":\"0x8D95060C98727D0\",\"lastModified\":\"2021-07-26T18:11:27.7796304Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask245\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask248\",\"eTag\":\"0x8D95060C98C7EF0\",\"lastModified\":\"2021-07-26T18:11:27.8146288Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask248\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask249\",\"eTag\":\"0x8D95060C98CA5FD\",\"lastModified\":\"2021-07-26T18:11:27.8156285Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask249\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask246\",\"eTag\":\"0x8D95060C98727D0\",\"lastModified\":\"2021-07-26T18:11:27.7796304Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask246\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask242\",\"eTag\":\"0x8D95060C98700BF\",\"lastModified\":\"2021-07-26T18:11:27.7786303Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask242\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask243\",\"eTag\":\"0x8D95060C98C57CD\",\"lastModified\":\"2021-07-26T18:11:27.8136269Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask243\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask200\",\"eTag\":\"0x8D95060C9712EFE\",\"lastModified\":\"2021-07-26T18:11:27.635635Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask200\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask209\",\"eTag\":\"0x8D95060C975E9C9\",\"lastModified\":\"2021-07-26T18:11:27.6666313Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask209\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask208\",\"eTag\":\"0x8D95060C9763801\",\"lastModified\":\"2021-07-26T18:11:27.6686337Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask208\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask201\",\"eTag\":\"0x8D95060C9715607\",\"lastModified\":\"2021-07-26T18:11:27.6366343Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask201\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask202\",\"eTag\":\"0x8D95060C9717D54\",\"lastModified\":\"2021-07-26T18:11:27.6376404Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask202\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask211\",\"eTag\":\"0x8D95060C9765F0C\",\"lastModified\":\"2021-07-26T18:11:27.6696332Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask211\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask206\",\"eTag\":\"0x8D95060C973EE0E\",\"lastModified\":\"2021-07-26T18:11:27.6536334Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask206\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask210\",\"eTag\":\"0x8D95060C97610EE\",\"lastModified\":\"2021-07-26T18:11:27.6676334Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask210\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask203\",\"eTag\":\"0x8D95060C971A43A\",\"lastModified\":\"2021-07-26T18:11:27.6386362Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask203\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask212\",\"eTag\":\"0x8D95060C976D436\",\"lastModified\":\"2021-07-26T18:11:27.6726326Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask212\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask214\",\"eTag\":\"0x8D95060C977E59D\",\"lastModified\":\"2021-07-26T18:11:27.6796317Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask214\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask205\",\"eTag\":\"0x8D95060C971A43A\",\"lastModified\":\"2021-07-26T18:11:27.6386362Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask205\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask215\",\"eTag\":\"0x8D95060C9772262\",\"lastModified\":\"2021-07-26T18:11:27.6746338Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask215\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask204\",\"eTag\":\"0x8D95060C971CB5C\",\"lastModified\":\"2021-07-26T18:11:27.639638Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask204\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask207\",\"eTag\":\"0x8D95060C9763801\",\"lastModified\":\"2021-07-26T18:11:27.6686337Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask207\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask216\",\"eTag\":\"0x8D95060C978D00F\",\"lastModified\":\"2021-07-26T18:11:27.6856335Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask216\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask224\",\"eTag\":\"0x8D95060C9791E29\",\"lastModified\":\"2021-07-26T18:11:27.6876329Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask224\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask213\",\"eTag\":\"0x8D95060C978F716\",\"lastModified\":\"2021-07-26T18:11:27.6866326Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask213\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask220\",\"eTag\":\"0x8D95060C978F716\",\"lastModified\":\"2021-07-26T18:11:27.6866326Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask220\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask218\",\"eTag\":\"0x8D95060C978F716\",\"lastModified\":\"2021-07-26T18:11:27.6866326Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask218\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask217\",\"eTag\":\"0x8D95060C978F716\",\"lastModified\":\"2021-07-26T18:11:27.6866326Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask217\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask219\",\"eTag\":\"0x8D95060C9791E29\",\"lastModified\":\"2021-07-26T18:11:27.6876329Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask219\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask226\",\"eTag\":\"0x8D95060C979935F\",\"lastModified\":\"2021-07-26T18:11:27.6906335Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask226\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask221\",\"eTag\":\"0x8D95060C979453C\",\"lastModified\":\"2021-07-26T18:11:27.6886332Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask221\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask227\",\"eTag\":\"0x8D95060C979453C\",\"lastModified\":\"2021-07-26T18:11:27.6886332Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask227\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask234\",\"eTag\":\"0x8D95060C97A088F\",\"lastModified\":\"2021-07-26T18:11:27.6936335Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask234\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask228\",\"eTag\":\"0x8D95060C979E17B\",\"lastModified\":\"2021-07-26T18:11:27.6926331Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask228\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask236\",\"eTag\":\"0x8D95060C97A2F9B\",\"lastModified\":\"2021-07-26T18:11:27.6946331Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask236\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask225\",\"eTag\":\"0x8D95060C9796C4A\",\"lastModified\":\"2021-07-26T18:11:27.689633Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask225\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask230\",\"eTag\":\"0x8D95060C97A088F\",\"lastModified\":\"2021-07-26T18:11:27.6936335Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask230\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask222\",\"eTag\":\"0x8D95060C979453C\",\"lastModified\":\"2021-07-26T18:11:27.6886332Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask222\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask232\",\"eTag\":\"0x8D95060C979E17B\",\"lastModified\":\"2021-07-26T18:11:27.6926331Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask232\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask223\",\"eTag\":\"0x8D95060C979453C\",\"lastModified\":\"2021-07-26T18:11:27.6886332Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask223\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask229\",\"eTag\":\"0x8D95060C979BA6D\",\"lastModified\":\"2021-07-26T18:11:27.6916333Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask229\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask238\",\"eTag\":\"0x8D95060C97A2F9B\",\"lastModified\":\"2021-07-26T18:11:27.6946331Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask238\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask235\",\"eTag\":\"0x8D95060C97A2F9B\",\"lastModified\":\"2021-07-26T18:11:27.6946331Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask235\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask239\",\"eTag\":\"0x8D95060C97A574E\",\"lastModified\":\"2021-07-26T18:11:27.6956494Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask239\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask231\",\"eTag\":\"0x8D95060C97A2F9B\",\"lastModified\":\"2021-07-26T18:11:27.6946331Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask231\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask233\",\"eTag\":\"0x8D95060C979E17B\",\"lastModified\":\"2021-07-26T18:11:27.6926331Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask233\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask237\",\"eTag\":\"0x8D95060C97A7DA3\",\"lastModified\":\"2021-07-26T18:11:27.6966307Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask237\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask169\",\"eTag\":\"0x8D9ECFA623D1570\",\"lastModified\":\"2022-02-11T01:03:58.3785328Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask169\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask168\",\"eTag\":\"0x8D9ECFA623D1570\",\"lastModified\":\"2022-02-11T01:03:58.3785328Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask168\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask157\",\"eTag\":\"0x8D9ECFA623D8AAF\",\"lastModified\":\"2022-02-11T01:03:58.3815343Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask157\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask189\",\"eTag\":\"0x8D9ECFA623DB1C3\",\"lastModified\":\"2022-02-11T01:03:58.3825347Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask189\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask187\",\"eTag\":\"0x8D9ECFA623E26DF\",\"lastModified\":\"2022-02-11T01:03:58.3855327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask187\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask150\",\"eTag\":\"0x8D9ECFA623E26DF\",\"lastModified\":\"2022-02-11T01:03:58.3855327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask150\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask158\",\"eTag\":\"0x8D9ECFA623E26DF\",\"lastModified\":\"2022-02-11T01:03:58.3855327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask158\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask185\",\"eTag\":\"0x8D9ECFA623E26DF\",\"lastModified\":\"2022-02-11T01:03:58.3855327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask185\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask183\",\"eTag\":\"0x8D9ECFA623E26DF\",\"lastModified\":\"2022-02-11T01:03:58.3855327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask183\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask192\",\"eTag\":\"0x8D9ECFA623E26DF\",\"lastModified\":\"2022-02-11T01:03:58.3855327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask192\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask193\",\"eTag\":\"0x8D9ECFA623E4DFC\",\"lastModified\":\"2022-02-11T01:03:58.386534Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask193\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask159\",\"eTag\":\"0x8D9ECFA62597737\",\"lastModified\":\"2022-02-11T01:03:58.5645367Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask159\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask154\",\"eTag\":\"0x8D9ECFA625AFDB2\",\"lastModified\":\"2022-02-11T01:03:58.574533Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask154\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask195\",\"eTag\":\"0x8D9ECFA623E4DFC\",\"lastModified\":\"2022-02-11T01:03:58.386534Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask195\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask171\",\"eTag\":\"0x8D9ECFA623D3C73\",\"lastModified\":\"2022-02-11T01:03:58.3795315Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask171\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask175\",\"eTag\":\"0x8D9ECFA623D3C73\",\"lastModified\":\"2022-02-11T01:03:58.3795315Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask175\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask198\",\"eTag\":\"0x8D9ECFA623E4DFC\",\"lastModified\":\"2022-02-11T01:03:58.386534Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask198\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask199\",\"eTag\":\"0x8D9ECFA624049C9\",\"lastModified\":\"2022-02-11T01:03:58.3995337Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask199\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask153\",\"eTag\":\"0x8D9ECFA625CD270\",\"lastModified\":\"2022-02-11T01:03:58.5865328Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask153\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask196\",\"eTag\":\"0x8D9ECFA624049C9\",\"lastModified\":\"2022-02-11T01:03:58.3995337Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask196\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask166\",\"eTag\":\"0x8D9ECFA625D47CC\",\"lastModified\":\"2022-02-11T01:03:58.5895372Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask166\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask181\",\"eTag\":\"0x8D9ECFA625D6ECF\",\"lastModified\":\"2022-02-11T01:03:58.5905359Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask181\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask172\",\"eTag\":\"0x8D9ECFA625D95ED\",\"lastModified\":\"2022-02-11T01:03:58.5915373Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask172\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask165\",\"eTag\":\"0x8D9ECFA625D20D8\",\"lastModified\":\"2022-02-11T01:03:58.58854Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask165\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask174\",\"eTag\":\"0x8D9ECFA625D6ECF\",\"lastModified\":\"2022-02-11T01:03:58.5905359Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask174\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask179\",\"eTag\":\"0x8D9ECFA625D6ECF\",\"lastModified\":\"2022-02-11T01:03:58.5905359Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask179\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask184\",\"eTag\":\"0x8D9ECFA625DBCED\",\"lastModified\":\"2022-02-11T01:03:58.5925357Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask184\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask180\",\"eTag\":\"0x8D9ECFA625DBCED\",\"lastModified\":\"2022-02-11T01:03:58.5925357Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask180\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask194\",\"eTag\":\"0x8D9ECFA623E4DFC\",\"lastModified\":\"2022-02-11T01:03:58.386534Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask194\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask190\",\"eTag\":\"0x8D9ECFA6260F131\",\"lastModified\":\"2022-02-11T01:03:58.6135345Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask190\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask182\",\"eTag\":\"0x8D9ECFA625DBCED\",\"lastModified\":\"2022-02-11T01:03:58.5925357Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask182\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask191\",\"eTag\":\"0x8D9ECFA6260F131\",\"lastModified\":\"2022-02-11T01:03:58.6135345Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask191\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask186\",\"eTag\":\"0x8D9ECFA625DE403\",\"lastModified\":\"2022-02-11T01:03:58.5935363Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask186\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask197\",\"eTag\":\"0x8D9ECFA62415B3E\",\"lastModified\":\"2022-02-11T01:03:58.4065342Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask197\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask152\",\"eTag\":\"0x8D9ECFA6261666D\",\"lastModified\":\"2022-02-11T01:03:58.6165357Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask152\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask163\",\"eTag\":\"0x8D9ECFA623BB5D5\",\"lastModified\":\"2022-02-11T01:03:58.3695317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask163\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask176\",\"eTag\":\"0x8D9ECFA626229C5\",\"lastModified\":\"2022-02-11T01:03:58.6215365Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask176\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask188\",\"eTag\":\"0x8D9ECFA625DE403\",\"lastModified\":\"2022-02-11T01:03:58.5935363Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask188\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask177\",\"eTag\":\"0x8D9ECFA625D95ED\",\"lastModified\":\"2022-02-11T01:03:58.5915373Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask177\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask162\",\"eTag\":\"0x8D9ECFA625B72E9\",\"lastModified\":\"2022-02-11T01:03:58.5775337Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask162\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask167\",\"eTag\":\"0x8D9ECFA625D20D8\",\"lastModified\":\"2022-02-11T01:03:58.58854Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask167\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask160\",\"eTag\":\"0x8D9ECFA625D20D8\",\"lastModified\":\"2022-02-11T01:03:58.58854Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask160\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask178\",\"eTag\":\"0x8D9ECFA625D47CC\",\"lastModified\":\"2022-02-11T01:03:58.5895372Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask178\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask161\",\"eTag\":\"0x8D9ECFA625CF9A5\",\"lastModified\":\"2022-02-11T01:03:58.5875365Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask161\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask155\",\"eTag\":\"0x8D9ECFA625CF9A5\",\"lastModified\":\"2022-02-11T01:03:58.5875365Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask155\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask164\",\"eTag\":\"0x8D9ECFA625D20D8\",\"lastModified\":\"2022-02-11T01:03:58.58854Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask164\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask170\",\"eTag\":\"0x8D9ECFA625D47CC\",\"lastModified\":\"2022-02-11T01:03:58.5895372Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask170\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask173\",\"eTag\":\"0x8D9ECFA625D20D8\",\"lastModified\":\"2022-02-11T01:03:58.58854Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask173\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask151\",\"eTag\":\"0x8D9ECFA625CF9A5\",\"lastModified\":\"2022-02-11T01:03:58.5875365Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask151\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask156\",\"eTag\":\"0x8D9ECFA625CF9A5\",\"lastModified\":\"2022-02-11T01:03:58.5875365Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask156\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "14f10569-2f4c-4856-b70f-9691f77ee513", + "client-request-id" : "cbd51735-e924-4ee9-be8b-5f5d21418c4b", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "70944add-9d39-4bb2-a344-7c7f25dfc18e", + "request-id" : "7812a2bb-c9b9-4280-9e6c-65605a7e2e62", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask50\",\"eTag\":\"0x8D95060C93585FB\",\"lastModified\":\"2021-07-26T18:11:27.2446459Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask50\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask51\",\"eTag\":\"0x8D95060C935FB3E\",\"lastModified\":\"2021-07-26T18:11:27.2476478Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask51\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask55\",\"eTag\":\"0x8D95060C9367066\",\"lastModified\":\"2021-07-26T18:11:27.250647Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask55\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask77\",\"eTag\":\"0x8D95060C93A8F19\",\"lastModified\":\"2021-07-26T18:11:27.2776473Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask77\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask69\",\"eTag\":\"0x8D95060C9386C74\",\"lastModified\":\"2021-07-26T18:11:27.2636532Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask69\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask97\",\"eTag\":\"0x8D95060C96744B1\",\"lastModified\":\"2021-07-26T18:11:27.5706545Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask97\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask95\",\"eTag\":\"0x8D95060C9676B0F\",\"lastModified\":\"2021-07-26T18:11:27.5716367Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask95\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask99\",\"eTag\":\"0x8D95060C9676B0F\",\"lastModified\":\"2021-07-26T18:11:27.5716367Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask99\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask53\",\"eTag\":\"0x8D95060C9367066\",\"lastModified\":\"2021-07-26T18:11:27.250647Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask53\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask57\",\"eTag\":\"0x8D95060C936984F\",\"lastModified\":\"2021-07-26T18:11:27.2516687Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask57\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask58\",\"eTag\":\"0x8D95060C936BE90\",\"lastModified\":\"2021-07-26T18:11:27.252648Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask58\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask56\",\"eTag\":\"0x8D95060C936984F\",\"lastModified\":\"2021-07-26T18:11:27.2516687Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask56\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask62\",\"eTag\":\"0x8D95060C93733A5\",\"lastModified\":\"2021-07-26T18:11:27.2556453Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask62\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask60\",\"eTag\":\"0x8D95060C936BE90\",\"lastModified\":\"2021-07-26T18:11:27.252648Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask60\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask54\",\"eTag\":\"0x8D95060C9370CAD\",\"lastModified\":\"2021-07-26T18:11:27.2546477Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask54\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask52\",\"eTag\":\"0x8D95060C9364955\",\"lastModified\":\"2021-07-26T18:11:27.2496469Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask52\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask59\",\"eTag\":\"0x8D95060C936E5A5\",\"lastModified\":\"2021-07-26T18:11:27.2536485Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask59\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask65\",\"eTag\":\"0x8D95060C9375B0B\",\"lastModified\":\"2021-07-26T18:11:27.2566539Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask65\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask67\",\"eTag\":\"0x8D95060C937A9F7\",\"lastModified\":\"2021-07-26T18:11:27.2586743Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask67\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask70\",\"eTag\":\"0x8D95060C937F717\",\"lastModified\":\"2021-07-26T18:11:27.2606487Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask70\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask71\",\"eTag\":\"0x8D95060C9381E20\",\"lastModified\":\"2021-07-26T18:11:27.261648Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask71\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask88\",\"eTag\":\"0x8D95060C94145D5\",\"lastModified\":\"2021-07-26T18:11:27.3216469Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask88\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask74\",\"eTag\":\"0x8D95060C93AB63F\",\"lastModified\":\"2021-07-26T18:11:27.2786495Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask74\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask64\",\"eTag\":\"0x8D95060C937F717\",\"lastModified\":\"2021-07-26T18:11:27.2606487Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask64\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask84\",\"eTag\":\"0x8D95060C9403459\",\"lastModified\":\"2021-07-26T18:11:27.3146457Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask84\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask68\",\"eTag\":\"0x8D95060C937D033\",\"lastModified\":\"2021-07-26T18:11:27.2596531Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask68\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask63\",\"eTag\":\"0x8D95060C937D033\",\"lastModified\":\"2021-07-26T18:11:27.2596531Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask63\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask86\",\"eTag\":\"0x8D95060C940D091\",\"lastModified\":\"2021-07-26T18:11:27.3186449Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask86\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask72\",\"eTag\":\"0x8D95060C93845BC\",\"lastModified\":\"2021-07-26T18:11:27.262662Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask72\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask75\",\"eTag\":\"0x8D95060C93845BC\",\"lastModified\":\"2021-07-26T18:11:27.262662Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask75\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask81\",\"eTag\":\"0x8D95060C9412008\",\"lastModified\":\"2021-07-26T18:11:27.3206792Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask81\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask89\",\"eTag\":\"0x8D95060C940A995\",\"lastModified\":\"2021-07-26T18:11:27.3176469Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask89\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask83\",\"eTag\":\"0x8D95060C940F7D5\",\"lastModified\":\"2021-07-26T18:11:27.3196501Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask83\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask79\",\"eTag\":\"0x8D95060C9405B76\",\"lastModified\":\"2021-07-26T18:11:27.315647Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask79\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask73\",\"eTag\":\"0x8D95060C93DC366\",\"lastModified\":\"2021-07-26T18:11:27.298647Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask73\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask66\",\"eTag\":\"0x8D95060C937A9F7\",\"lastModified\":\"2021-07-26T18:11:27.2586743Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask66\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask91\",\"eTag\":\"0x8D95060C940F7D5\",\"lastModified\":\"2021-07-26T18:11:27.3196501Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask91\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask61\",\"eTag\":\"0x8D95060C9375B0B\",\"lastModified\":\"2021-07-26T18:11:27.2566539Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask61\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask98\",\"eTag\":\"0x8D95060C9412008\",\"lastModified\":\"2021-07-26T18:11:27.3206792Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask98\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask76\",\"eTag\":\"0x8D95060C994964E\",\"lastModified\":\"2021-07-26T18:11:27.8676558Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask76\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask78\",\"eTag\":\"0x8D95060C994BCB5\",\"lastModified\":\"2021-07-26T18:11:27.8686389Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask78\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask90\",\"eTag\":\"0x8D95060C9660BAA\",\"lastModified\":\"2021-07-26T18:11:27.562641Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask90\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask93\",\"eTag\":\"0x8D95060C966F810\",\"lastModified\":\"2021-07-26T18:11:27.5686928Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask93\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask92\",\"eTag\":\"0x8D95060C966A7A4\",\"lastModified\":\"2021-07-26T18:11:27.566634Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask92\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask94\",\"eTag\":\"0x8D95060C9671CF0\",\"lastModified\":\"2021-07-26T18:11:27.5696368Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask94\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask96\",\"eTag\":\"0x8D95060C96744B1\",\"lastModified\":\"2021-07-26T18:11:27.5706545Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask96\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask80\",\"eTag\":\"0x8D95060C9950A5C\",\"lastModified\":\"2021-07-26T18:11:27.8706268Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask80\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask87\",\"eTag\":\"0x8D95060C997A264\",\"lastModified\":\"2021-07-26T18:11:27.887626Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask87\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask82\",\"eTag\":\"0x8D95060C995CDA0\",\"lastModified\":\"2021-07-26T18:11:27.8756256Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask82\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask85\",\"eTag\":\"0x8D95060C9957F88\",\"lastModified\":\"2021-07-26T18:11:27.8736264Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask85\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask100\",\"eTag\":\"0x8D9ECFA622D0FDF\",\"lastModified\":\"2022-02-11T01:03:58.2735327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask100\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask105\",\"eTag\":\"0x8D9ECFA622DD33D\",\"lastModified\":\"2022-02-11T01:03:58.2785341Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask105\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask116\",\"eTag\":\"0x8D9ECFA622E4862\",\"lastModified\":\"2022-02-11T01:03:58.281533Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask116\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask112\",\"eTag\":\"0x8D9ECFA622E4862\",\"lastModified\":\"2022-02-11T01:03:58.281533Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask112\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask103\",\"eTag\":\"0x8D9ECFA622DFA34\",\"lastModified\":\"2022-02-11T01:03:58.2795316Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask103\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask115\",\"eTag\":\"0x8D9ECFA622E6F7E\",\"lastModified\":\"2022-02-11T01:03:58.2825342Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask115\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask109\",\"eTag\":\"0x8D9ECFA62306B36\",\"lastModified\":\"2022-02-11T01:03:58.2955318Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask109\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask110\",\"eTag\":\"0x8D9ECFA6230B944\",\"lastModified\":\"2022-02-11T01:03:58.29753Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask110\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask117\",\"eTag\":\"0x8D9ECFA62306B36\",\"lastModified\":\"2022-02-11T01:03:58.2955318Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask117\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask119\",\"eTag\":\"0x8D9ECFA6230925B\",\"lastModified\":\"2022-02-11T01:03:58.2965339Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask119\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask118\",\"eTag\":\"0x8D9ECFA6230E05F\",\"lastModified\":\"2022-02-11T01:03:58.2985311Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask118\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask113\",\"eTag\":\"0x8D9ECFA6230E05F\",\"lastModified\":\"2022-02-11T01:03:58.2985311Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask113\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask114\",\"eTag\":\"0x8D9ECFA62312E81\",\"lastModified\":\"2022-02-11T01:03:58.3005313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask114\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask108\",\"eTag\":\"0x8D9ECFA6230E05F\",\"lastModified\":\"2022-02-11T01:03:58.2985311Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask108\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask126\",\"eTag\":\"0x8D9ECFA62315591\",\"lastModified\":\"2022-02-11T01:03:58.3015313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask126\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask122\",\"eTag\":\"0x8D9ECFA62317CA1\",\"lastModified\":\"2022-02-11T01:03:58.3025313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask122\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask111\",\"eTag\":\"0x8D9ECFA6230E05F\",\"lastModified\":\"2022-02-11T01:03:58.2985311Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask111\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask133\",\"eTag\":\"0x8D9ECFA62315591\",\"lastModified\":\"2022-02-11T01:03:58.3015313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask133\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask120\",\"eTag\":\"0x8D9ECFA62306B36\",\"lastModified\":\"2022-02-11T01:03:58.2955318Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask120\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask124\",\"eTag\":\"0x8D9ECFA6239BA17\",\"lastModified\":\"2022-02-11T01:03:58.3565335Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask124\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask142\",\"eTag\":\"0x8D9ECFA6234D7FB\",\"lastModified\":\"2022-02-11T01:03:58.3245307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask142\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask149\",\"eTag\":\"0x8D9ECFA6234D7FB\",\"lastModified\":\"2022-02-11T01:03:58.3245307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask149\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask143\",\"eTag\":\"0x8D9ECFA62385A6B\",\"lastModified\":\"2022-02-11T01:03:58.3475307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask143\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask138\",\"eTag\":\"0x8D9ECFA62385A6B\",\"lastModified\":\"2022-02-11T01:03:58.3475307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask138\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask145\",\"eTag\":\"0x8D9ECFA62385A6B\",\"lastModified\":\"2022-02-11T01:03:58.3475307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask145\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask144\",\"eTag\":\"0x8D9ECFA623489D9\",\"lastModified\":\"2022-02-11T01:03:58.3225305Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask144\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask141\",\"eTag\":\"0x8D9ECFA62354D4A\",\"lastModified\":\"2022-02-11T01:03:58.3275338Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask141\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask146\",\"eTag\":\"0x8D9ECFA6238A897\",\"lastModified\":\"2022-02-11T01:03:58.3495319Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask146\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask147\",\"eTag\":\"0x8D9ECFA6238A897\",\"lastModified\":\"2022-02-11T01:03:58.3495319Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask147\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask102\",\"eTag\":\"0x8D9ECFA622D0FDF\",\"lastModified\":\"2022-02-11T01:03:58.2735327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask102\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask104\",\"eTag\":\"0x8D9ECFA622D0FDF\",\"lastModified\":\"2022-02-11T01:03:58.2735327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask104\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask101\",\"eTag\":\"0x8D9ECFA622D0FDF\",\"lastModified\":\"2022-02-11T01:03:58.2735327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask101\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask125\",\"eTag\":\"0x8D9ECFA623218DE\",\"lastModified\":\"2022-02-11T01:03:58.306531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask125\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask128\",\"eTag\":\"0x8D9ECFA623218DE\",\"lastModified\":\"2022-02-11T01:03:58.306531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask128\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask130\",\"eTag\":\"0x8D9ECFA62323FFE\",\"lastModified\":\"2022-02-11T01:03:58.3075326Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask130\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask127\",\"eTag\":\"0x8D9ECFA62343BBA\",\"lastModified\":\"2022-02-11T01:03:58.3205306Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask127\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask134\",\"eTag\":\"0x8D9ECFA623218DE\",\"lastModified\":\"2022-02-11T01:03:58.306531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask134\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask106\",\"eTag\":\"0x8D9ECFA6231F1E7\",\"lastModified\":\"2022-02-11T01:03:58.3055335Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask106\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask132\",\"eTag\":\"0x8D9ECFA62343BBA\",\"lastModified\":\"2022-02-11T01:03:58.3205306Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask132\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask107\",\"eTag\":\"0x8D9ECFA6231F1E7\",\"lastModified\":\"2022-02-11T01:03:58.3055335Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask107\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask129\",\"eTag\":\"0x8D9ECFA623462DD\",\"lastModified\":\"2022-02-11T01:03:58.3215325Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask129\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask148\",\"eTag\":\"0x8D9ECFA623489D9\",\"lastModified\":\"2022-02-11T01:03:58.3225305Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask148\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask139\",\"eTag\":\"0x8D9ECFA6234B101\",\"lastModified\":\"2022-02-11T01:03:58.3235329Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask139\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask131\",\"eTag\":\"0x8D9ECFA62323FFE\",\"lastModified\":\"2022-02-11T01:03:58.3075326Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask131\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask137\",\"eTag\":\"0x8D9ECFA62343BBA\",\"lastModified\":\"2022-02-11T01:03:58.3205306Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask137\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask136\",\"eTag\":\"0x8D9ECFA6231CACE\",\"lastModified\":\"2022-02-11T01:03:58.3045326Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask136\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask123\",\"eTag\":\"0x8D9ECFA62323FFE\",\"lastModified\":\"2022-02-11T01:03:58.3075326Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask123\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask140\",\"eTag\":\"0x8D9ECFA6234B101\",\"lastModified\":\"2022-02-11T01:03:58.3235329Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask140\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask135\",\"eTag\":\"0x8D9ECFA623489D9\",\"lastModified\":\"2022-02-11T01:03:58.3225305Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask135\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask121\",\"eTag\":\"0x8D9ECFA623462DD\",\"lastModified\":\"2022-02-11T01:03:58.3215325Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask121\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "2b12d1a0-fb8d-43c4-9006-7c5dca1810ec", + "client-request-id" : "56b5cd4d-bd72-400a-9794-38b105aced92", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "8238df35-95aa-4c2e-8739-b16026c1e2d2", + "request-id" : "3b310db8-0422-4220-bac5-5cb5c58d905e", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask100\",\"eTag\":\"0x8D95060C8FF8267\",\"lastModified\":\"2021-07-26T18:11:26.8906599Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask100\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask101\",\"eTag\":\"0x8D95060C95E4355\",\"lastModified\":\"2021-07-26T18:11:27.5116373Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask101\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask112\",\"eTag\":\"0x8D95060C96632A3\",\"lastModified\":\"2021-07-26T18:11:27.5636387Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask112\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask113\",\"eTag\":\"0x8D95060C966CECB\",\"lastModified\":\"2021-07-26T18:11:27.5676363Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask113\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask119\",\"eTag\":\"0x8D95060C970E0DA\",\"lastModified\":\"2021-07-26T18:11:27.6336346Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask119\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask118\",\"eTag\":\"0x8D95060C90A7F17\",\"lastModified\":\"2021-07-26T18:11:26.9626647Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask118\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask137\",\"eTag\":\"0x8D95060C97E4E3D\",\"lastModified\":\"2021-07-26T18:11:27.7216317Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask137\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask145\",\"eTag\":\"0x8D95060C916B3BC\",\"lastModified\":\"2021-07-26T18:11:27.0426556Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask145\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask148\",\"eTag\":\"0x8D95060C9174FE9\",\"lastModified\":\"2021-07-26T18:11:27.0466537Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask148\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask115\",\"eTag\":\"0x8D95060C9679225\",\"lastModified\":\"2021-07-26T18:11:27.5726373Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask115\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask114\",\"eTag\":\"0x8D95060C9679225\",\"lastModified\":\"2021-07-26T18:11:27.5726373Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask114\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask117\",\"eTag\":\"0x8D95060C97107F9\",\"lastModified\":\"2021-07-26T18:11:27.6346361Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask117\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask138\",\"eTag\":\"0x8D95060C97E4E3D\",\"lastModified\":\"2021-07-26T18:11:27.7216317Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask138\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask134\",\"eTag\":\"0x8D95060C97CEF1B\",\"lastModified\":\"2021-07-26T18:11:27.7126427Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask134\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask110\",\"eTag\":\"0x8D95060C9712EFE\",\"lastModified\":\"2021-07-26T18:11:27.635635Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask110\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask116\",\"eTag\":\"0x8D95060C97092A9\",\"lastModified\":\"2021-07-26T18:11:27.6316329Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask116\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask120\",\"eTag\":\"0x8D95060C9717D54\",\"lastModified\":\"2021-07-26T18:11:27.6376404Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask120\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask122\",\"eTag\":\"0x8D95060C971CB5C\",\"lastModified\":\"2021-07-26T18:11:27.639638Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask122\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask121\",\"eTag\":\"0x8D95060C971CB5C\",\"lastModified\":\"2021-07-26T18:11:27.639638Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask121\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask124\",\"eTag\":\"0x8D95060C977E59D\",\"lastModified\":\"2021-07-26T18:11:27.6796317Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask124\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask123\",\"eTag\":\"0x8D95060C9796C4A\",\"lastModified\":\"2021-07-26T18:11:27.689633Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask123\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask128\",\"eTag\":\"0x8D95060C97AA4C7\",\"lastModified\":\"2021-07-26T18:11:27.6976327Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask128\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask126\",\"eTag\":\"0x8D95060C97A7DA3\",\"lastModified\":\"2021-07-26T18:11:27.6966307Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask126\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask127\",\"eTag\":\"0x8D95060C97A7DA3\",\"lastModified\":\"2021-07-26T18:11:27.6966307Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask127\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask108\",\"eTag\":\"0x8D95060C965BD6D\",\"lastModified\":\"2021-07-26T18:11:27.5606381Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask108\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask102\",\"eTag\":\"0x8D95060C95E6A80\",\"lastModified\":\"2021-07-26T18:11:27.51264Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask102\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask104\",\"eTag\":\"0x8D95060C95F7BE7\",\"lastModified\":\"2021-07-26T18:11:27.5196391Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask104\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask105\",\"eTag\":\"0x8D95060C95F5572\",\"lastModified\":\"2021-07-26T18:11:27.5186546Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask105\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask107\",\"eTag\":\"0x8D95060C965E47A\",\"lastModified\":\"2021-07-26T18:11:27.5616378Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask107\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask106\",\"eTag\":\"0x8D95060C965BD6D\",\"lastModified\":\"2021-07-26T18:11:27.5606381Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask106\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask109\",\"eTag\":\"0x8D95060C965E47A\",\"lastModified\":\"2021-07-26T18:11:27.5616378Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask109\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask111\",\"eTag\":\"0x8D95060C9660BAA\",\"lastModified\":\"2021-07-26T18:11:27.562641Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask111\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask103\",\"eTag\":\"0x8D95060C95EB961\",\"lastModified\":\"2021-07-26T18:11:27.5146593Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask103\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask132\",\"eTag\":\"0x8D95060C97C7982\",\"lastModified\":\"2021-07-26T18:11:27.7096322Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask132\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask130\",\"eTag\":\"0x8D95060C97B8F1B\",\"lastModified\":\"2021-07-26T18:11:27.7036315Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask130\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask131\",\"eTag\":\"0x8D95060C97C7982\",\"lastModified\":\"2021-07-26T18:11:27.7096322Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask131\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask142\",\"eTag\":\"0x8D95060C97EC35F\",\"lastModified\":\"2021-07-26T18:11:27.7246303Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask142\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask135\",\"eTag\":\"0x8D95060C97D3CD1\",\"lastModified\":\"2021-07-26T18:11:27.7146321Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask135\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask140\",\"eTag\":\"0x8D95060C97E9C71\",\"lastModified\":\"2021-07-26T18:11:27.7236337Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask140\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask133\",\"eTag\":\"0x8D95060C97D3CD1\",\"lastModified\":\"2021-07-26T18:11:27.7146321Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask133\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask129\",\"eTag\":\"0x8D95060C97C2B4A\",\"lastModified\":\"2021-07-26T18:11:27.7076298Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask129\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask146\",\"eTag\":\"0x8D95060C98022FE\",\"lastModified\":\"2021-07-26T18:11:27.7336318Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask146\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask144\",\"eTag\":\"0x8D95060C97F118A\",\"lastModified\":\"2021-07-26T18:11:27.7266314Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask144\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask136\",\"eTag\":\"0x8D95060C97E001D\",\"lastModified\":\"2021-07-26T18:11:27.7196317Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask136\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask149\",\"eTag\":\"0x8D95060C98022FE\",\"lastModified\":\"2021-07-26T18:11:27.7336318Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask149\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask125\",\"eTag\":\"0x8D95060C97AA4C7\",\"lastModified\":\"2021-07-26T18:11:27.6976327Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask125\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask139\",\"eTag\":\"0x8D95060C97F3884\",\"lastModified\":\"2021-07-26T18:11:27.7276292Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask139\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask147\",\"eTag\":\"0x8D95060C97F5FB4\",\"lastModified\":\"2021-07-26T18:11:27.7286324Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask147\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask143\",\"eTag\":\"0x8D95060C97EEA81\",\"lastModified\":\"2021-07-26T18:11:27.7256321Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask143\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask141\",\"eTag\":\"0x8D95060C97F3884\",\"lastModified\":\"2021-07-26T18:11:27.7276292Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask141\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask382\",\"eTag\":\"0x8D9ECFA6238F6C5\",\"lastModified\":\"2022-02-11T01:03:58.3515333Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask382\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask386\",\"eTag\":\"0x8D9ECFA623944CC\",\"lastModified\":\"2022-02-11T01:03:58.3535308Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask386\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask385\",\"eTag\":\"0x8D9ECFA62396BF8\",\"lastModified\":\"2022-02-11T01:03:58.3545336Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask385\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask384\",\"eTag\":\"0x8D9ECFA62399312\",\"lastModified\":\"2022-02-11T01:03:58.3555346Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask384\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask393\",\"eTag\":\"0x8D9ECFA62396BF8\",\"lastModified\":\"2022-02-11T01:03:58.3545336Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask393\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask387\",\"eTag\":\"0x8D9ECFA6239BA17\",\"lastModified\":\"2022-02-11T01:03:58.3565335Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask387\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask391\",\"eTag\":\"0x8D9ECFA6239E132\",\"lastModified\":\"2022-02-11T01:03:58.3575346Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask391\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask380\",\"eTag\":\"0x8D9ECFA623B8EB8\",\"lastModified\":\"2022-02-11T01:03:58.3685304Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask380\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask381\",\"eTag\":\"0x8D9ECFA623944CC\",\"lastModified\":\"2022-02-11T01:03:58.3535308Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask381\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask398\",\"eTag\":\"0x8D9ECFA623D3C73\",\"lastModified\":\"2022-02-11T01:03:58.3795315Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask398\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask390\",\"eTag\":\"0x8D9ECFA623D8AAF\",\"lastModified\":\"2022-02-11T01:03:58.3815343Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask390\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask392\",\"eTag\":\"0x8D9ECFA623D8AAF\",\"lastModified\":\"2022-02-11T01:03:58.3815343Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask392\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask383\",\"eTag\":\"0x8D9ECFA624097DC\",\"lastModified\":\"2022-02-11T01:03:58.4015324Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask383\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask350\",\"eTag\":\"0x8D9ECFA6234FF1C\",\"lastModified\":\"2022-02-11T01:03:58.3255324Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask350\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask353\",\"eTag\":\"0x8D9ECFA624D6936\",\"lastModified\":\"2022-02-11T01:03:58.485535Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask353\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask351\",\"eTag\":\"0x8D9ECFA62354D4A\",\"lastModified\":\"2022-02-11T01:03:58.3275338Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask351\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask394\",\"eTag\":\"0x8D9ECFA625669E1\",\"lastModified\":\"2022-02-11T01:03:58.5445345Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask394\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask397\",\"eTag\":\"0x8D9ECFA625865D2\",\"lastModified\":\"2022-02-11T01:03:58.5575378Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask397\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask396\",\"eTag\":\"0x8D9ECFA62597737\",\"lastModified\":\"2022-02-11T01:03:58.5645367Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask396\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask388\",\"eTag\":\"0x8D9ECFA623BB5D5\",\"lastModified\":\"2022-02-11T01:03:58.3695317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask388\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask379\",\"eTag\":\"0x8D9ECFA624049C9\",\"lastModified\":\"2022-02-11T01:03:58.3995337Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask379\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask389\",\"eTag\":\"0x8D9ECFA623D3C73\",\"lastModified\":\"2022-02-11T01:03:58.3795315Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask389\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask362\",\"eTag\":\"0x8D9ECFA626277E2\",\"lastModified\":\"2022-02-11T01:03:58.6235362Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask362\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask354\",\"eTag\":\"0x8D9ECFA62518811\",\"lastModified\":\"2022-02-11T01:03:58.5125393Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask354\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask356\",\"eTag\":\"0x8D9ECFA625139CF\",\"lastModified\":\"2022-02-11T01:03:58.5105359Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask356\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask359\",\"eTag\":\"0x8D9ECFA625160D5\",\"lastModified\":\"2022-02-11T01:03:58.5115349Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask359\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask355\",\"eTag\":\"0x8D9ECFA624D9035\",\"lastModified\":\"2022-02-11T01:03:58.4865333Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask355\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask357\",\"eTag\":\"0x8D9ECFA6251AEE0\",\"lastModified\":\"2022-02-11T01:03:58.5135328Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask357\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask364\",\"eTag\":\"0x8D9ECFA6252241C\",\"lastModified\":\"2022-02-11T01:03:58.516534Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask364\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask399\",\"eTag\":\"0x8D9ECFA625B72E9\",\"lastModified\":\"2022-02-11T01:03:58.5775337Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask399\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask363\",\"eTag\":\"0x8D9ECFA625D20D8\",\"lastModified\":\"2022-02-11T01:03:58.58854Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask363\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask395\",\"eTag\":\"0x8D9ECFA625D95ED\",\"lastModified\":\"2022-02-11T01:03:58.5915373Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask395\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask358\",\"eTag\":\"0x8D9ECFA62518811\",\"lastModified\":\"2022-02-11T01:03:58.5125393Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask358\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask366\",\"eTag\":\"0x8D9ECFA6252995E\",\"lastModified\":\"2022-02-11T01:03:58.5195358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask366\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask370\",\"eTag\":\"0x8D9ECFA62524B40\",\"lastModified\":\"2022-02-11T01:03:58.517536Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask370\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask365\",\"eTag\":\"0x8D9ECFA6252C05F\",\"lastModified\":\"2022-02-11T01:03:58.5205343Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask365\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask372\",\"eTag\":\"0x8D9ECFA62527252\",\"lastModified\":\"2022-02-11T01:03:58.5185362Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask372\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask367\",\"eTag\":\"0x8D9ECFA62527252\",\"lastModified\":\"2022-02-11T01:03:58.5185362Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask367\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask360\",\"eTag\":\"0x8D9ECFA62549536\",\"lastModified\":\"2022-02-11T01:03:58.5325366Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask360\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask377\",\"eTag\":\"0x8D9ECFA62549536\",\"lastModified\":\"2022-02-11T01:03:58.5325366Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask377\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask374\",\"eTag\":\"0x8D9ECFA6254BC3E\",\"lastModified\":\"2022-02-11T01:03:58.5335358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask374\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask371\",\"eTag\":\"0x8D9ECFA62527252\",\"lastModified\":\"2022-02-11T01:03:58.5185362Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask371\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask369\",\"eTag\":\"0x8D9ECFA62524B40\",\"lastModified\":\"2022-02-11T01:03:58.517536Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask369\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask361\",\"eTag\":\"0x8D9ECFA62524B40\",\"lastModified\":\"2022-02-11T01:03:58.517536Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask361\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask373\",\"eTag\":\"0x8D9ECFA6255586D\",\"lastModified\":\"2022-02-11T01:03:58.5375341Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask373\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask378\",\"eTag\":\"0x8D9ECFA6254E359\",\"lastModified\":\"2022-02-11T01:03:58.5345369Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask378\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask352\",\"eTag\":\"0x8D9ECFA6255586D\",\"lastModified\":\"2022-02-11T01:03:58.5375341Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask352\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask368\",\"eTag\":\"0x8D9ECFA6255586D\",\"lastModified\":\"2022-02-11T01:03:58.5375341Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask368\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask376\",\"eTag\":\"0x8D9ECFA6254BC3E\",\"lastModified\":\"2022-02-11T01:03:58.5335358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask376\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask375\",\"eTag\":\"0x8D9ECFA62553170\",\"lastModified\":\"2022-02-11T01:03:58.536536Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask375\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "0a1cf6ec-504d-4673-8624-d9fc33fcfdf7", + "client-request-id" : "2642b956-db47-4320-9163-4f0a6496fc64", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "dfc66885-b0cd-49e0-8ec5-ce861174b62d", + "request-id" : "8b14db2d-9320-4866-a9a9-00dab37812c6", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask300\",\"eTag\":\"0x8D95060C9A92FC4\",\"lastModified\":\"2021-07-26T18:11:28.0026564Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask300\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask305\",\"eTag\":\"0x8D95060C9A9A3BD\",\"lastModified\":\"2021-07-26T18:11:28.0056253Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask305\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask302\",\"eTag\":\"0x8D95060C9A9CAB3\",\"lastModified\":\"2021-07-26T18:11:28.0066227Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask302\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask308\",\"eTag\":\"0x8D95060C9AA8EA8\",\"lastModified\":\"2021-07-26T18:11:28.0116392Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask308\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask301\",\"eTag\":\"0x8D95060C9AA18CD\",\"lastModified\":\"2021-07-26T18:11:28.0086221Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask301\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask312\",\"eTag\":\"0x8D95060C9AB2A66\",\"lastModified\":\"2021-07-26T18:11:28.0156262Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask312\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask306\",\"eTag\":\"0x8D95060C9AA66E2\",\"lastModified\":\"2021-07-26T18:11:28.010621Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask306\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask310\",\"eTag\":\"0x8D95060C9AB5209\",\"lastModified\":\"2021-07-26T18:11:28.0166409Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask310\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask311\",\"eTag\":\"0x8D95060C9AB033D\",\"lastModified\":\"2021-07-26T18:11:28.0146237Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask311\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask314\",\"eTag\":\"0x8D95060C9AB783D\",\"lastModified\":\"2021-07-26T18:11:28.0176189Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask314\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask315\",\"eTag\":\"0x8D95060C9AC1480\",\"lastModified\":\"2021-07-26T18:11:28.0216192Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask315\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask309\",\"eTag\":\"0x8D95060C9AADC1D\",\"lastModified\":\"2021-07-26T18:11:28.0136221Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask309\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask304\",\"eTag\":\"0x8D95060C9AB033D\",\"lastModified\":\"2021-07-26T18:11:28.0146237Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask304\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask313\",\"eTag\":\"0x8D95060C9ABC679\",\"lastModified\":\"2021-07-26T18:11:28.0196217Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask313\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask335\",\"eTag\":\"0x8D95060C9AF9702\",\"lastModified\":\"2021-07-26T18:11:28.044621Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask335\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask319\",\"eTag\":\"0x8D95060C9AC3C21\",\"lastModified\":\"2021-07-26T18:11:28.0226337Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask319\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask303\",\"eTag\":\"0x8D95060C9AA66E2\",\"lastModified\":\"2021-07-26T18:11:28.010621Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask303\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask323\",\"eTag\":\"0x8D95060C9AFE524\",\"lastModified\":\"2021-07-26T18:11:28.0466212Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask323\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask326\",\"eTag\":\"0x8D95060C9AFBE0F\",\"lastModified\":\"2021-07-26T18:11:28.0456207Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask326\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask332\",\"eTag\":\"0x8D95060C9AFE524\",\"lastModified\":\"2021-07-26T18:11:28.0466212Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask332\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask341\",\"eTag\":\"0x8D95060C9B00C48\",\"lastModified\":\"2021-07-26T18:11:28.0476232Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask341\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask328\",\"eTag\":\"0x8D95060C9B0333C\",\"lastModified\":\"2021-07-26T18:11:28.0486204Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask328\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask342\",\"eTag\":\"0x8D95060C9B05A4E\",\"lastModified\":\"2021-07-26T18:11:28.0496206Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask342\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask316\",\"eTag\":\"0x8D95060C9B16BE5\",\"lastModified\":\"2021-07-26T18:11:28.0566245Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask316\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask329\",\"eTag\":\"0x8D95060C9B0F693\",\"lastModified\":\"2021-07-26T18:11:28.0536211Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask329\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask333\",\"eTag\":\"0x8D95060C9B144C1\",\"lastModified\":\"2021-07-26T18:11:28.0556225Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask333\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask330\",\"eTag\":\"0x8D95060C9B08163\",\"lastModified\":\"2021-07-26T18:11:28.0506211Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask330\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask321\",\"eTag\":\"0x8D95060C9B0A876\",\"lastModified\":\"2021-07-26T18:11:28.0516214Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask321\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask318\",\"eTag\":\"0x8D95060C9B0A876\",\"lastModified\":\"2021-07-26T18:11:28.0516214Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask318\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask331\",\"eTag\":\"0x8D95060C9B192C0\",\"lastModified\":\"2021-07-26T18:11:28.0576192Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask331\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask336\",\"eTag\":\"0x8D95060C9B11D9F\",\"lastModified\":\"2021-07-26T18:11:28.0546207Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask336\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask340\",\"eTag\":\"0x8D95060C9B1B9D3\",\"lastModified\":\"2021-07-26T18:11:28.0586195Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask340\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask338\",\"eTag\":\"0x8D95060C9B3B5A8\",\"lastModified\":\"2021-07-26T18:11:28.07162Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask338\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask337\",\"eTag\":\"0x8D95060C9B38E8E\",\"lastModified\":\"2021-07-26T18:11:28.070619Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask337\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask327\",\"eTag\":\"0x8D95060C9B3DCA5\",\"lastModified\":\"2021-07-26T18:11:28.0726181Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask327\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask339\",\"eTag\":\"0x8D95060C9B1B9D3\",\"lastModified\":\"2021-07-26T18:11:28.0586195Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask339\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask345\",\"eTag\":\"0x8D95060C9B451D3\",\"lastModified\":\"2021-07-26T18:11:28.0756179Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask345\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask322\",\"eTag\":\"0x8D95060C9B3DCA5\",\"lastModified\":\"2021-07-26T18:11:28.0726181Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask322\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask320\",\"eTag\":\"0x8D95060C9B1E0E6\",\"lastModified\":\"2021-07-26T18:11:28.0596198Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask320\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask334\",\"eTag\":\"0x8D95060C9B403CA\",\"lastModified\":\"2021-07-26T18:11:28.0736202Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask334\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask348\",\"eTag\":\"0x8D95060C9B1E0E6\",\"lastModified\":\"2021-07-26T18:11:28.0596198Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask348\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask346\",\"eTag\":\"0x8D95060C9B403CA\",\"lastModified\":\"2021-07-26T18:11:28.0736202Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask346\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask325\",\"eTag\":\"0x8D95060C9B403CA\",\"lastModified\":\"2021-07-26T18:11:28.0736202Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask325\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask349\",\"eTag\":\"0x8D95060C9B451D3\",\"lastModified\":\"2021-07-26T18:11:28.0756179Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask349\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask347\",\"eTag\":\"0x8D95060C9B451D3\",\"lastModified\":\"2021-07-26T18:11:28.0756179Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask347\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask344\",\"eTag\":\"0x8D95060C9B3DCA5\",\"lastModified\":\"2021-07-26T18:11:28.0726181Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask344\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask324\",\"eTag\":\"0x8D95060C9B42ADD\",\"lastModified\":\"2021-07-26T18:11:28.0746205Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask324\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask343\",\"eTag\":\"0x8D95060C9B42ADD\",\"lastModified\":\"2021-07-26T18:11:28.0746205Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask343\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask317\",\"eTag\":\"0x8D95060C9B1B9D3\",\"lastModified\":\"2021-07-26T18:11:28.0586195Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask317\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask307\",\"eTag\":\"0x8D95060C9AAB5D7\",\"lastModified\":\"2021-07-26T18:11:28.0126423Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask307\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask51\",\"eTag\":\"0x8D9ECFA62306B36\",\"lastModified\":\"2022-02-11T01:03:58.2955318Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask51\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask53\",\"eTag\":\"0x8D9ECFA622E965F\",\"lastModified\":\"2022-02-11T01:03:58.2835295Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask53\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask52\",\"eTag\":\"0x8D9ECFA6230E05F\",\"lastModified\":\"2022-02-11T01:03:58.2985311Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask52\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask56\",\"eTag\":\"0x8D9ECFA62312E81\",\"lastModified\":\"2022-02-11T01:03:58.3005313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask56\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask55\",\"eTag\":\"0x8D9ECFA62317CA1\",\"lastModified\":\"2022-02-11T01:03:58.3025313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask55\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask94\",\"eTag\":\"0x8D9ECFA623944CC\",\"lastModified\":\"2022-02-11T01:03:58.3535308Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask94\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask97\",\"eTag\":\"0x8D9ECFA623944CC\",\"lastModified\":\"2022-02-11T01:03:58.3535308Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask97\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask96\",\"eTag\":\"0x8D9ECFA623944CC\",\"lastModified\":\"2022-02-11T01:03:58.3535308Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask96\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask98\",\"eTag\":\"0x8D9ECFA623C0406\",\"lastModified\":\"2022-02-11T01:03:58.3715334Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask98\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask99\",\"eTag\":\"0x8D9ECFA623C2B0B\",\"lastModified\":\"2022-02-11T01:03:58.3725323Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask99\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask95\",\"eTag\":\"0x8D9ECFA62410D17\",\"lastModified\":\"2022-02-11T01:03:58.4045335Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask95\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask69\",\"eTag\":\"0x8D9ECFA6234D7FB\",\"lastModified\":\"2022-02-11T01:03:58.3245307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask69\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask62\",\"eTag\":\"0x8D9ECFA62385A6B\",\"lastModified\":\"2022-02-11T01:03:58.3475307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask62\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask75\",\"eTag\":\"0x8D9ECFA6234FF1C\",\"lastModified\":\"2022-02-11T01:03:58.3255324Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask75\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask66\",\"eTag\":\"0x8D9ECFA6234FF1C\",\"lastModified\":\"2022-02-11T01:03:58.3255324Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask66\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask72\",\"eTag\":\"0x8D9ECFA6235262B\",\"lastModified\":\"2022-02-11T01:03:58.3265323Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask72\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask68\",\"eTag\":\"0x8D9ECFA62385A6B\",\"lastModified\":\"2022-02-11T01:03:58.3475307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask68\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask70\",\"eTag\":\"0x8D9ECFA62354D4A\",\"lastModified\":\"2022-02-11T01:03:58.3275338Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask70\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask67\",\"eTag\":\"0x8D9ECFA6235262B\",\"lastModified\":\"2022-02-11T01:03:58.3265323Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask67\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask71\",\"eTag\":\"0x8D9ECFA62385A6B\",\"lastModified\":\"2022-02-11T01:03:58.3475307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask71\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask59\",\"eTag\":\"0x8D9ECFA6234D7FB\",\"lastModified\":\"2022-02-11T01:03:58.3245307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask59\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask74\",\"eTag\":\"0x8D9ECFA62354D4A\",\"lastModified\":\"2022-02-11T01:03:58.3275338Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask74\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask93\",\"eTag\":\"0x8D9ECFA623E4DFC\",\"lastModified\":\"2022-02-11T01:03:58.386534Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask93\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask73\",\"eTag\":\"0x8D9ECFA62385A6B\",\"lastModified\":\"2022-02-11T01:03:58.3475307Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask73\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask87\",\"eTag\":\"0x8D9ECFA626229C5\",\"lastModified\":\"2022-02-11T01:03:58.6215365Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask87\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask78\",\"eTag\":\"0x8D9ECFA624DB755\",\"lastModified\":\"2022-02-11T01:03:58.4875349Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask78\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask82\",\"eTag\":\"0x8D9ECFA625160D5\",\"lastModified\":\"2022-02-11T01:03:58.5115349Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask82\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask76\",\"eTag\":\"0x8D9ECFA624D6936\",\"lastModified\":\"2022-02-11T01:03:58.485535Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask76\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask80\",\"eTag\":\"0x8D9ECFA6251D617\",\"lastModified\":\"2022-02-11T01:03:58.5145367Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask80\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask83\",\"eTag\":\"0x8D9ECFA6251AEE0\",\"lastModified\":\"2022-02-11T01:03:58.5135328Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask83\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask89\",\"eTag\":\"0x8D9ECFA62550A5C\",\"lastModified\":\"2022-02-11T01:03:58.5355356Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask89\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask57\",\"eTag\":\"0x8D9ECFA6231A3C7\",\"lastModified\":\"2022-02-11T01:03:58.3035335Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask57\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask50\",\"eTag\":\"0x8D9ECFA62317CA1\",\"lastModified\":\"2022-02-11T01:03:58.3025313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask50\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask65\",\"eTag\":\"0x8D9ECFA623218DE\",\"lastModified\":\"2022-02-11T01:03:58.306531Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask65\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask60\",\"eTag\":\"0x8D9ECFA6230925B\",\"lastModified\":\"2022-02-11T01:03:58.2965339Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask60\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask63\",\"eTag\":\"0x8D9ECFA6231A3C7\",\"lastModified\":\"2022-02-11T01:03:58.3035335Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask63\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask58\",\"eTag\":\"0x8D9ECFA62317CA1\",\"lastModified\":\"2022-02-11T01:03:58.3025313Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask58\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask54\",\"eTag\":\"0x8D9ECFA6231F1E7\",\"lastModified\":\"2022-02-11T01:03:58.3055335Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask54\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask61\",\"eTag\":\"0x8D9ECFA6231CACE\",\"lastModified\":\"2022-02-11T01:03:58.3045326Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask61\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask64\",\"eTag\":\"0x8D9ECFA6231CACE\",\"lastModified\":\"2022-02-11T01:03:58.3045326Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask64\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask77\",\"eTag\":\"0x8D9ECFA62524B40\",\"lastModified\":\"2022-02-11T01:03:58.517536Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask77\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask92\",\"eTag\":\"0x8D9ECFA6254BC3E\",\"lastModified\":\"2022-02-11T01:03:58.5335358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask92\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask81\",\"eTag\":\"0x8D9ECFA6252241C\",\"lastModified\":\"2022-02-11T01:03:58.516534Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask81\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask79\",\"eTag\":\"0x8D9ECFA6252995E\",\"lastModified\":\"2022-02-11T01:03:58.5195358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask79\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask91\",\"eTag\":\"0x8D9ECFA6254E359\",\"lastModified\":\"2022-02-11T01:03:58.5345369Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask91\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask85\",\"eTag\":\"0x8D9ECFA6255586D\",\"lastModified\":\"2022-02-11T01:03:58.5375341Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask85\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask84\",\"eTag\":\"0x8D9ECFA6254E359\",\"lastModified\":\"2022-02-11T01:03:58.5345369Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask84\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask90\",\"eTag\":\"0x8D9ECFA62557F98\",\"lastModified\":\"2022-02-11T01:03:58.5385368Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask90\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask86\",\"eTag\":\"0x8D9ECFA6255586D\",\"lastModified\":\"2022-02-11T01:03:58.5375341Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask86\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask88\",\"eTag\":\"0x8D9ECFA6255586D\",\"lastModified\":\"2022-02-11T01:03:58.5375341Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask88\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "7ba09fa5-d2cf-43fe-8054-da82830f596c", + "client-request-id" : "d2c90765-c758-46f9-b781-e3ce31df354c", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "143676cc-afe7-4c4f-94de-6edb5d7efff3", + "request-id" : "2293a2a6-758d-4e06-99d4-9e996140b0ad", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask253\",\"eTag\":\"0x8D95060C9B90CCF\",\"lastModified\":\"2021-07-26T18:11:28.1066191Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask253\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask263\",\"eTag\":\"0x8D95060C9B9D08E\",\"lastModified\":\"2021-07-26T18:11:28.1116302Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask263\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask252\",\"eTag\":\"0x8D95060C9B8E5D7\",\"lastModified\":\"2021-07-26T18:11:28.1056215Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask252\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask254\",\"eTag\":\"0x8D95060C9B9A90E\",\"lastModified\":\"2021-07-26T18:11:28.110619Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask254\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask256\",\"eTag\":\"0x8D95060C9B9A90E\",\"lastModified\":\"2021-07-26T18:11:28.110619Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask256\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask264\",\"eTag\":\"0x8D95060C9BA1E47\",\"lastModified\":\"2021-07-26T18:11:28.1136199Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask264\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask258\",\"eTag\":\"0x8D95060C9B9D08E\",\"lastModified\":\"2021-07-26T18:11:28.1116302Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask258\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask251\",\"eTag\":\"0x8D95060C9B8BEB0\",\"lastModified\":\"2021-07-26T18:11:28.1046192Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask251\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask250\",\"eTag\":\"0x8D95060C9B8BEB0\",\"lastModified\":\"2021-07-26T18:11:28.1046192Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask250\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask257\",\"eTag\":\"0x8D95060C9B9F73E\",\"lastModified\":\"2021-07-26T18:11:28.1126206Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask257\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask280\",\"eTag\":\"0x8D95060C9BC8F8E\",\"lastModified\":\"2021-07-26T18:11:28.129627Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask280\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask259\",\"eTag\":\"0x8D95060C9BBF2FC\",\"lastModified\":\"2021-07-26T18:11:28.1256188Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask259\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask267\",\"eTag\":\"0x8D95060C9BC19F8\",\"lastModified\":\"2021-07-26T18:11:28.1266168Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask267\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask261\",\"eTag\":\"0x8D95060C9BA1E47\",\"lastModified\":\"2021-07-26T18:11:28.1136199Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask261\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask268\",\"eTag\":\"0x8D95060C9BC410E\",\"lastModified\":\"2021-07-26T18:11:28.1276174Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask268\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask276\",\"eTag\":\"0x8D95060C9BC6827\",\"lastModified\":\"2021-07-26T18:11:28.1286183Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask276\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask294\",\"eTag\":\"0x8D95060C9BD0467\",\"lastModified\":\"2021-07-26T18:11:28.1326183Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask294\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask299\",\"eTag\":\"0x8D95060C9BD2B7C\",\"lastModified\":\"2021-07-26T18:11:28.1336188Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask299\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask275\",\"eTag\":\"0x8D95060C9BC410E\",\"lastModified\":\"2021-07-26T18:11:28.1276174Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask275\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask266\",\"eTag\":\"0x8D95060C9BBCBDE\",\"lastModified\":\"2021-07-26T18:11:28.1246174Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask266\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask273\",\"eTag\":\"0x8D95060C9BC6827\",\"lastModified\":\"2021-07-26T18:11:28.1286183Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask273\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask274\",\"eTag\":\"0x8D95060C9BC6827\",\"lastModified\":\"2021-07-26T18:11:28.1286183Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask274\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask272\",\"eTag\":\"0x8D95060C9BC8F8E\",\"lastModified\":\"2021-07-26T18:11:28.129627Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask272\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask269\",\"eTag\":\"0x8D95060C9BC410E\",\"lastModified\":\"2021-07-26T18:11:28.1276174Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask269\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask260\",\"eTag\":\"0x8D95060C9BBCBDE\",\"lastModified\":\"2021-07-26T18:11:28.1246174Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask260\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask271\",\"eTag\":\"0x8D95060C9BC8F8E\",\"lastModified\":\"2021-07-26T18:11:28.129627Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask271\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask295\",\"eTag\":\"0x8D95060C9BD532B\",\"lastModified\":\"2021-07-26T18:11:28.1346347Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask295\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask262\",\"eTag\":\"0x8D95060C9BBCBDE\",\"lastModified\":\"2021-07-26T18:11:28.1246174Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask262\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask293\",\"eTag\":\"0x8D95060C9BDEEC3\",\"lastModified\":\"2021-07-26T18:11:28.1386179Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask293\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask284\",\"eTag\":\"0x8D95060C9BD799D\",\"lastModified\":\"2021-07-26T18:11:28.1356189Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask284\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask297\",\"eTag\":\"0x8D95060C9BDA09A\",\"lastModified\":\"2021-07-26T18:11:28.136617Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask297\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask277\",\"eTag\":\"0x8D95060C9BCB64F\",\"lastModified\":\"2021-07-26T18:11:28.1306191Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask277\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask281\",\"eTag\":\"0x8D95060C9BDEEC3\",\"lastModified\":\"2021-07-26T18:11:28.1386179Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask281\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask283\",\"eTag\":\"0x8D95060C9BDEEC3\",\"lastModified\":\"2021-07-26T18:11:28.1386179Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask283\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask296\",\"eTag\":\"0x8D95060C9BEB216\",\"lastModified\":\"2021-07-26T18:11:28.1436182Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask296\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask279\",\"eTag\":\"0x8D95060C9BED922\",\"lastModified\":\"2021-07-26T18:11:28.1446178Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask279\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask287\",\"eTag\":\"0x8D95060C9BE8AFE\",\"lastModified\":\"2021-07-26T18:11:28.1426174Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask287\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask289\",\"eTag\":\"0x8D95060C9BF273F\",\"lastModified\":\"2021-07-26T18:11:28.1466175Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask289\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask265\",\"eTag\":\"0x8D95060C9BDA09A\",\"lastModified\":\"2021-07-26T18:11:28.136617Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask265\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask282\",\"eTag\":\"0x8D95060C9BF003E\",\"lastModified\":\"2021-07-26T18:11:28.145619Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask282\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask255\",\"eTag\":\"0x8D95060C9BEB216\",\"lastModified\":\"2021-07-26T18:11:28.1436182Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask255\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask298\",\"eTag\":\"0x8D95060C9BEB216\",\"lastModified\":\"2021-07-26T18:11:28.1436182Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask298\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask290\",\"eTag\":\"0x8D95060C9BE8AFE\",\"lastModified\":\"2021-07-26T18:11:28.1426174Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask290\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask285\",\"eTag\":\"0x8D95060C9C1230D\",\"lastModified\":\"2021-07-26T18:11:28.1596173Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask285\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask288\",\"eTag\":\"0x8D95060C9C0FC00\",\"lastModified\":\"2021-07-26T18:11:28.1586176Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask288\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask270\",\"eTag\":\"0x8D95060C9BBF2FC\",\"lastModified\":\"2021-07-26T18:11:28.1256188Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask270\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask286\",\"eTag\":\"0x8D95060C9C086D0\",\"lastModified\":\"2021-07-26T18:11:28.1556176Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask286\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask292\",\"eTag\":\"0x8D95060C9C06024\",\"lastModified\":\"2021-07-26T18:11:28.1546276Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask292\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask291\",\"eTag\":\"0x8D95060C9BDC7A1\",\"lastModified\":\"2021-07-26T18:11:28.1376161Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask291\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask278\",\"eTag\":\"0x8D95060C9C20D6D\",\"lastModified\":\"2021-07-26T18:11:28.1656173Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask278\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask39\",\"eTag\":\"0x8D9ECFA623944CC\",\"lastModified\":\"2022-02-11T01:03:58.3535308Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask39\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask42\",\"eTag\":\"0x8D9ECFA62391DD5\",\"lastModified\":\"2022-02-11T01:03:58.3525333Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask42\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask43\",\"eTag\":\"0x8D9ECFA62396BF8\",\"lastModified\":\"2022-02-11T01:03:58.3545336Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask43\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask41\",\"eTag\":\"0x8D9ECFA62391DD5\",\"lastModified\":\"2022-02-11T01:03:58.3525333Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask41\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask40\",\"eTag\":\"0x8D9ECFA62399312\",\"lastModified\":\"2022-02-11T01:03:58.3555346Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask40\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask48\",\"eTag\":\"0x8D9ECFA623D8AAF\",\"lastModified\":\"2022-02-11T01:03:58.3815343Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask48\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask49\",\"eTag\":\"0x8D9ECFA623DFFE1\",\"lastModified\":\"2022-02-11T01:03:58.3845345Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask49\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask46\",\"eTag\":\"0x8D9ECFA623E26DF\",\"lastModified\":\"2022-02-11T01:03:58.3855327Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask46\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask45\",\"eTag\":\"0x8D9ECFA62413415\",\"lastModified\":\"2022-02-11T01:03:58.4055317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask45\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask2\",\"eTag\":\"0x8D9ECFA624B6D4D\",\"lastModified\":\"2022-02-11T01:03:58.4725325Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask2\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask1\",\"eTag\":\"0x8D9ECFA6234FF1C\",\"lastModified\":\"2022-02-11T01:03:58.3255324Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask1\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask0\",\"eTag\":\"0x8D9ECFA6235262B\",\"lastModified\":\"2022-02-11T01:03:58.3265323Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask0\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask47\",\"eTag\":\"0x8D9ECFA623DB1C3\",\"lastModified\":\"2022-02-11T01:03:58.3825347Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask47\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask44\",\"eTag\":\"0x8D9ECFA62413415\",\"lastModified\":\"2022-02-11T01:03:58.4055317Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask44\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask18\",\"eTag\":\"0x8D9ECFA62518811\",\"lastModified\":\"2022-02-11T01:03:58.5125393Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask18\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask10\",\"eTag\":\"0x8D9ECFA624DDE67\",\"lastModified\":\"2022-02-11T01:03:58.4885351Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask10\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask8\",\"eTag\":\"0x8D9ECFA624D9035\",\"lastModified\":\"2022-02-11T01:03:58.4865333Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask8\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask3\",\"eTag\":\"0x8D9ECFA624DB755\",\"lastModified\":\"2022-02-11T01:03:58.4875349Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask3\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask6\",\"eTag\":\"0x8D9ECFA6251FD17\",\"lastModified\":\"2022-02-11T01:03:58.5155351Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask6\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask23\",\"eTag\":\"0x8D9ECFA6252241C\",\"lastModified\":\"2022-02-11T01:03:58.516534Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask23\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask9\",\"eTag\":\"0x8D9ECFA6251FD17\",\"lastModified\":\"2022-02-11T01:03:58.5155351Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask9\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask7\",\"eTag\":\"0x8D9ECFA62518811\",\"lastModified\":\"2022-02-11T01:03:58.5125393Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask7\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask13\",\"eTag\":\"0x8D9ECFA6252241C\",\"lastModified\":\"2022-02-11T01:03:58.516534Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask13\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask34\",\"eTag\":\"0x8D9ECFA62553170\",\"lastModified\":\"2022-02-11T01:03:58.536536Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask34\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask28\",\"eTag\":\"0x8D9ECFA6254BC3E\",\"lastModified\":\"2022-02-11T01:03:58.5335358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask28\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask12\",\"eTag\":\"0x8D9ECFA6252241C\",\"lastModified\":\"2022-02-11T01:03:58.516534Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask12\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask19\",\"eTag\":\"0x8D9ECFA62546E2F\",\"lastModified\":\"2022-02-11T01:03:58.5315375Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask19\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask14\",\"eTag\":\"0x8D9ECFA62527252\",\"lastModified\":\"2022-02-11T01:03:58.5185362Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask14\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask24\",\"eTag\":\"0x8D9ECFA6252995E\",\"lastModified\":\"2022-02-11T01:03:58.5195358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask24\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask16\",\"eTag\":\"0x8D9ECFA62524B40\",\"lastModified\":\"2022-02-11T01:03:58.517536Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask16\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask26\",\"eTag\":\"0x8D9ECFA6252C05F\",\"lastModified\":\"2022-02-11T01:03:58.5205343Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask26\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask15\",\"eTag\":\"0x8D9ECFA62527252\",\"lastModified\":\"2022-02-11T01:03:58.5185362Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask15\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask11\",\"eTag\":\"0x8D9ECFA62527252\",\"lastModified\":\"2022-02-11T01:03:58.5185362Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask11\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask20\",\"eTag\":\"0x8D9ECFA6252995E\",\"lastModified\":\"2022-02-11T01:03:58.5195358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask20\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask25\",\"eTag\":\"0x8D9ECFA62549536\",\"lastModified\":\"2022-02-11T01:03:58.5325366Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask25\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask27\",\"eTag\":\"0x8D9ECFA62549536\",\"lastModified\":\"2022-02-11T01:03:58.5325366Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask27\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask21\",\"eTag\":\"0x8D9ECFA6252995E\",\"lastModified\":\"2022-02-11T01:03:58.5195358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask21\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask35\",\"eTag\":\"0x8D9ECFA6255586D\",\"lastModified\":\"2022-02-11T01:03:58.5375341Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask35\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask31\",\"eTag\":\"0x8D9ECFA6254E359\",\"lastModified\":\"2022-02-11T01:03:58.5345369Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask31\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask29\",\"eTag\":\"0x8D9ECFA62557F98\",\"lastModified\":\"2022-02-11T01:03:58.5385368Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask29\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask36\",\"eTag\":\"0x8D9ECFA6254E359\",\"lastModified\":\"2022-02-11T01:03:58.5345369Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask36\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask30\",\"eTag\":\"0x8D9ECFA62557F98\",\"lastModified\":\"2022-02-11T01:03:58.5385368Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask30\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask38\",\"eTag\":\"0x8D9ECFA62557F98\",\"lastModified\":\"2022-02-11T01:03:58.5385368Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask38\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask4\",\"eTag\":\"0x8D9ECFA62546E2F\",\"lastModified\":\"2022-02-11T01:03:58.5315375Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask4\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask17\",\"eTag\":\"0x8D9ECFA62549536\",\"lastModified\":\"2022-02-11T01:03:58.5325366Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask17\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask32\",\"eTag\":\"0x8D9ECFA6254BC3E\",\"lastModified\":\"2022-02-11T01:03:58.5335358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask32\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask33\",\"eTag\":\"0x8D9ECFA62546E2F\",\"lastModified\":\"2022-02-11T01:03:58.5315375Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask33\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask5\",\"eTag\":\"0x8D9ECFA62524B40\",\"lastModified\":\"2022-02-11T01:03:58.517536Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask5\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask37\",\"eTag\":\"0x8D9ECFA6254BC3E\",\"lastModified\":\"2022-02-11T01:03:58.5335358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask37\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask22\",\"eTag\":\"0x8D9ECFA6254BC3E\",\"lastModified\":\"2022-02-11T01:03:58.5335358Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask22\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "a430087d-19cf-4a36-91c9-31b0de3950aa", + "client-request-id" : "fc4d7f4b-99a0-47d5-8f8f-f7e2e4ffcd2b", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "a7fce893-9b51-430b-b318-93f5788d839a", + "request-id" : "d06ccf65-f055-403d-a754-16f07ffac8db", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask555\",\"eTag\":\"0x8D95060C9CC6D9F\",\"lastModified\":\"2021-07-26T18:11:28.2336159Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask555\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask551\",\"eTag\":\"0x8D95060C9CC466E\",\"lastModified\":\"2021-07-26T18:11:28.2326126Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask551\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask553\",\"eTag\":\"0x8D95060C9CC955A\",\"lastModified\":\"2021-07-26T18:11:28.234633Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask553\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask557\",\"eTag\":\"0x8D95060C9CCBBAA\",\"lastModified\":\"2021-07-26T18:11:28.2356138Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask557\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask556\",\"eTag\":\"0x8D95060C9CC955A\",\"lastModified\":\"2021-07-26T18:11:28.234633Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask556\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask552\",\"eTag\":\"0x8D95060C9CC6D9F\",\"lastModified\":\"2021-07-26T18:11:28.2336159Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask552\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask554\",\"eTag\":\"0x8D95060C9CCBBAA\",\"lastModified\":\"2021-07-26T18:11:28.2356138Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask554\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask558\",\"eTag\":\"0x8D95060C9CCE2B8\",\"lastModified\":\"2021-07-26T18:11:28.2366136Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask558\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask550\",\"eTag\":\"0x8D95060C9CC6D9F\",\"lastModified\":\"2021-07-26T18:11:28.2336159Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask550\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask559\",\"eTag\":\"0x8D95060C9CD09C1\",\"lastModified\":\"2021-07-26T18:11:28.2376129Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask559\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask562\",\"eTag\":\"0x8D95060C9CD30D4\",\"lastModified\":\"2021-07-26T18:11:28.2386132Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask562\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask564\",\"eTag\":\"0x8D95060C9CD5801\",\"lastModified\":\"2021-07-26T18:11:28.2396161Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask564\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask561\",\"eTag\":\"0x8D95060C9CD30D4\",\"lastModified\":\"2021-07-26T18:11:28.2386132Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask561\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask566\",\"eTag\":\"0x8D95060C9CD5801\",\"lastModified\":\"2021-07-26T18:11:28.2396161Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask566\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask560\",\"eTag\":\"0x8D95060C9CD30D4\",\"lastModified\":\"2021-07-26T18:11:28.2386132Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask560\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask563\",\"eTag\":\"0x8D95060C9CD7F19\",\"lastModified\":\"2021-07-26T18:11:28.2406169Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask563\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask565\",\"eTag\":\"0x8D95060C9CDA61B\",\"lastModified\":\"2021-07-26T18:11:28.2416155Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask565\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask568\",\"eTag\":\"0x8D95060C9CDCD30\",\"lastModified\":\"2021-07-26T18:11:28.242616Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask568\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask569\",\"eTag\":\"0x8D95060C9CDF42B\",\"lastModified\":\"2021-07-26T18:11:28.2436139Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask569\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask567\",\"eTag\":\"0x8D95060C9CE1B39\",\"lastModified\":\"2021-07-26T18:11:28.2446137Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask567\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask571\",\"eTag\":\"0x8D95060C9CE1B39\",\"lastModified\":\"2021-07-26T18:11:28.2446137Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask571\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask570\",\"eTag\":\"0x8D95060C9CE6978\",\"lastModified\":\"2021-07-26T18:11:28.2466168Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask570\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask573\",\"eTag\":\"0x8D95060C9CF7AB4\",\"lastModified\":\"2021-07-26T18:11:28.2536116Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask573\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask578\",\"eTag\":\"0x8D95060C9CFA349\",\"lastModified\":\"2021-07-26T18:11:28.2546505Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask578\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask576\",\"eTag\":\"0x8D95060C9CF7AB4\",\"lastModified\":\"2021-07-26T18:11:28.2536116Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask576\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask577\",\"eTag\":\"0x8D95060C9CFC8F1\",\"lastModified\":\"2021-07-26T18:11:28.2556145Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask577\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask574\",\"eTag\":\"0x8D95060C9CFC8F1\",\"lastModified\":\"2021-07-26T18:11:28.2556145Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask574\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask572\",\"eTag\":\"0x8D95060C9CFEFF4\",\"lastModified\":\"2021-07-26T18:11:28.2566132Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask572\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask575\",\"eTag\":\"0x8D95060C9D01729\",\"lastModified\":\"2021-07-26T18:11:28.2576169Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask575\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask581\",\"eTag\":\"0x8D95060C9D0B33B\",\"lastModified\":\"2021-07-26T18:11:28.2616123Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask581\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask579\",\"eTag\":\"0x8D95060C9D06513\",\"lastModified\":\"2021-07-26T18:11:28.2596115Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask579\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask584\",\"eTag\":\"0x8D95060C9D0B33B\",\"lastModified\":\"2021-07-26T18:11:28.2616123Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask584\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask587\",\"eTag\":\"0x8D95060C9D5953E\",\"lastModified\":\"2021-07-26T18:11:28.2936126Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask587\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask592\",\"eTag\":\"0x8D95060C9D5953E\",\"lastModified\":\"2021-07-26T18:11:28.2936126Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask592\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask582\",\"eTag\":\"0x8D95060C9D1286E\",\"lastModified\":\"2021-07-26T18:11:28.2646126Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask582\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask583\",\"eTag\":\"0x8D95060C9D5953E\",\"lastModified\":\"2021-07-26T18:11:28.2936126Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask583\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask580\",\"eTag\":\"0x8D95060C9D06513\",\"lastModified\":\"2021-07-26T18:11:28.2596115Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask580\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask585\",\"eTag\":\"0x8D95060C9D0DA5C\",\"lastModified\":\"2021-07-26T18:11:28.262614Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask585\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask590\",\"eTag\":\"0x8D95060C9D5E35D\",\"lastModified\":\"2021-07-26T18:11:28.2956125Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask590\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask598\",\"eTag\":\"0x8D95060C9D60A74\",\"lastModified\":\"2021-07-26T18:11:28.2966132Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask598\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask595\",\"eTag\":\"0x8D95060C9D67F9D\",\"lastModified\":\"2021-07-26T18:11:28.2996125Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask595\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask588\",\"eTag\":\"0x8D95060C9D60A74\",\"lastModified\":\"2021-07-26T18:11:28.2966132Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask588\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask596\",\"eTag\":\"0x8D95060C9D5BC4A\",\"lastModified\":\"2021-07-26T18:11:28.2946122Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask596\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask594\",\"eTag\":\"0x8D95060C9D67F9D\",\"lastModified\":\"2021-07-26T18:11:28.2996125Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask594\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask591\",\"eTag\":\"0x8D95060C9D6317F\",\"lastModified\":\"2021-07-26T18:11:28.2976127Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask591\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask599\",\"eTag\":\"0x8D95060C9D71BC7\",\"lastModified\":\"2021-07-26T18:11:28.3036103Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask599\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask586\",\"eTag\":\"0x8D95060C9D769E5\",\"lastModified\":\"2021-07-26T18:11:28.3056101Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask586\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask593\",\"eTag\":\"0x8D95060C9D5E35D\",\"lastModified\":\"2021-07-26T18:11:28.2956125Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask593\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask597\",\"eTag\":\"0x8D95060C9D85446\",\"lastModified\":\"2021-07-26T18:11:28.3116102Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask597\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask589\",\"eTag\":\"0x8D95060C9D3997B\",\"lastModified\":\"2021-07-26T18:11:28.2806139Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask589\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask601\",\"eTag\":\"0x8D9ECFA6291021A\",\"lastModified\":\"2022-02-11T01:03:58.9285402Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask601\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask600\",\"eTag\":\"0x8D9ECFA6291021A\",\"lastModified\":\"2022-02-11T01:03:58.9285402Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask600\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask602\",\"eTag\":\"0x8D9ECFA6291504B\",\"lastModified\":\"2022-02-11T01:03:58.9305419Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask602\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask608\",\"eTag\":\"0x8D9ECFA6293732A\",\"lastModified\":\"2022-02-11T01:03:58.9445418Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask608\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask606\",\"eTag\":\"0x8D9ECFA62934C15\",\"lastModified\":\"2022-02-11T01:03:58.9435413Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask606\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask614\",\"eTag\":\"0x8D9ECFA62939A31\",\"lastModified\":\"2022-02-11T01:03:58.9455409Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask614\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask609\",\"eTag\":\"0x8D9ECFA6291504B\",\"lastModified\":\"2022-02-11T01:03:58.9305419Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask609\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask611\",\"eTag\":\"0x8D9ECFA62934C15\",\"lastModified\":\"2022-02-11T01:03:58.9435413Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask611\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask612\",\"eTag\":\"0x8D9ECFA6293732A\",\"lastModified\":\"2022-02-11T01:03:58.9445418Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask612\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask610\",\"eTag\":\"0x8D9ECFA62934C15\",\"lastModified\":\"2022-02-11T01:03:58.9435413Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask610\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask603\",\"eTag\":\"0x8D9ECFA62939A31\",\"lastModified\":\"2022-02-11T01:03:58.9455409Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask603\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask605\",\"eTag\":\"0x8D9ECFA6293732A\",\"lastModified\":\"2022-02-11T01:03:58.9445418Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask605\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask613\",\"eTag\":\"0x8D9ECFA6293732A\",\"lastModified\":\"2022-02-11T01:03:58.9445418Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask613\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask607\",\"eTag\":\"0x8D9ECFA62940F60\",\"lastModified\":\"2022-02-11T01:03:58.9485408Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask607\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask604\",\"eTag\":\"0x8D9ECFA6293C141\",\"lastModified\":\"2022-02-11T01:03:58.9465409Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask604\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask615\",\"eTag\":\"0x8D9ECFA62968070\",\"lastModified\":\"2022-02-11T01:03:58.9645424Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask615\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask616\",\"eTag\":\"0x8D9ECFA6296CE81\",\"lastModified\":\"2022-02-11T01:03:58.9665409Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask616\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask617\",\"eTag\":\"0x8D9ECFA62971CC8\",\"lastModified\":\"2022-02-11T01:03:58.9685448Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask617\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask618\",\"eTag\":\"0x8D9ECFA62971CC8\",\"lastModified\":\"2022-02-11T01:03:58.9685448Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask618\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask620\",\"eTag\":\"0x8D9ECFA62971CC8\",\"lastModified\":\"2022-02-11T01:03:58.9685448Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask620\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask629\",\"eTag\":\"0x8D9ECFA629A7814\",\"lastModified\":\"2022-02-11T01:03:58.9905428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask629\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask623\",\"eTag\":\"0x8D9ECFA629A9F14\",\"lastModified\":\"2022-02-11T01:03:58.9915412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask623\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask642\",\"eTag\":\"0x8D9ECFA629AED43\",\"lastModified\":\"2022-02-11T01:03:58.9935427Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask642\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask621\",\"eTag\":\"0x8D9ECFA629A7814\",\"lastModified\":\"2022-02-11T01:03:58.9905428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask621\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask647\",\"eTag\":\"0x8D9ECFA629AED43\",\"lastModified\":\"2022-02-11T01:03:58.9935427Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask647\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask636\",\"eTag\":\"0x8D9ECFA629B1458\",\"lastModified\":\"2022-02-11T01:03:58.9945432Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask636\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask625\",\"eTag\":\"0x8D9ECFA629A29EC\",\"lastModified\":\"2022-02-11T01:03:58.988542Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask625\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask627\",\"eTag\":\"0x8D9ECFA629AC630\",\"lastModified\":\"2022-02-11T01:03:58.9925424Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask627\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask622\",\"eTag\":\"0x8D9ECFA629A9F14\",\"lastModified\":\"2022-02-11T01:03:58.9915412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask622\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask626\",\"eTag\":\"0x8D9ECFA629A9F14\",\"lastModified\":\"2022-02-11T01:03:58.9915412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask626\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask641\",\"eTag\":\"0x8D9ECFA629CC1F6\",\"lastModified\":\"2022-02-11T01:03:59.0055414Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask641\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask633\",\"eTag\":\"0x8D9ECFA629B3B7F\",\"lastModified\":\"2022-02-11T01:03:58.9955455Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask633\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask631\",\"eTag\":\"0x8D9ECFA629B1458\",\"lastModified\":\"2022-02-11T01:03:58.9945432Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask631\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask624\",\"eTag\":\"0x8D9ECFA629AED43\",\"lastModified\":\"2022-02-11T01:03:58.9935427Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask624\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask638\",\"eTag\":\"0x8D9ECFA629CC1F6\",\"lastModified\":\"2022-02-11T01:03:59.0055414Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask638\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask630\",\"eTag\":\"0x8D9ECFA629CC1F6\",\"lastModified\":\"2022-02-11T01:03:59.0055414Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask630\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask639\",\"eTag\":\"0x8D9ECFA629CC1F6\",\"lastModified\":\"2022-02-11T01:03:59.0055414Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask639\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask644\",\"eTag\":\"0x8D9ECFA629CE90A\",\"lastModified\":\"2022-02-11T01:03:59.0065418Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask644\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask640\",\"eTag\":\"0x8D9ECFA629AED43\",\"lastModified\":\"2022-02-11T01:03:58.9935427Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask640\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask634\",\"eTag\":\"0x8D9ECFA629B1458\",\"lastModified\":\"2022-02-11T01:03:58.9945432Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask634\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask635\",\"eTag\":\"0x8D9ECFA629CC1F6\",\"lastModified\":\"2022-02-11T01:03:59.0055414Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask635\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask646\",\"eTag\":\"0x8D9ECFA629CE90A\",\"lastModified\":\"2022-02-11T01:03:59.0065418Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask646\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask637\",\"eTag\":\"0x8D9ECFA629B1458\",\"lastModified\":\"2022-02-11T01:03:58.9945432Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask637\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask632\",\"eTag\":\"0x8D9ECFA629AED43\",\"lastModified\":\"2022-02-11T01:03:58.9935427Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask632\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask648\",\"eTag\":\"0x8D9ECFA629D1014\",\"lastModified\":\"2022-02-11T01:03:59.0075412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask648\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask628\",\"eTag\":\"0x8D9ECFA629AC630\",\"lastModified\":\"2022-02-11T01:03:58.9925424Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask628\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask643\",\"eTag\":\"0x8D9ECFA629CE90A\",\"lastModified\":\"2022-02-11T01:03:59.0065418Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask643\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask649\",\"eTag\":\"0x8D9ECFA629D1014\",\"lastModified\":\"2022-02-11T01:03:59.0075412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask649\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask645\",\"eTag\":\"0x8D9ECFA629D1014\",\"lastModified\":\"2022-02-11T01:03:59.0075412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask645\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask619\",\"eTag\":\"0x8D9ECFA62A26758\",\"lastModified\":\"2022-02-11T01:03:59.0425432Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask619\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:27 GMT", + "date" : "Fri, 11 Feb 2022 01:03:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "2627c9bd-bc88-4a41-bbd9-7a8d72d3ffc3", + "client-request-id" : "9c7d47cb-ccc4-4abf-968e-9f0c02ee5c6f", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "9bde33f2-588f-4cb8-b838-22bb8dcd9a21", + "request-id" : "91454143-ab43-4d4a-95d4-44101f94f178", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask503\",\"eTag\":\"0x8D95060C9CD09C1\",\"lastModified\":\"2021-07-26T18:11:28.2376129Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask503\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask500\",\"eTag\":\"0x8D95060C9CCBBAA\",\"lastModified\":\"2021-07-26T18:11:28.2356138Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask500\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask505\",\"eTag\":\"0x8D95060C9CD5801\",\"lastModified\":\"2021-07-26T18:11:28.2396161Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask505\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask502\",\"eTag\":\"0x8D95060C9CD09C1\",\"lastModified\":\"2021-07-26T18:11:28.2376129Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask502\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask501\",\"eTag\":\"0x8D95060C9CCE2B8\",\"lastModified\":\"2021-07-26T18:11:28.2366136Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask501\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask507\",\"eTag\":\"0x8D95060C9CDA61B\",\"lastModified\":\"2021-07-26T18:11:28.2416155Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask507\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask504\",\"eTag\":\"0x8D95060C9CD5801\",\"lastModified\":\"2021-07-26T18:11:28.2396161Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask504\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask506\",\"eTag\":\"0x8D95060C9CD7F19\",\"lastModified\":\"2021-07-26T18:11:28.2406169Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask506\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask508\",\"eTag\":\"0x8D95060C9CDCD30\",\"lastModified\":\"2021-07-26T18:11:28.242616Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask508\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask509\",\"eTag\":\"0x8D95060C9CDCD30\",\"lastModified\":\"2021-07-26T18:11:28.242616Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask509\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask511\",\"eTag\":\"0x8D95060C9CDF42B\",\"lastModified\":\"2021-07-26T18:11:28.2436139Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask511\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask512\",\"eTag\":\"0x8D95060C9CE4240\",\"lastModified\":\"2021-07-26T18:11:28.2456128Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask512\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask514\",\"eTag\":\"0x8D95060C9CF7AB4\",\"lastModified\":\"2021-07-26T18:11:28.2536116Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask514\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask513\",\"eTag\":\"0x8D95060C9CFA349\",\"lastModified\":\"2021-07-26T18:11:28.2546505Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask513\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask515\",\"eTag\":\"0x8D95060C9CFC8F1\",\"lastModified\":\"2021-07-26T18:11:28.2556145Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask515\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask517\",\"eTag\":\"0x8D95060C9D03E0D\",\"lastModified\":\"2021-07-26T18:11:28.2586125Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask517\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask518\",\"eTag\":\"0x8D95060C9D03E0D\",\"lastModified\":\"2021-07-26T18:11:28.2586125Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask518\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask516\",\"eTag\":\"0x8D95060C9D08C3C\",\"lastModified\":\"2021-07-26T18:11:28.260614Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask516\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask510\",\"eTag\":\"0x8D95060C9CFC8F1\",\"lastModified\":\"2021-07-26T18:11:28.2556145Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask510\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask527\",\"eTag\":\"0x8D95060C9D10175\",\"lastModified\":\"2021-07-26T18:11:28.2636149Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask527\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask533\",\"eTag\":\"0x8D95060C9D54713\",\"lastModified\":\"2021-07-26T18:11:28.2916115Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask533\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask532\",\"eTag\":\"0x8D95060C9D0DA5C\",\"lastModified\":\"2021-07-26T18:11:28.262614Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask532\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask522\",\"eTag\":\"0x8D95060C9D1286E\",\"lastModified\":\"2021-07-26T18:11:28.2646126Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask522\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask531\",\"eTag\":\"0x8D95060C9D5BC4A\",\"lastModified\":\"2021-07-26T18:11:28.2946122Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask531\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask521\",\"eTag\":\"0x8D95060C9D5E35D\",\"lastModified\":\"2021-07-26T18:11:28.2956125Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask521\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask528\",\"eTag\":\"0x8D95060C9D5BC4A\",\"lastModified\":\"2021-07-26T18:11:28.2946122Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask528\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask546\",\"eTag\":\"0x8D95060C9D6A6AC\",\"lastModified\":\"2021-07-26T18:11:28.3006124Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask546\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask530\",\"eTag\":\"0x8D95060C9D60A74\",\"lastModified\":\"2021-07-26T18:11:28.2966132Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask530\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask524\",\"eTag\":\"0x8D95060C9D67F9D\",\"lastModified\":\"2021-07-26T18:11:28.2996125Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask524\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask519\",\"eTag\":\"0x8D95060C9D658AA\",\"lastModified\":\"2021-07-26T18:11:28.2986154Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask519\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask529\",\"eTag\":\"0x8D95060C9D67F9D\",\"lastModified\":\"2021-07-26T18:11:28.2996125Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask529\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask540\",\"eTag\":\"0x8D95060C9D6CEC5\",\"lastModified\":\"2021-07-26T18:11:28.3016389Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask540\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask526\",\"eTag\":\"0x8D95060C9D6317F\",\"lastModified\":\"2021-07-26T18:11:28.2976127Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask526\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask534\",\"eTag\":\"0x8D95060C9D6CEC5\",\"lastModified\":\"2021-07-26T18:11:28.3016389Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask534\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask525\",\"eTag\":\"0x8D95060C9D658AA\",\"lastModified\":\"2021-07-26T18:11:28.2986154Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask525\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask537\",\"eTag\":\"0x8D95060C9D6F4D1\",\"lastModified\":\"2021-07-26T18:11:28.3026129Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask537\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask538\",\"eTag\":\"0x8D95060C9D74300\",\"lastModified\":\"2021-07-26T18:11:28.3046144Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask538\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask523\",\"eTag\":\"0x8D95060C9D56E3B\",\"lastModified\":\"2021-07-26T18:11:28.2926139Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask523\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask542\",\"eTag\":\"0x8D95060C9D71BC7\",\"lastModified\":\"2021-07-26T18:11:28.3036103Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask542\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask548\",\"eTag\":\"0x8D95060C9D6F4D1\",\"lastModified\":\"2021-07-26T18:11:28.3026129Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask548\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask547\",\"eTag\":\"0x8D95060C9D74300\",\"lastModified\":\"2021-07-26T18:11:28.3046144Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask547\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask539\",\"eTag\":\"0x8D95060C9D769E5\",\"lastModified\":\"2021-07-26T18:11:28.3056101Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask539\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask549\",\"eTag\":\"0x8D95060C9D769E5\",\"lastModified\":\"2021-07-26T18:11:28.3056101Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask549\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask541\",\"eTag\":\"0x8D95060C9D769E5\",\"lastModified\":\"2021-07-26T18:11:28.3056101Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask541\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask543\",\"eTag\":\"0x8D95060C9D71BC7\",\"lastModified\":\"2021-07-26T18:11:28.3036103Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask543\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask535\",\"eTag\":\"0x8D95060C9D85446\",\"lastModified\":\"2021-07-26T18:11:28.3116102Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask535\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask544\",\"eTag\":\"0x8D95060C9D87B54\",\"lastModified\":\"2021-07-26T18:11:28.31261Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask544\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask536\",\"eTag\":\"0x8D95060C9D71BC7\",\"lastModified\":\"2021-07-26T18:11:28.3036103Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask536\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask520\",\"eTag\":\"0x8D95060C9D87B54\",\"lastModified\":\"2021-07-26T18:11:28.31261Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask520\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask545\",\"eTag\":\"0x8D95060C9D8A27B\",\"lastModified\":\"2021-07-26T18:11:28.3136123Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask545\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask501\",\"eTag\":\"0x8D9ECFA627E3D5F\",\"lastModified\":\"2022-02-11T01:03:58.8055391Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask501\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask502\",\"eTag\":\"0x8D9ECFA62812393\",\"lastModified\":\"2022-02-11T01:03:58.8245395Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask502\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask504\",\"eTag\":\"0x8D9ECFA62814AB2\",\"lastModified\":\"2022-02-11T01:03:58.825541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask504\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask500\",\"eTag\":\"0x8D9ECFA6280FC7C\",\"lastModified\":\"2022-02-11T01:03:58.8235388Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask500\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask509\",\"eTag\":\"0x8D9ECFA6282AA37\",\"lastModified\":\"2022-02-11T01:03:58.8345399Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask509\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask515\",\"eTag\":\"0x8D9ECFA6282AA37\",\"lastModified\":\"2022-02-11T01:03:58.8345399Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask515\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask513\",\"eTag\":\"0x8D9ECFA62828315\",\"lastModified\":\"2022-02-11T01:03:58.8335381Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask513\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask514\",\"eTag\":\"0x8D9ECFA62828315\",\"lastModified\":\"2022-02-11T01:03:58.8335381Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask514\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask512\",\"eTag\":\"0x8D9ECFA6282AA37\",\"lastModified\":\"2022-02-11T01:03:58.8345399Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask512\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask506\",\"eTag\":\"0x8D9ECFA62814AB2\",\"lastModified\":\"2022-02-11T01:03:58.825541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask506\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask511\",\"eTag\":\"0x8D9ECFA62814AB2\",\"lastModified\":\"2022-02-11T01:03:58.825541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask511\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask505\",\"eTag\":\"0x8D9ECFA62812393\",\"lastModified\":\"2022-02-11T01:03:58.8245395Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask505\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask507\",\"eTag\":\"0x8D9ECFA62814AB2\",\"lastModified\":\"2022-02-11T01:03:58.825541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask507\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask503\",\"eTag\":\"0x8D9ECFA62812393\",\"lastModified\":\"2022-02-11T01:03:58.8245395Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask503\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask508\",\"eTag\":\"0x8D9ECFA628171B8\",\"lastModified\":\"2022-02-11T01:03:58.82654Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask508\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask510\",\"eTag\":\"0x8D9ECFA62814AB2\",\"lastModified\":\"2022-02-11T01:03:58.825541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask510\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask530\",\"eTag\":\"0x8D9ECFA62836D89\",\"lastModified\":\"2022-02-11T01:03:58.8395401Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask530\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask528\",\"eTag\":\"0x8D9ECFA62836D89\",\"lastModified\":\"2022-02-11T01:03:58.8395401Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask528\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask527\",\"eTag\":\"0x8D9ECFA6283BBA7\",\"lastModified\":\"2022-02-11T01:03:58.8415399Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask527\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask532\",\"eTag\":\"0x8D9ECFA62839476\",\"lastModified\":\"2022-02-11T01:03:58.8405366Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask532\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask531\",\"eTag\":\"0x8D9ECFA62836D89\",\"lastModified\":\"2022-02-11T01:03:58.8395401Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask531\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask529\",\"eTag\":\"0x8D9ECFA62834678\",\"lastModified\":\"2022-02-11T01:03:58.83854Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask529\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask517\",\"eTag\":\"0x8D9ECFA628409C0\",\"lastModified\":\"2022-02-11T01:03:58.8435392Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask517\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask523\",\"eTag\":\"0x8D9ECFA628409C0\",\"lastModified\":\"2022-02-11T01:03:58.8435392Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask523\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask524\",\"eTag\":\"0x8D9ECFA628430DA\",\"lastModified\":\"2022-02-11T01:03:58.8445402Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask524\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask525\",\"eTag\":\"0x8D9ECFA628409C0\",\"lastModified\":\"2022-02-11T01:03:58.8435392Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask525\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask519\",\"eTag\":\"0x8D9ECFA628430DA\",\"lastModified\":\"2022-02-11T01:03:58.8445402Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask519\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask521\",\"eTag\":\"0x8D9ECFA628430DA\",\"lastModified\":\"2022-02-11T01:03:58.8445402Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask521\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask522\",\"eTag\":\"0x8D9ECFA628430DA\",\"lastModified\":\"2022-02-11T01:03:58.8445402Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask522\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask526\",\"eTag\":\"0x8D9ECFA628457E4\",\"lastModified\":\"2022-02-11T01:03:58.8455396Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask526\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask518\",\"eTag\":\"0x8D9ECFA628457E4\",\"lastModified\":\"2022-02-11T01:03:58.8455396Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask518\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask520\",\"eTag\":\"0x8D9ECFA628457E4\",\"lastModified\":\"2022-02-11T01:03:58.8455396Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask520\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask536\",\"eTag\":\"0x8D9ECFA62867AC8\",\"lastModified\":\"2022-02-11T01:03:58.85954Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask536\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask516\",\"eTag\":\"0x8D9ECFA6286C8EB\",\"lastModified\":\"2022-02-11T01:03:58.8615403Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask516\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask540\",\"eTag\":\"0x8D9ECFA62871704\",\"lastModified\":\"2022-02-11T01:03:58.8635396Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask540\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask539\",\"eTag\":\"0x8D9ECFA6286F003\",\"lastModified\":\"2022-02-11T01:03:58.8625411Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask539\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask534\",\"eTag\":\"0x8D9ECFA6286C8EB\",\"lastModified\":\"2022-02-11T01:03:58.8615403Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask534\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask535\",\"eTag\":\"0x8D9ECFA62873E1B\",\"lastModified\":\"2022-02-11T01:03:58.8645403Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask535\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask537\",\"eTag\":\"0x8D9ECFA6286F003\",\"lastModified\":\"2022-02-11T01:03:58.8625411Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask537\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask538\",\"eTag\":\"0x8D9ECFA62871704\",\"lastModified\":\"2022-02-11T01:03:58.8635396Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask538\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask541\",\"eTag\":\"0x8D9ECFA62871704\",\"lastModified\":\"2022-02-11T01:03:58.8635396Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask541\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask533\",\"eTag\":\"0x8D9ECFA6286C8EB\",\"lastModified\":\"2022-02-11T01:03:58.8615403Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask533\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask542\",\"eTag\":\"0x8D9ECFA628C6E3E\",\"lastModified\":\"2022-02-11T01:03:58.8985406Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask542\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask545\",\"eTag\":\"0x8D9ECFA628F7B60\",\"lastModified\":\"2022-02-11T01:03:58.9185376Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask545\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask547\",\"eTag\":\"0x8D9ECFA629017BF\",\"lastModified\":\"2022-02-11T01:03:58.9225407Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask547\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask546\",\"eTag\":\"0x8D9ECFA629017BF\",\"lastModified\":\"2022-02-11T01:03:58.9225407Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask546\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask548\",\"eTag\":\"0x8D9ECFA629065E6\",\"lastModified\":\"2022-02-11T01:03:58.9245414Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask548\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask549\",\"eTag\":\"0x8D9ECFA62903ED9\",\"lastModified\":\"2022-02-11T01:03:58.9235417Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask549\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask543\",\"eTag\":\"0x8D9ECFA628F7B60\",\"lastModified\":\"2022-02-11T01:03:58.9185376Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask543\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask544\",\"eTag\":\"0x8D9ECFA62A28E64\",\"lastModified\":\"2022-02-11T01:03:59.0435428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask544\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:28 GMT", + "date" : "Fri, 11 Feb 2022 01:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "309a13bc-17d8-49b4-88ff-0873f45c330d", + "client-request-id" : "23516a87-5976-45e7-973f-c4fa5df2708b", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "b8747f02-a230-4807-992b-9cee1bf2f5c9", + "request-id" : "eed62e8e-fecb-4af0-b046-842654ed4e72", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask600\",\"eTag\":\"0x8D95060C9E7BD94\",\"lastModified\":\"2021-07-26T18:11:28.41261Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask600\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask602\",\"eTag\":\"0x8D95060C9E91D25\",\"lastModified\":\"2021-07-26T18:11:28.4216101Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask602\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask603\",\"eTag\":\"0x8D95060C9E9441B\",\"lastModified\":\"2021-07-26T18:11:28.4226075Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask603\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask607\",\"eTag\":\"0x8D95060C9EAA39E\",\"lastModified\":\"2021-07-26T18:11:28.4316062Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask607\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask608\",\"eTag\":\"0x8D95060C9EAF1CA\",\"lastModified\":\"2021-07-26T18:11:28.4336074Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask608\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask615\",\"eTag\":\"0x8D95060C9EAF1CA\",\"lastModified\":\"2021-07-26T18:11:28.4336074Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask615\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask610\",\"eTag\":\"0x8D95060C9EB18F1\",\"lastModified\":\"2021-07-26T18:11:28.4346097Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask610\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask605\",\"eTag\":\"0x8D95060C9EAA39E\",\"lastModified\":\"2021-07-26T18:11:28.4316062Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask605\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask614\",\"eTag\":\"0x8D95060C9EAF1CA\",\"lastModified\":\"2021-07-26T18:11:28.4336074Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask614\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask604\",\"eTag\":\"0x8D95060C9EACAA9\",\"lastModified\":\"2021-07-26T18:11:28.4326057Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask604\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask609\",\"eTag\":\"0x8D95060C9EACAA9\",\"lastModified\":\"2021-07-26T18:11:28.4326057Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask609\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask612\",\"eTag\":\"0x8D95060C9EAF1CA\",\"lastModified\":\"2021-07-26T18:11:28.4336074Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask612\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask616\",\"eTag\":\"0x8D95060C9EB3FEE\",\"lastModified\":\"2021-07-26T18:11:28.4356078Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask616\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask606\",\"eTag\":\"0x8D95060C9EACAA9\",\"lastModified\":\"2021-07-26T18:11:28.4326057Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask606\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask611\",\"eTag\":\"0x8D95060C9EB18F1\",\"lastModified\":\"2021-07-26T18:11:28.4346097Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask611\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask613\",\"eTag\":\"0x8D95060C9EB8E13\",\"lastModified\":\"2021-07-26T18:11:28.4376083Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask613\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask617\",\"eTag\":\"0x8D95060C9EB3FEE\",\"lastModified\":\"2021-07-26T18:11:28.4356078Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask617\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask618\",\"eTag\":\"0x8D95060C9EB3FEE\",\"lastModified\":\"2021-07-26T18:11:28.4356078Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask618\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask620\",\"eTag\":\"0x8D95060C9EBB52B\",\"lastModified\":\"2021-07-26T18:11:28.4386091Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask620\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask619\",\"eTag\":\"0x8D95060C9EB670B\",\"lastModified\":\"2021-07-26T18:11:28.4366091Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask619\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask601\",\"eTag\":\"0x8D95060C9E8F661\",\"lastModified\":\"2021-07-26T18:11:28.4206177Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask601\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask621\",\"eTag\":\"0x8D95060C9EC516D\",\"lastModified\":\"2021-07-26T18:11:28.4426093Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask621\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask622\",\"eTag\":\"0x8D95060C9EC516D\",\"lastModified\":\"2021-07-26T18:11:28.4426093Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask622\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask625\",\"eTag\":\"0x8D95060C9F66377\",\"lastModified\":\"2021-07-26T18:11:28.5086071Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask625\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask624\",\"eTag\":\"0x8D95060C9F63C60\",\"lastModified\":\"2021-07-26T18:11:28.5076064Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask624\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask623\",\"eTag\":\"0x8D95060C9F6D895\",\"lastModified\":\"2021-07-26T18:11:28.5116053Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask623\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask627\",\"eTag\":\"0x8D95060C9F6FFA2\",\"lastModified\":\"2021-07-26T18:11:28.512605Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask627\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask626\",\"eTag\":\"0x8D95060C9F6FFA2\",\"lastModified\":\"2021-07-26T18:11:28.512605Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask626\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask634\",\"eTag\":\"0x8D95060C9F79BE1\",\"lastModified\":\"2021-07-26T18:11:28.5166049Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask634\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask633\",\"eTag\":\"0x8D95060C9F79BE1\",\"lastModified\":\"2021-07-26T18:11:28.5166049Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask633\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask632\",\"eTag\":\"0x8D95060C9F8AD34\",\"lastModified\":\"2021-07-26T18:11:28.523602Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask632\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask629\",\"eTag\":\"0x8D95060C9F74DD4\",\"lastModified\":\"2021-07-26T18:11:28.5146068Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask629\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask630\",\"eTag\":\"0x8D95060C9F8D467\",\"lastModified\":\"2021-07-26T18:11:28.5246055Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask630\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask628\",\"eTag\":\"0x8D95060C9F8D467\",\"lastModified\":\"2021-07-26T18:11:28.5246055Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask628\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask638\",\"eTag\":\"0x8D95060C9F8FB7B\",\"lastModified\":\"2021-07-26T18:11:28.5256059Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask638\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask640\",\"eTag\":\"0x8D95060C9F8FB7B\",\"lastModified\":\"2021-07-26T18:11:28.5256059Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask640\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask636\",\"eTag\":\"0x8D95060C9F970A9\",\"lastModified\":\"2021-07-26T18:11:28.5286057Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask636\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask635\",\"eTag\":\"0x8D95060C9F94992\",\"lastModified\":\"2021-07-26T18:11:28.527605Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask635\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask639\",\"eTag\":\"0x8D95060C9F99797\",\"lastModified\":\"2021-07-26T18:11:28.5296023Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask639\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask637\",\"eTag\":\"0x8D95060C9F94992\",\"lastModified\":\"2021-07-26T18:11:28.527605Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask637\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask647\",\"eTag\":\"0x8D95060C9F99797\",\"lastModified\":\"2021-07-26T18:11:28.5296023Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask647\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask641\",\"eTag\":\"0x8D95060C9FA0CDC\",\"lastModified\":\"2021-07-26T18:11:28.5326044Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask641\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask642\",\"eTag\":\"0x8D95060C9F9E5D7\",\"lastModified\":\"2021-07-26T18:11:28.5316055Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask642\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask648\",\"eTag\":\"0x8D95060C9F9E5D7\",\"lastModified\":\"2021-07-26T18:11:28.5316055Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask648\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask643\",\"eTag\":\"0x8D95060C9FA8216\",\"lastModified\":\"2021-07-26T18:11:28.5356054Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask643\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask644\",\"eTag\":\"0x8D95060C9FA8216\",\"lastModified\":\"2021-07-26T18:11:28.5356054Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask644\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask646\",\"eTag\":\"0x8D95060C9FAA920\",\"lastModified\":\"2021-07-26T18:11:28.5366048Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask646\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask649\",\"eTag\":\"0x8D95060C9FA33EC\",\"lastModified\":\"2021-07-26T18:11:28.5336044Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask649\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask645\",\"eTag\":\"0x8D95060C9FA0CDC\",\"lastModified\":\"2021-07-26T18:11:28.5326044Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask645\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask631\",\"eTag\":\"0x8D95060CA01D4F8\",\"lastModified\":\"2021-07-26T18:11:28.5836024Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask631\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask552\",\"eTag\":\"0x8D9ECFA62912935\",\"lastModified\":\"2022-02-11T01:03:58.9295413Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask552\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask551\",\"eTag\":\"0x8D9ECFA62912935\",\"lastModified\":\"2022-02-11T01:03:58.9295413Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask551\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask550\",\"eTag\":\"0x8D9ECFA6291021A\",\"lastModified\":\"2022-02-11T01:03:58.9285402Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask550\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask556\",\"eTag\":\"0x8D9ECFA62939A31\",\"lastModified\":\"2022-02-11T01:03:58.9455409Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask556\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask553\",\"eTag\":\"0x8D9ECFA6293C141\",\"lastModified\":\"2022-02-11T01:03:58.9465409Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask553\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask555\",\"eTag\":\"0x8D9ECFA6293C141\",\"lastModified\":\"2022-02-11T01:03:58.9465409Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask555\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask558\",\"eTag\":\"0x8D9ECFA62940F60\",\"lastModified\":\"2022-02-11T01:03:58.9485408Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask558\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask557\",\"eTag\":\"0x8D9ECFA6293C141\",\"lastModified\":\"2022-02-11T01:03:58.9465409Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask557\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask562\",\"eTag\":\"0x8D9ECFA62940F60\",\"lastModified\":\"2022-02-11T01:03:58.9485408Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask562\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask563\",\"eTag\":\"0x8D9ECFA6293E845\",\"lastModified\":\"2022-02-11T01:03:58.9475397Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask563\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask561\",\"eTag\":\"0x8D9ECFA6293E845\",\"lastModified\":\"2022-02-11T01:03:58.9475397Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask561\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask565\",\"eTag\":\"0x8D9ECFA6293E845\",\"lastModified\":\"2022-02-11T01:03:58.9475397Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask565\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask564\",\"eTag\":\"0x8D9ECFA62943662\",\"lastModified\":\"2022-02-11T01:03:58.9495394Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask564\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask554\",\"eTag\":\"0x8D9ECFA62943662\",\"lastModified\":\"2022-02-11T01:03:58.9495394Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask554\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask559\",\"eTag\":\"0x8D9ECFA6293E845\",\"lastModified\":\"2022-02-11T01:03:58.9475397Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask559\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask560\",\"eTag\":\"0x8D9ECFA62943662\",\"lastModified\":\"2022-02-11T01:03:58.9495394Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask560\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask566\",\"eTag\":\"0x8D9ECFA62943662\",\"lastModified\":\"2022-02-11T01:03:58.9495394Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask566\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask567\",\"eTag\":\"0x8D9ECFA62960B47\",\"lastModified\":\"2022-02-11T01:03:58.9615431Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask567\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask570\",\"eTag\":\"0x8D9ECFA62965960\",\"lastModified\":\"2022-02-11T01:03:58.9635424Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask570\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask568\",\"eTag\":\"0x8D9ECFA62968070\",\"lastModified\":\"2022-02-11T01:03:58.9645424Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask568\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask571\",\"eTag\":\"0x8D9ECFA6296F58F\",\"lastModified\":\"2022-02-11T01:03:58.9675407Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask571\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask569\",\"eTag\":\"0x8D9ECFA6296F58F\",\"lastModified\":\"2022-02-11T01:03:58.9675407Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask569\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask573\",\"eTag\":\"0x8D9ECFA6296F58F\",\"lastModified\":\"2022-02-11T01:03:58.9675407Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask573\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask572\",\"eTag\":\"0x8D9ECFA62971CC8\",\"lastModified\":\"2022-02-11T01:03:58.9685448Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask572\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask577\",\"eTag\":\"0x8D9ECFA629A02CC\",\"lastModified\":\"2022-02-11T01:03:58.9875404Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask577\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask578\",\"eTag\":\"0x8D9ECFA629AC630\",\"lastModified\":\"2022-02-11T01:03:58.9925424Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask578\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask584\",\"eTag\":\"0x8D9ECFA629A7814\",\"lastModified\":\"2022-02-11T01:03:58.9905428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask584\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask574\",\"eTag\":\"0x8D9ECFA629A02CC\",\"lastModified\":\"2022-02-11T01:03:58.9875404Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask574\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask579\",\"eTag\":\"0x8D9ECFA629AC630\",\"lastModified\":\"2022-02-11T01:03:58.9925424Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask579\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask583\",\"eTag\":\"0x8D9ECFA629AC630\",\"lastModified\":\"2022-02-11T01:03:58.9925424Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask583\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask589\",\"eTag\":\"0x8D9ECFA629B1458\",\"lastModified\":\"2022-02-11T01:03:58.9945432Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask589\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask593\",\"eTag\":\"0x8D9ECFA629CC1F6\",\"lastModified\":\"2022-02-11T01:03:59.0055414Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask593\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask576\",\"eTag\":\"0x8D9ECFA629A9F14\",\"lastModified\":\"2022-02-11T01:03:58.9915412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask576\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask588\",\"eTag\":\"0x8D9ECFA629B1458\",\"lastModified\":\"2022-02-11T01:03:58.9945432Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask588\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask586\",\"eTag\":\"0x8D9ECFA629A9F14\",\"lastModified\":\"2022-02-11T01:03:58.9915412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask586\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask591\",\"eTag\":\"0x8D9ECFA629CC1F6\",\"lastModified\":\"2022-02-11T01:03:59.0055414Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask591\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask585\",\"eTag\":\"0x8D9ECFA629A9F14\",\"lastModified\":\"2022-02-11T01:03:58.9915412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask585\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask590\",\"eTag\":\"0x8D9ECFA629AED43\",\"lastModified\":\"2022-02-11T01:03:58.9935427Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask590\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask592\",\"eTag\":\"0x8D9ECFA629CE90A\",\"lastModified\":\"2022-02-11T01:03:59.0065418Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask592\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask594\",\"eTag\":\"0x8D9ECFA629B3B7F\",\"lastModified\":\"2022-02-11T01:03:58.9955455Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask594\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask587\",\"eTag\":\"0x8D9ECFA629B3B7F\",\"lastModified\":\"2022-02-11T01:03:58.9955455Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask587\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask580\",\"eTag\":\"0x8D9ECFA629A7814\",\"lastModified\":\"2022-02-11T01:03:58.9905428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask580\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask595\",\"eTag\":\"0x8D9ECFA629CE90A\",\"lastModified\":\"2022-02-11T01:03:59.0065418Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask595\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask575\",\"eTag\":\"0x8D9ECFA629A9F14\",\"lastModified\":\"2022-02-11T01:03:58.9915412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask575\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask582\",\"eTag\":\"0x8D9ECFA629A7814\",\"lastModified\":\"2022-02-11T01:03:58.9905428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask582\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask596\",\"eTag\":\"0x8D9ECFA629D1014\",\"lastModified\":\"2022-02-11T01:03:59.0075412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask596\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask581\",\"eTag\":\"0x8D9ECFA629D1014\",\"lastModified\":\"2022-02-11T01:03:59.0075412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask581\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask597\",\"eTag\":\"0x8D9ECFA629D1014\",\"lastModified\":\"2022-02-11T01:03:59.0075412Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask597\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask598\",\"eTag\":\"0x8D9ECFA629DAC63\",\"lastModified\":\"2022-02-11T01:03:59.0115427Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask598\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask599\",\"eTag\":\"0x8D9ECFA62B5A131\",\"lastModified\":\"2022-02-11T01:03:59.1685425Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask599\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:28 GMT", + "date" : "Fri, 11 Feb 2022 01:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "8e8f413d-c06b-42ed-9e16-dda99853f077", + "client-request-id" : "a49b3b99-9956-41fe-bf2f-376a85dc0f03", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "fe41511a-2a85-4ec1-a884-0b0a16af7ce6", + "request-id" : "ea66f555-211d-4d87-b780-c0216515e0d3", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask850\",\"eTag\":\"0x8D95060C9FB6CC7\",\"lastModified\":\"2021-07-26T18:11:28.5416135Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask850\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask854\",\"eTag\":\"0x8D95060C9FD1A1C\",\"lastModified\":\"2021-07-26T18:11:28.5526044Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask854\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask856\",\"eTag\":\"0x8D95060C9FD6837\",\"lastModified\":\"2021-07-26T18:11:28.5546039Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask856\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask865\",\"eTag\":\"0x8D95060C9FE2B8A\",\"lastModified\":\"2021-07-26T18:11:28.5596042Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask865\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask855\",\"eTag\":\"0x8D95060C9FDDD4E\",\"lastModified\":\"2021-07-26T18:11:28.5576014Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask855\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask853\",\"eTag\":\"0x8D95060C9FD8F40\",\"lastModified\":\"2021-07-26T18:11:28.5556032Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask853\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask862\",\"eTag\":\"0x8D95060C9FE0462\",\"lastModified\":\"2021-07-26T18:11:28.5586018Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask862\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask852\",\"eTag\":\"0x8D95060C9FE5297\",\"lastModified\":\"2021-07-26T18:11:28.5606039Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask852\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask851\",\"eTag\":\"0x8D95060C9FF8B5D\",\"lastModified\":\"2021-07-26T18:11:28.5686109Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask851\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask866\",\"eTag\":\"0x8D95060C9FE5297\",\"lastModified\":\"2021-07-26T18:11:28.5606039Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask866\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask864\",\"eTag\":\"0x8D95060C9FD4120\",\"lastModified\":\"2021-07-26T18:11:28.5536032Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask864\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask867\",\"eTag\":\"0x8D95060C9FF8B5D\",\"lastModified\":\"2021-07-26T18:11:28.5686109Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask867\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask868\",\"eTag\":\"0x8D95060C9FFB22F\",\"lastModified\":\"2021-07-26T18:11:28.5696047Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask868\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask870\",\"eTag\":\"0x8D95060C9FFD99D\",\"lastModified\":\"2021-07-26T18:11:28.5706141Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask870\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask869\",\"eTag\":\"0x8D95060C9FFB22F\",\"lastModified\":\"2021-07-26T18:11:28.5696047Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask869\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask872\",\"eTag\":\"0x8D95060CA00275F\",\"lastModified\":\"2021-07-26T18:11:28.5726047Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask872\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask863\",\"eTag\":\"0x8D95060C9FF15E5\",\"lastModified\":\"2021-07-26T18:11:28.5656037Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask863\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask861\",\"eTag\":\"0x8D95060C9FF8B5D\",\"lastModified\":\"2021-07-26T18:11:28.5686109Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask861\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask877\",\"eTag\":\"0x8D95060CA00004E\",\"lastModified\":\"2021-07-26T18:11:28.5716046Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask877\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask873\",\"eTag\":\"0x8D95060CA00004E\",\"lastModified\":\"2021-07-26T18:11:28.5716046Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask873\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask874\",\"eTag\":\"0x8D95060CA01D4F8\",\"lastModified\":\"2021-07-26T18:11:28.5836024Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask874\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask876\",\"eTag\":\"0x8D95060C9FFD99D\",\"lastModified\":\"2021-07-26T18:11:28.5706141Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask876\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask859\",\"eTag\":\"0x8D95060C9FF3CE4\",\"lastModified\":\"2021-07-26T18:11:28.566602Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask859\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask878\",\"eTag\":\"0x8D95060CA01D4F8\",\"lastModified\":\"2021-07-26T18:11:28.5836024Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask878\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask871\",\"eTag\":\"0x8D95060CA00275F\",\"lastModified\":\"2021-07-26T18:11:28.5726047Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask871\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask875\",\"eTag\":\"0x8D95060C9FFD99D\",\"lastModified\":\"2021-07-26T18:11:28.5706141Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask875\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask857\",\"eTag\":\"0x8D95060C9FF6406\",\"lastModified\":\"2021-07-26T18:11:28.5676038Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask857\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask860\",\"eTag\":\"0x8D95060C9FF15E5\",\"lastModified\":\"2021-07-26T18:11:28.5656037Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask860\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask882\",\"eTag\":\"0x8D95060CA027143\",\"lastModified\":\"2021-07-26T18:11:28.5876035Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask882\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask880\",\"eTag\":\"0x8D95060CA024A26\",\"lastModified\":\"2021-07-26T18:11:28.5866022Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask880\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask883\",\"eTag\":\"0x8D95060CA029845\",\"lastModified\":\"2021-07-26T18:11:28.5886021Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask883\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask858\",\"eTag\":\"0x8D95060C9FF6406\",\"lastModified\":\"2021-07-26T18:11:28.5676038Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask858\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask881\",\"eTag\":\"0x8D95060CA029845\",\"lastModified\":\"2021-07-26T18:11:28.5886021Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask881\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask885\",\"eTag\":\"0x8D95060CA02BF80\",\"lastModified\":\"2021-07-26T18:11:28.5896064Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask885\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask888\",\"eTag\":\"0x8D95060CA030D74\",\"lastModified\":\"2021-07-26T18:11:28.591602Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask888\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask886\",\"eTag\":\"0x8D95060CA02E669\",\"lastModified\":\"2021-07-26T18:11:28.5906025Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask886\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask884\",\"eTag\":\"0x8D95060CA029845\",\"lastModified\":\"2021-07-26T18:11:28.5886021Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask884\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask879\",\"eTag\":\"0x8D95060CA035BB7\",\"lastModified\":\"2021-07-26T18:11:28.5936055Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask879\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask887\",\"eTag\":\"0x8D95060CA030D74\",\"lastModified\":\"2021-07-26T18:11:28.591602Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask887\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask890\",\"eTag\":\"0x8D95060CA03348D\",\"lastModified\":\"2021-07-26T18:11:28.5926029Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask890\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask889\",\"eTag\":\"0x8D95060CA030D74\",\"lastModified\":\"2021-07-26T18:11:28.591602Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask889\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask891\",\"eTag\":\"0x8D95060CA03A9CD\",\"lastModified\":\"2021-07-26T18:11:28.5956045Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask891\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask892\",\"eTag\":\"0x8D95060CA03D0DF\",\"lastModified\":\"2021-07-26T18:11:28.5966047Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask892\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask895\",\"eTag\":\"0x8D95060CA046D06\",\"lastModified\":\"2021-07-26T18:11:28.6006022Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask895\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask893\",\"eTag\":\"0x8D95060CA046D06\",\"lastModified\":\"2021-07-26T18:11:28.6006022Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask893\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask898\",\"eTag\":\"0x8D95060CA05305B\",\"lastModified\":\"2021-07-26T18:11:28.6056027Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask898\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask894\",\"eTag\":\"0x8D95060CA046D06\",\"lastModified\":\"2021-07-26T18:11:28.6006022Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask894\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask896\",\"eTag\":\"0x8D95060CA04BBC2\",\"lastModified\":\"2021-07-26T18:11:28.6026178Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask896\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask899\",\"eTag\":\"0x8D95060CA05305B\",\"lastModified\":\"2021-07-26T18:11:28.6056027Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask899\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask897\",\"eTag\":\"0x8D95060CA04E2AF\",\"lastModified\":\"2021-07-26T18:11:28.6036143Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask897\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask701\",\"eTag\":\"0x8D9ECFA62B6D9C0\",\"lastModified\":\"2022-02-11T01:03:59.176544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask701\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask700\",\"eTag\":\"0x8D9ECFA62BD426D\",\"lastModified\":\"2022-02-11T01:03:59.2185453Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask700\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask705\",\"eTag\":\"0x8D9ECFA62BD907A\",\"lastModified\":\"2022-02-11T01:03:59.2205434Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask705\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask711\",\"eTag\":\"0x8D9ECFA62BD426D\",\"lastModified\":\"2022-02-11T01:03:59.2185453Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask711\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask707\",\"eTag\":\"0x8D9ECFA62BD907A\",\"lastModified\":\"2022-02-11T01:03:59.2205434Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask707\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask710\",\"eTag\":\"0x8D9ECFA62BD907A\",\"lastModified\":\"2022-02-11T01:03:59.2205434Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask710\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask702\",\"eTag\":\"0x8D9ECFA62BE2CC9\",\"lastModified\":\"2022-02-11T01:03:59.2245449Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask702\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask706\",\"eTag\":\"0x8D9ECFA62BE05B8\",\"lastModified\":\"2022-02-11T01:03:59.2235448Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask706\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask708\",\"eTag\":\"0x8D9ECFA62BE7AE6\",\"lastModified\":\"2022-02-11T01:03:59.2265446Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask708\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask704\",\"eTag\":\"0x8D9ECFA62BE7AE6\",\"lastModified\":\"2022-02-11T01:03:59.2265446Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask704\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask709\",\"eTag\":\"0x8D9ECFA62BE7AE6\",\"lastModified\":\"2022-02-11T01:03:59.2265446Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask709\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask715\",\"eTag\":\"0x8D9ECFA62C04FA0\",\"lastModified\":\"2022-02-11T01:03:59.238544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask715\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask712\",\"eTag\":\"0x8D9ECFA62C04FA0\",\"lastModified\":\"2022-02-11T01:03:59.238544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask712\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask703\",\"eTag\":\"0x8D9ECFA62C076AF\",\"lastModified\":\"2022-02-11T01:03:59.2395439Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask703\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask722\",\"eTag\":\"0x8D9ECFA62C0C4E4\",\"lastModified\":\"2022-02-11T01:03:59.241546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask722\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask714\",\"eTag\":\"0x8D9ECFA62C0EBD5\",\"lastModified\":\"2022-02-11T01:03:59.2425429Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask714\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask721\",\"eTag\":\"0x8D9ECFA62C0C4E4\",\"lastModified\":\"2022-02-11T01:03:59.241546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask721\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask716\",\"eTag\":\"0x8D9ECFA62C0EBD5\",\"lastModified\":\"2022-02-11T01:03:59.2425429Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask716\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask725\",\"eTag\":\"0x8D9ECFA62C29972\",\"lastModified\":\"2022-02-11T01:03:59.253541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask725\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask724\",\"eTag\":\"0x8D9ECFA62C112E4\",\"lastModified\":\"2022-02-11T01:03:59.2435428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask724\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask729\",\"eTag\":\"0x8D9ECFA62C29972\",\"lastModified\":\"2022-02-11T01:03:59.253541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask729\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask713\",\"eTag\":\"0x8D9ECFA62C139F8\",\"lastModified\":\"2022-02-11T01:03:59.2445432Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask713\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask723\",\"eTag\":\"0x8D9ECFA62C335DE\",\"lastModified\":\"2022-02-11T01:03:59.2575454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask723\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask718\",\"eTag\":\"0x8D9ECFA62C38401\",\"lastModified\":\"2022-02-11T01:03:59.2595457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask718\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask726\",\"eTag\":\"0x8D9ECFA62C3D222\",\"lastModified\":\"2022-02-11T01:03:59.2615458Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask726\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask719\",\"eTag\":\"0x8D9ECFA62C6430F\",\"lastModified\":\"2022-02-11T01:03:59.2775439Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask719\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask720\",\"eTag\":\"0x8D9ECFA62C6911F\",\"lastModified\":\"2022-02-11T01:03:59.2795423Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask720\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask717\",\"eTag\":\"0x8D9ECFA62C72D7E\",\"lastModified\":\"2022-02-11T01:03:59.2835454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask717\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask732\",\"eTag\":\"0x8D9ECFA62CC3677\",\"lastModified\":\"2022-02-11T01:03:59.3165431Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask732\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask742\",\"eTag\":\"0x8D9ECFA62CCF9D5\",\"lastModified\":\"2022-02-11T01:03:59.3215445Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask742\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask727\",\"eTag\":\"0x8D9ECFA62CCD2D1\",\"lastModified\":\"2022-02-11T01:03:59.3205457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask727\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask740\",\"eTag\":\"0x8D9ECFA62CCD2D1\",\"lastModified\":\"2022-02-11T01:03:59.3205457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask740\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask744\",\"eTag\":\"0x8D9ECFA62CD20EB\",\"lastModified\":\"2022-02-11T01:03:59.3225451Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask744\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask743\",\"eTag\":\"0x8D9ECFA62CD4804\",\"lastModified\":\"2022-02-11T01:03:59.323546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask743\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask731\",\"eTag\":\"0x8D9ECFA62CD4804\",\"lastModified\":\"2022-02-11T01:03:59.323546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask731\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask730\",\"eTag\":\"0x8D9ECFA62D0072E\",\"lastModified\":\"2022-02-11T01:03:59.341547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask730\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask734\",\"eTag\":\"0x8D9ECFA62CCD2D1\",\"lastModified\":\"2022-02-11T01:03:59.3205457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask734\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask733\",\"eTag\":\"0x8D9ECFA62CFE00B\",\"lastModified\":\"2022-02-11T01:03:59.3405451Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask733\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask736\",\"eTag\":\"0x8D9ECFA62CFB90C\",\"lastModified\":\"2022-02-11T01:03:59.3395468Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask736\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask738\",\"eTag\":\"0x8D9ECFA62CCF9D5\",\"lastModified\":\"2022-02-11T01:03:59.3215445Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask738\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask741\",\"eTag\":\"0x8D9ECFA62CD20EB\",\"lastModified\":\"2022-02-11T01:03:59.3225451Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask741\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask737\",\"eTag\":\"0x8D9ECFA62D05541\",\"lastModified\":\"2022-02-11T01:03:59.3435457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask737\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask746\",\"eTag\":\"0x8D9ECFA62D44CDA\",\"lastModified\":\"2022-02-11T01:03:59.369545Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask746\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask747\",\"eTag\":\"0x8D9ECFA62D5AC72\",\"lastModified\":\"2022-02-11T01:03:59.3785458Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask747\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask745\",\"eTag\":\"0x8D9ECFA62D5103E\",\"lastModified\":\"2022-02-11T01:03:59.374547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask745\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask749\",\"eTag\":\"0x8D9ECFA62DDC2DF\",\"lastModified\":\"2022-02-11T01:03:59.4315487Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask749\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask748\",\"eTag\":\"0x8D9ECFA62DB03AF\",\"lastModified\":\"2022-02-11T01:03:59.4135471Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask748\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask728\",\"eTag\":\"0x8D9ECFA62D0A34F\",\"lastModified\":\"2022-02-11T01:03:59.3455439Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask728\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask735\",\"eTag\":\"0x8D9ECFA62D33B63\",\"lastModified\":\"2022-02-11T01:03:59.3625443Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask735\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask739\",\"eTag\":\"0x8D9ECFA62E7D4FD\",\"lastModified\":\"2022-02-11T01:03:59.4975485Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask739\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:28 GMT", + "date" : "Fri, 11 Feb 2022 01:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "30868f4f-46ce-4b02-8612-8303fe76bcd1", + "client-request-id" : "605239a6-8b56-45de-bb58-7a604c1487ef", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "50bc8429-4cc3-4104-a683-cfc79b0659e0", + "request-id" : "a064d4cd-c240-49ba-88f6-28228122a506", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask801\",\"eTag\":\"0x8D95060C9E8CEF4\",\"lastModified\":\"2021-07-26T18:11:28.4196084Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask801\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask800\",\"eTag\":\"0x8D95060C9E8A7DB\",\"lastModified\":\"2021-07-26T18:11:28.4186075Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask800\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask802\",\"eTag\":\"0x8D95060C9E91D25\",\"lastModified\":\"2021-07-26T18:11:28.4216101Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask802\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask804\",\"eTag\":\"0x8D95060C9E91D25\",\"lastModified\":\"2021-07-26T18:11:28.4216101Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask804\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask803\",\"eTag\":\"0x8D95060C9E9441B\",\"lastModified\":\"2021-07-26T18:11:28.4226075Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask803\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask806\",\"eTag\":\"0x8D95060C9EB670B\",\"lastModified\":\"2021-07-26T18:11:28.4366091Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask806\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask805\",\"eTag\":\"0x8D95060C9EB670B\",\"lastModified\":\"2021-07-26T18:11:28.4366091Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask805\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask807\",\"eTag\":\"0x8D95060C9EB670B\",\"lastModified\":\"2021-07-26T18:11:28.4366091Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask807\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask809\",\"eTag\":\"0x8D95060C9EBDC46\",\"lastModified\":\"2021-07-26T18:11:28.4396102Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask809\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask810\",\"eTag\":\"0x8D95060C9F63C60\",\"lastModified\":\"2021-07-26T18:11:28.5076064Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask810\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask811\",\"eTag\":\"0x8D95060C9F68A84\",\"lastModified\":\"2021-07-26T18:11:28.5096068Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask811\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask812\",\"eTag\":\"0x8D95060C9F68A84\",\"lastModified\":\"2021-07-26T18:11:28.5096068Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask812\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask815\",\"eTag\":\"0x8D95060C9F7269D\",\"lastModified\":\"2021-07-26T18:11:28.5136029Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask815\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask813\",\"eTag\":\"0x8D95060C9F6B18B\",\"lastModified\":\"2021-07-26T18:11:28.5106059Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask813\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask808\",\"eTag\":\"0x8D95060C9F6D895\",\"lastModified\":\"2021-07-26T18:11:28.5116053Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask808\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask814\",\"eTag\":\"0x8D95060C9F7269D\",\"lastModified\":\"2021-07-26T18:11:28.5136029Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask814\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask816\",\"eTag\":\"0x8D95060C9F774F8\",\"lastModified\":\"2021-07-26T18:11:28.5156088Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask816\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask817\",\"eTag\":\"0x8D95060C9F8D467\",\"lastModified\":\"2021-07-26T18:11:28.5246055Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask817\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask819\",\"eTag\":\"0x8D95060C9F9BECB\",\"lastModified\":\"2021-07-26T18:11:28.5306059Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask819\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask818\",\"eTag\":\"0x8D95060C9F970A9\",\"lastModified\":\"2021-07-26T18:11:28.5286057Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask818\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask827\",\"eTag\":\"0x8D95060C9F99797\",\"lastModified\":\"2021-07-26T18:11:28.5296023Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask827\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask826\",\"eTag\":\"0x8D95060C9F9BECB\",\"lastModified\":\"2021-07-26T18:11:28.5306059Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask826\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask821\",\"eTag\":\"0x8D95060C9FA0CDC\",\"lastModified\":\"2021-07-26T18:11:28.5326044Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask821\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask823\",\"eTag\":\"0x8D95060C9FA5B8C\",\"lastModified\":\"2021-07-26T18:11:28.5346188Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask823\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask820\",\"eTag\":\"0x8D95060C9FA33EC\",\"lastModified\":\"2021-07-26T18:11:28.5336044Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask820\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask822\",\"eTag\":\"0x8D95060C9FA5B8C\",\"lastModified\":\"2021-07-26T18:11:28.5346188Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask822\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask824\",\"eTag\":\"0x8D95060C9FA8216\",\"lastModified\":\"2021-07-26T18:11:28.5356054Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask824\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask833\",\"eTag\":\"0x8D95060C9FAD027\",\"lastModified\":\"2021-07-26T18:11:28.5376039Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask833\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask829\",\"eTag\":\"0x8D95060C9FAF72C\",\"lastModified\":\"2021-07-26T18:11:28.5386028Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask829\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask828\",\"eTag\":\"0x8D95060C9FAA920\",\"lastModified\":\"2021-07-26T18:11:28.5366048Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask828\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask831\",\"eTag\":\"0x8D95060C9FAD027\",\"lastModified\":\"2021-07-26T18:11:28.5376039Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask831\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask832\",\"eTag\":\"0x8D95060C9FAD027\",\"lastModified\":\"2021-07-26T18:11:28.5376039Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask832\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask830\",\"eTag\":\"0x8D95060C9FB1EB0\",\"lastModified\":\"2021-07-26T18:11:28.5396144Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask830\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask837\",\"eTag\":\"0x8D95060C9FAF72C\",\"lastModified\":\"2021-07-26T18:11:28.5386028Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask837\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask838\",\"eTag\":\"0x8D95060C9FB4598\",\"lastModified\":\"2021-07-26T18:11:28.5406104Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask838\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask835\",\"eTag\":\"0x8D95060C9FB4598\",\"lastModified\":\"2021-07-26T18:11:28.5406104Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask835\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask825\",\"eTag\":\"0x8D95060C9FA33EC\",\"lastModified\":\"2021-07-26T18:11:28.5336044Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask825\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask836\",\"eTag\":\"0x8D95060C9FC0891\",\"lastModified\":\"2021-07-26T18:11:28.5456017Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask836\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask845\",\"eTag\":\"0x8D95060C9FCF5CF\",\"lastModified\":\"2021-07-26T18:11:28.5516751Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask845\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask844\",\"eTag\":\"0x8D95060C9FCF5CF\",\"lastModified\":\"2021-07-26T18:11:28.5516751Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask844\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask847\",\"eTag\":\"0x8D95060C9FD6837\",\"lastModified\":\"2021-07-26T18:11:28.5546039Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask847\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask848\",\"eTag\":\"0x8D95060C9FD4120\",\"lastModified\":\"2021-07-26T18:11:28.5536032Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask848\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask843\",\"eTag\":\"0x8D95060C9FEEF17\",\"lastModified\":\"2021-07-26T18:11:28.5646103Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask843\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask840\",\"eTag\":\"0x8D95060C9FE2B8A\",\"lastModified\":\"2021-07-26T18:11:28.5596042Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask840\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask839\",\"eTag\":\"0x8D95060C9FDDD4E\",\"lastModified\":\"2021-07-26T18:11:28.5576014Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask839\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask846\",\"eTag\":\"0x8D95060C9FDB671\",\"lastModified\":\"2021-07-26T18:11:28.5566065Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask846\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask841\",\"eTag\":\"0x8D95060C9FF8B5D\",\"lastModified\":\"2021-07-26T18:11:28.5686109Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask841\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask849\",\"eTag\":\"0x8D95060C9FF3CE4\",\"lastModified\":\"2021-07-26T18:11:28.566602Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask849\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask834\",\"eTag\":\"0x8D95060CA03A9CD\",\"lastModified\":\"2021-07-26T18:11:28.5956045Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask834\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask842\",\"eTag\":\"0x8D95060C9FD8F40\",\"lastModified\":\"2021-07-26T18:11:28.5556032Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask842\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask950\",\"eTag\":\"0x8D9ECFA62D11889\",\"lastModified\":\"2022-02-11T01:03:59.3485449Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask950\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask962\",\"eTag\":\"0x8D9ECFA62DB2AC8\",\"lastModified\":\"2022-02-11T01:03:59.414548Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask962\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask964\",\"eTag\":\"0x8D9ECFA62DD9BC5\",\"lastModified\":\"2022-02-11T01:03:59.4305477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask964\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask978\",\"eTag\":\"0x8D9ECFA62DD9BC5\",\"lastModified\":\"2022-02-11T01:03:59.4305477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask978\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask985\",\"eTag\":\"0x8D9ECFA62DD74B4\",\"lastModified\":\"2022-02-11T01:03:59.4295476Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask985\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask976\",\"eTag\":\"0x8D9ECFA62DADCA3\",\"lastModified\":\"2022-02-11T01:03:59.4125475Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask976\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask955\",\"eTag\":\"0x8D9ECFA62DD9BC5\",\"lastModified\":\"2022-02-11T01:03:59.4305477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask955\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask958\",\"eTag\":\"0x8D9ECFA62DDC2DF\",\"lastModified\":\"2022-02-11T01:03:59.4315487Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask958\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask960\",\"eTag\":\"0x8D9ECFA62DD9BC5\",\"lastModified\":\"2022-02-11T01:03:59.4305477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask960\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask966\",\"eTag\":\"0x8D9ECFA62DB03AF\",\"lastModified\":\"2022-02-11T01:03:59.4135471Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask966\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask953\",\"eTag\":\"0x8D9ECFA62DDC2DF\",\"lastModified\":\"2022-02-11T01:03:59.4315487Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask953\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask986\",\"eTag\":\"0x8D9ECFA62DDE9E6\",\"lastModified\":\"2022-02-11T01:03:59.4325478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask986\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask956\",\"eTag\":\"0x8D9ECFA62DD74B4\",\"lastModified\":\"2022-02-11T01:03:59.4295476Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask956\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask954\",\"eTag\":\"0x8D9ECFA62DD9BC5\",\"lastModified\":\"2022-02-11T01:03:59.4305477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask954\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask965\",\"eTag\":\"0x8D9ECFA62DD9BC5\",\"lastModified\":\"2022-02-11T01:03:59.4305477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask965\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask979\",\"eTag\":\"0x8D9ECFA62DE8632\",\"lastModified\":\"2022-02-11T01:03:59.436549Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask979\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask963\",\"eTag\":\"0x8D9ECFA62DD74B4\",\"lastModified\":\"2022-02-11T01:03:59.4295476Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask963\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask968\",\"eTag\":\"0x8D9ECFA62DE8632\",\"lastModified\":\"2022-02-11T01:03:59.436549Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask968\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask959\",\"eTag\":\"0x8D9ECFA62DD74B4\",\"lastModified\":\"2022-02-11T01:03:59.4295476Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask959\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask981\",\"eTag\":\"0x8D9ECFA62DEAD20\",\"lastModified\":\"2022-02-11T01:03:59.4375456Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask981\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask983\",\"eTag\":\"0x8D9ECFA62DEAD20\",\"lastModified\":\"2022-02-11T01:03:59.4375456Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask983\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask967\",\"eTag\":\"0x8D9ECFA62DE8632\",\"lastModified\":\"2022-02-11T01:03:59.436549Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask967\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask972\",\"eTag\":\"0x8D9ECFA62E0A906\",\"lastModified\":\"2022-02-11T01:03:59.4505478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask972\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask984\",\"eTag\":\"0x8D9ECFA62E0A906\",\"lastModified\":\"2022-02-11T01:03:59.4505478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask984\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask957\",\"eTag\":\"0x8D9ECFA62E19360\",\"lastModified\":\"2022-02-11T01:03:59.4565472Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask957\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask971\",\"eTag\":\"0x8D9ECFA62E1E186\",\"lastModified\":\"2022-02-11T01:03:59.4585478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask971\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask987\",\"eTag\":\"0x8D9ECFA62E1E186\",\"lastModified\":\"2022-02-11T01:03:59.4585478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask987\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask974\",\"eTag\":\"0x8D9ECFA62E2A4D5\",\"lastModified\":\"2022-02-11T01:03:59.4635477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask974\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask982\",\"eTag\":\"0x8D9ECFA62E2A4D5\",\"lastModified\":\"2022-02-11T01:03:59.4635477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask982\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask952\",\"eTag\":\"0x8D9ECFA62E27DBC\",\"lastModified\":\"2022-02-11T01:03:59.4625468Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask952\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask977\",\"eTag\":\"0x8D9ECFA62E67569\",\"lastModified\":\"2022-02-11T01:03:59.4885481Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask977\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask973\",\"eTag\":\"0x8D9ECFA62E75FCE\",\"lastModified\":\"2022-02-11T01:03:59.4945486Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask973\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask970\",\"eTag\":\"0x8D9ECFA62E711AE\",\"lastModified\":\"2022-02-11T01:03:59.4925486Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask970\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask951\",\"eTag\":\"0x8D9ECFA62E75FCE\",\"lastModified\":\"2022-02-11T01:03:59.4945486Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask951\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask969\",\"eTag\":\"0x8D9ECFA62E738C3\",\"lastModified\":\"2022-02-11T01:03:59.4935491Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask969\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask980\",\"eTag\":\"0x8D9ECFA62E711AE\",\"lastModified\":\"2022-02-11T01:03:59.4925486Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask980\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask961\",\"eTag\":\"0x8D9ECFA62E84A12\",\"lastModified\":\"2022-02-11T01:03:59.5005458Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask961\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask992\",\"eTag\":\"0x8D9ECFA62E84A12\",\"lastModified\":\"2022-02-11T01:03:59.5005458Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask992\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask998\",\"eTag\":\"0x8D9ECFA62EA45E3\",\"lastModified\":\"2022-02-11T01:03:59.5135459Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask998\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask994\",\"eTag\":\"0x8D9ECFA62E84A12\",\"lastModified\":\"2022-02-11T01:03:59.5005458Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask994\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask993\",\"eTag\":\"0x8D9ECFA62EAE245\",\"lastModified\":\"2022-02-11T01:03:59.5175493Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask993\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask999\",\"eTag\":\"0x8D9ECFA62EABB1B\",\"lastModified\":\"2022-02-11T01:03:59.5165467Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask999\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask996\",\"eTag\":\"0x8D9ECFA62EAE245\",\"lastModified\":\"2022-02-11T01:03:59.5175493Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask996\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask991\",\"eTag\":\"0x8D9ECFA62EB7E80\",\"lastModified\":\"2022-02-11T01:03:59.5215488Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask991\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask989\",\"eTag\":\"0x8D9ECFA62EB305A\",\"lastModified\":\"2022-02-11T01:03:59.5195482Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask989\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask995\",\"eTag\":\"0x8D9ECFA62EB305A\",\"lastModified\":\"2022-02-11T01:03:59.5195482Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask995\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask975\",\"eTag\":\"0x8D9ECFA62EBA587\",\"lastModified\":\"2022-02-11T01:03:59.5225479Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask975\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask988\",\"eTag\":\"0x8D9ECFA62EB576E\",\"lastModified\":\"2022-02-11T01:03:59.5205486Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask988\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask997\",\"eTag\":\"0x8D9ECFA62EB0942\",\"lastModified\":\"2022-02-11T01:03:59.5185474Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask997\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask990\",\"eTag\":\"0x8D9ECFA62EB7E80\",\"lastModified\":\"2022-02-11T01:03:59.5215488Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask990\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:28 GMT", + "date" : "Fri, 11 Feb 2022 01:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "fa5b47c5-4b42-4b63-8522-89ff2708f0b7", + "client-request-id" : "592f74b8-618f-47c8-8afd-924e01852911", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "c878cdaa-6b24-4975-85c4-d1a598780602", + "request-id" : "30067bb1-a1b2-4981-b5e5-2e80bc3be2c7", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask650\",\"eTag\":\"0x8D95060CA081683\",\"lastModified\":\"2021-07-26T18:11:28.6246019Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask650\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask651\",\"eTag\":\"0x8D95060CA08656D\",\"lastModified\":\"2021-07-26T18:11:28.6266221Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask651\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask654\",\"eTag\":\"0x8D95060CA08656D\",\"lastModified\":\"2021-07-26T18:11:28.6266221Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask654\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask653\",\"eTag\":\"0x8D95060CA08B2B8\",\"lastModified\":\"2021-07-26T18:11:28.6286008Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask653\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask656\",\"eTag\":\"0x8D95060CA088BAF\",\"lastModified\":\"2021-07-26T18:11:28.6276015Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask656\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask655\",\"eTag\":\"0x8D95060CA08B2B8\",\"lastModified\":\"2021-07-26T18:11:28.6286008Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask655\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask658\",\"eTag\":\"0x8D95060CA094EFA\",\"lastModified\":\"2021-07-26T18:11:28.632601Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask658\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask657\",\"eTag\":\"0x8D95060CA08DA08\",\"lastModified\":\"2021-07-26T18:11:28.6296072Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask657\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask652\",\"eTag\":\"0x8D95060CA0900E0\",\"lastModified\":\"2021-07-26T18:11:28.6306016Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask652\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask660\",\"eTag\":\"0x8D95060CA0900E0\",\"lastModified\":\"2021-07-26T18:11:28.6306016Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask660\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask670\",\"eTag\":\"0x8D95060CA09C416\",\"lastModified\":\"2021-07-26T18:11:28.635599Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask670\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask659\",\"eTag\":\"0x8D95060CA092809\",\"lastModified\":\"2021-07-26T18:11:28.6316041Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask659\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask662\",\"eTag\":\"0x8D95060CA094EFA\",\"lastModified\":\"2021-07-26T18:11:28.632601Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask662\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask663\",\"eTag\":\"0x8D95060CA09EB2B\",\"lastModified\":\"2021-07-26T18:11:28.6365995Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask663\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask667\",\"eTag\":\"0x8D95060CA09EB2B\",\"lastModified\":\"2021-07-26T18:11:28.6365995Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask667\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask669\",\"eTag\":\"0x8D95060CA0A881B\",\"lastModified\":\"2021-07-26T18:11:28.6406171Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask669\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask668\",\"eTag\":\"0x8D95060CA09761D\",\"lastModified\":\"2021-07-26T18:11:28.6336029Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask668\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask665\",\"eTag\":\"0x8D95060CA0A6065\",\"lastModified\":\"2021-07-26T18:11:28.6396005Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask665\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask690\",\"eTag\":\"0x8D95060CA0CD175\",\"lastModified\":\"2021-07-26T18:11:28.6556021Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask690\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask661\",\"eTag\":\"0x8D95060CA0A881B\",\"lastModified\":\"2021-07-26T18:11:28.6406171Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask661\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask673\",\"eTag\":\"0x8D95060CA0CAB20\",\"lastModified\":\"2021-07-26T18:11:28.6546208Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask673\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask689\",\"eTag\":\"0x8D95060CA0C8A18\",\"lastModified\":\"2021-07-26T18:11:28.6537752Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask689\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask685\",\"eTag\":\"0x8D95060CA0D1F85\",\"lastModified\":\"2021-07-26T18:11:28.6576005Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask685\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask676\",\"eTag\":\"0x8D95060CA0D1F85\",\"lastModified\":\"2021-07-26T18:11:28.6576005Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask676\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask678\",\"eTag\":\"0x8D95060CA0D6DB1\",\"lastModified\":\"2021-07-26T18:11:28.6596017Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask678\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask688\",\"eTag\":\"0x8D95060CA0CD175\",\"lastModified\":\"2021-07-26T18:11:28.6556021Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask688\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask683\",\"eTag\":\"0x8D95060CA0D6DB1\",\"lastModified\":\"2021-07-26T18:11:28.6596017Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask683\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask666\",\"eTag\":\"0x8D95060CA0D1F85\",\"lastModified\":\"2021-07-26T18:11:28.6576005Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask666\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask679\",\"eTag\":\"0x8D95060CA0D4690\",\"lastModified\":\"2021-07-26T18:11:28.6586Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask679\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask687\",\"eTag\":\"0x8D95060CA0DBBD3\",\"lastModified\":\"2021-07-26T18:11:28.6616019Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask687\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask686\",\"eTag\":\"0x8D95060CA0E7F1E\",\"lastModified\":\"2021-07-26T18:11:28.6666014Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask686\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask664\",\"eTag\":\"0x8D95060CA0E30F5\",\"lastModified\":\"2021-07-26T18:11:28.6646005Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask664\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask674\",\"eTag\":\"0x8D95060CA0E7F1E\",\"lastModified\":\"2021-07-26T18:11:28.6666014Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask674\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask684\",\"eTag\":\"0x8D95060CA0DE2CD\",\"lastModified\":\"2021-07-26T18:11:28.6625997Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask684\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask677\",\"eTag\":\"0x8D95060CA107AED\",\"lastModified\":\"2021-07-26T18:11:28.6796013Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask677\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask675\",\"eTag\":\"0x8D95060CA0E5817\",\"lastModified\":\"2021-07-26T18:11:28.6656023Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask675\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask680\",\"eTag\":\"0x8D95060CA0F1BC5\",\"lastModified\":\"2021-07-26T18:11:28.6706117Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask680\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask671\",\"eTag\":\"0x8D95060CA0F4267\",\"lastModified\":\"2021-07-26T18:11:28.6716007Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask671\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask672\",\"eTag\":\"0x8D95060CA102CB8\",\"lastModified\":\"2021-07-26T18:11:28.6775992Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask672\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask682\",\"eTag\":\"0x8D95060CA0F9C80\",\"lastModified\":\"2021-07-26T18:11:28.6739072Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask682\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask681\",\"eTag\":\"0x8D95060CA0F695F\",\"lastModified\":\"2021-07-26T18:11:28.6725983Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask681\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask691\",\"eTag\":\"0x8D95060CA1758AB\",\"lastModified\":\"2021-07-26T18:11:28.7245995Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask691\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask693\",\"eTag\":\"0x8D95060CA178003\",\"lastModified\":\"2021-07-26T18:11:28.7256067Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask693\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask692\",\"eTag\":\"0x8D95060CA17A6CB\",\"lastModified\":\"2021-07-26T18:11:28.7265995Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask692\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask694\",\"eTag\":\"0x8D95060CA17A6CB\",\"lastModified\":\"2021-07-26T18:11:28.7265995Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask694\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask695\",\"eTag\":\"0x8D95060CA195473\",\"lastModified\":\"2021-07-26T18:11:28.7375987Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask695\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask697\",\"eTag\":\"0x8D95060CA197B7E\",\"lastModified\":\"2021-07-26T18:11:28.7385982Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask697\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask696\",\"eTag\":\"0x8D95060CA19A297\",\"lastModified\":\"2021-07-26T18:11:28.7395991Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask696\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask699\",\"eTag\":\"0x8D95060CA1A663D\",\"lastModified\":\"2021-07-26T18:11:28.7446077Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask699\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask698\",\"eTag\":\"0x8D95060CA1BC56E\",\"lastModified\":\"2021-07-26T18:11:28.7535982Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask698\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask650\",\"eTag\":\"0x8D9ECFA62BD1B6F\",\"lastModified\":\"2022-02-11T01:03:59.2175471Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask650\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask660\",\"eTag\":\"0x8D9ECFA62BE7AE6\",\"lastModified\":\"2022-02-11T01:03:59.2265446Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask660\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask652\",\"eTag\":\"0x8D9ECFA62BE53DE\",\"lastModified\":\"2022-02-11T01:03:59.2255454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask652\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask661\",\"eTag\":\"0x8D9ECFA62C02872\",\"lastModified\":\"2022-02-11T01:03:59.237541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask661\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask654\",\"eTag\":\"0x8D9ECFA62C04FA0\",\"lastModified\":\"2022-02-11T01:03:59.238544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask654\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask658\",\"eTag\":\"0x8D9ECFA62BE7AE6\",\"lastModified\":\"2022-02-11T01:03:59.2265446Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask658\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask651\",\"eTag\":\"0x8D9ECFA62C076AF\",\"lastModified\":\"2022-02-11T01:03:59.2395439Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask651\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask668\",\"eTag\":\"0x8D9ECFA62C04FA0\",\"lastModified\":\"2022-02-11T01:03:59.238544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask668\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask674\",\"eTag\":\"0x8D9ECFA62C09DC0\",\"lastModified\":\"2022-02-11T01:03:59.240544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask674\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask666\",\"eTag\":\"0x8D9ECFA62C076AF\",\"lastModified\":\"2022-02-11T01:03:59.2395439Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask666\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask656\",\"eTag\":\"0x8D9ECFA62C09DC0\",\"lastModified\":\"2022-02-11T01:03:59.240544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask656\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask662\",\"eTag\":\"0x8D9ECFA62C0C4E4\",\"lastModified\":\"2022-02-11T01:03:59.241546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask662\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask655\",\"eTag\":\"0x8D9ECFA62C0C4E4\",\"lastModified\":\"2022-02-11T01:03:59.241546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask655\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask657\",\"eTag\":\"0x8D9ECFA62C112E4\",\"lastModified\":\"2022-02-11T01:03:59.2435428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask657\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask665\",\"eTag\":\"0x8D9ECFA62C112E4\",\"lastModified\":\"2022-02-11T01:03:59.2435428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask665\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask673\",\"eTag\":\"0x8D9ECFA62C112E4\",\"lastModified\":\"2022-02-11T01:03:59.2435428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask673\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask675\",\"eTag\":\"0x8D9ECFA62C139F8\",\"lastModified\":\"2022-02-11T01:03:59.2445432Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask675\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask676\",\"eTag\":\"0x8D9ECFA62C2E7BE\",\"lastModified\":\"2022-02-11T01:03:59.2555454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask676\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask672\",\"eTag\":\"0x8D9ECFA62C335DE\",\"lastModified\":\"2022-02-11T01:03:59.2575454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask672\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask663\",\"eTag\":\"0x8D9ECFA62C35CF4\",\"lastModified\":\"2022-02-11T01:03:59.258546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask663\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask677\",\"eTag\":\"0x8D9ECFA62C3D222\",\"lastModified\":\"2022-02-11T01:03:59.2615458Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask677\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask664\",\"eTag\":\"0x8D9ECFA62C5CDE4\",\"lastModified\":\"2022-02-11T01:03:59.2745444Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask664\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask667\",\"eTag\":\"0x8D9ECFA62C4203D\",\"lastModified\":\"2022-02-11T01:03:59.2635453Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask667\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask669\",\"eTag\":\"0x8D9ECFA62C4203D\",\"lastModified\":\"2022-02-11T01:03:59.2635453Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask669\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask679\",\"eTag\":\"0x8D9ECFA62C5F4E0\",\"lastModified\":\"2022-02-11T01:03:59.2755424Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask679\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask678\",\"eTag\":\"0x8D9ECFA62C3F92C\",\"lastModified\":\"2022-02-11T01:03:59.2625452Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask678\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask682\",\"eTag\":\"0x8D9ECFA62C3D222\",\"lastModified\":\"2022-02-11T01:03:59.2615458Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask682\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask659\",\"eTag\":\"0x8D9ECFA62C6DF4F\",\"lastModified\":\"2022-02-11T01:03:59.2815439Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask659\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask681\",\"eTag\":\"0x8D9ECFA62C70670\",\"lastModified\":\"2022-02-11T01:03:59.2825456Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask681\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask670\",\"eTag\":\"0x8D9ECFA62C77BA0\",\"lastModified\":\"2022-02-11T01:03:59.2855456Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask670\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask671\",\"eTag\":\"0x8D9ECFA62C7F0CA\",\"lastModified\":\"2022-02-11T01:03:59.288545Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask671\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask680\",\"eTag\":\"0x8D9ECFA62C7A2A6\",\"lastModified\":\"2022-02-11T01:03:59.2865446Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask680\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask683\",\"eTag\":\"0x8D9ECFA62CF43CD\",\"lastModified\":\"2022-02-11T01:03:59.3365453Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask683\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask684\",\"eTag\":\"0x8D9ECFA62D47402\",\"lastModified\":\"2022-02-11T01:03:59.3705474Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask684\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask687\",\"eTag\":\"0x8D9ECFA62D4E929\",\"lastModified\":\"2022-02-11T01:03:59.3735465Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask687\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask685\",\"eTag\":\"0x8D9ECFA62D4E929\",\"lastModified\":\"2022-02-11T01:03:59.3735465Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask685\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask689\",\"eTag\":\"0x8D9ECFA62D58554\",\"lastModified\":\"2022-02-11T01:03:59.3775444Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask689\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask692\",\"eTag\":\"0x8D9ECFA62DA4060\",\"lastModified\":\"2022-02-11T01:03:59.4085472Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask692\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask690\",\"eTag\":\"0x8D9ECFA62D9CB24\",\"lastModified\":\"2022-02-11T01:03:59.405546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask690\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask686\",\"eTag\":\"0x8D9ECFA62DA4060\",\"lastModified\":\"2022-02-11T01:03:59.4085472Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask686\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask694\",\"eTag\":\"0x8D9ECFA62DAB58A\",\"lastModified\":\"2022-02-11T01:03:59.4115466Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask694\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask688\",\"eTag\":\"0x8D9ECFA62DAB58A\",\"lastModified\":\"2022-02-11T01:03:59.4115466Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask688\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask698\",\"eTag\":\"0x8D9ECFA62DD74B4\",\"lastModified\":\"2022-02-11T01:03:59.4295476Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask698\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask693\",\"eTag\":\"0x8D9ECFA62DADCA3\",\"lastModified\":\"2022-02-11T01:03:59.4125475Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask693\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask699\",\"eTag\":\"0x8D9ECFA62E081D3\",\"lastModified\":\"2022-02-11T01:03:59.4495443Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask699\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask697\",\"eTag\":\"0x8D9ECFA62E1BA79\",\"lastModified\":\"2022-02-11T01:03:59.4575481Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask697\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask696\",\"eTag\":\"0x8D9ECFA62E256A6\",\"lastModified\":\"2022-02-11T01:03:59.4615462Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask696\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask691\",\"eTag\":\"0x8D9ECFA62E75FCE\",\"lastModified\":\"2022-02-11T01:03:59.4945486Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask691\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask653\",\"eTag\":\"0x8D9ECFA62D07C5C\",\"lastModified\":\"2022-02-11T01:03:59.3445468Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask653\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask695\",\"eTag\":\"0x8D9ECFA62EBA587\",\"lastModified\":\"2022-02-11T01:03:59.5225479Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask695\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:28 GMT", + "date" : "Fri, 11 Feb 2022 01:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "1ed98247-cc27-4834-9981-1ae6ba51de6a", + "client-request-id" : "b00eaece-995a-4aa3-bdab-a37b109c5c39", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "5e6bd680-54a1-4b2d-b90d-6a9876240516", + "request-id" : "b25377ef-9dd5-4b33-8ed3-926ac138484e", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask752\",\"eTag\":\"0x8D95060CA09C416\",\"lastModified\":\"2021-07-26T18:11:28.635599Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask752\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask750\",\"eTag\":\"0x8D95060CA0AAE84\",\"lastModified\":\"2021-07-26T18:11:28.6416004Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask750\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask754\",\"eTag\":\"0x8D95060CA0C354E\",\"lastModified\":\"2021-07-26T18:11:28.6516046Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask754\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask764\",\"eTag\":\"0x8D95060CA0CAB20\",\"lastModified\":\"2021-07-26T18:11:28.6546208Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask764\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask759\",\"eTag\":\"0x8D95060CA0CF87C\",\"lastModified\":\"2021-07-26T18:11:28.6566012Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask759\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask757\",\"eTag\":\"0x8D95060CA0DBBD3\",\"lastModified\":\"2021-07-26T18:11:28.6616019Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask757\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask763\",\"eTag\":\"0x8D95060CA0E09D7\",\"lastModified\":\"2021-07-26T18:11:28.6635991Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask763\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask753\",\"eTag\":\"0x8D95060CA0D4690\",\"lastModified\":\"2021-07-26T18:11:28.6586Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask753\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask758\",\"eTag\":\"0x8D95060CA0D94C7\",\"lastModified\":\"2021-07-26T18:11:28.6606023Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask758\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask756\",\"eTag\":\"0x8D95060CA0E09D7\",\"lastModified\":\"2021-07-26T18:11:28.6635991Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask756\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask760\",\"eTag\":\"0x8D95060CA0E09D7\",\"lastModified\":\"2021-07-26T18:11:28.6635991Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask760\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask792\",\"eTag\":\"0x8D95060CA0ECD44\",\"lastModified\":\"2021-07-26T18:11:28.668602Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask792\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask794\",\"eTag\":\"0x8D95060CA0E5817\",\"lastModified\":\"2021-07-26T18:11:28.6656023Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask794\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask793\",\"eTag\":\"0x8D95060CA0EA628\",\"lastModified\":\"2021-07-26T18:11:28.6676008Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask793\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask755\",\"eTag\":\"0x8D95060CA0DE2CD\",\"lastModified\":\"2021-07-26T18:11:28.6625997Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask755\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask791\",\"eTag\":\"0x8D95060CA0E30F5\",\"lastModified\":\"2021-07-26T18:11:28.6646005Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask791\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask766\",\"eTag\":\"0x8D95060CA0D94C7\",\"lastModified\":\"2021-07-26T18:11:28.6606023Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask766\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask796\",\"eTag\":\"0x8D95060CA0EA628\",\"lastModified\":\"2021-07-26T18:11:28.6676008Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask796\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask765\",\"eTag\":\"0x8D95060CA0EF443\",\"lastModified\":\"2021-07-26T18:11:28.6696003Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask765\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask762\",\"eTag\":\"0x8D95060CA102CB8\",\"lastModified\":\"2021-07-26T18:11:28.6775992Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask762\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask798\",\"eTag\":\"0x8D95060CA107AED\",\"lastModified\":\"2021-07-26T18:11:28.6796013Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask798\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask789\",\"eTag\":\"0x8D95060CA107AED\",\"lastModified\":\"2021-07-26T18:11:28.6796013Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask789\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask761\",\"eTag\":\"0x8D95060CA0EF443\",\"lastModified\":\"2021-07-26T18:11:28.6696003Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask761\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask797\",\"eTag\":\"0x8D95060CA10A2A4\",\"lastModified\":\"2021-07-26T18:11:28.680618Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask797\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask751\",\"eTag\":\"0x8D95060CA11B364\",\"lastModified\":\"2021-07-26T18:11:28.6876004Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask751\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask776\",\"eTag\":\"0x8D95060CA16E37E\",\"lastModified\":\"2021-07-26T18:11:28.7215998Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask776\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask778\",\"eTag\":\"0x8D95060CA17319C\",\"lastModified\":\"2021-07-26T18:11:28.7235996Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask778\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask777\",\"eTag\":\"0x8D95060CA17319C\",\"lastModified\":\"2021-07-26T18:11:28.7235996Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask777\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask767\",\"eTag\":\"0x8D95060CA195473\",\"lastModified\":\"2021-07-26T18:11:28.7375987Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask767\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask770\",\"eTag\":\"0x8D95060CA19A297\",\"lastModified\":\"2021-07-26T18:11:28.7395991Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask770\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask771\",\"eTag\":\"0x8D95060CA1A3F69\",\"lastModified\":\"2021-07-26T18:11:28.7436137Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask771\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask769\",\"eTag\":\"0x8D95060CA1A17C1\",\"lastModified\":\"2021-07-26T18:11:28.7425985Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask769\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask768\",\"eTag\":\"0x8D95060CA19C9A4\",\"lastModified\":\"2021-07-26T18:11:28.7405988Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask768\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask774\",\"eTag\":\"0x8D95060CA1AB3F6\",\"lastModified\":\"2021-07-26T18:11:28.7465974Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask774\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask780\",\"eTag\":\"0x8D95060CA1ADB0A\",\"lastModified\":\"2021-07-26T18:11:28.7475978Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask780\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask788\",\"eTag\":\"0x8D95060CA1B292F\",\"lastModified\":\"2021-07-26T18:11:28.7495983Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask788\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask781\",\"eTag\":\"0x8D95060CA1B292F\",\"lastModified\":\"2021-07-26T18:11:28.7495983Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask781\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask779\",\"eTag\":\"0x8D95060CA1A8D56\",\"lastModified\":\"2021-07-26T18:11:28.7456086Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask779\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask787\",\"eTag\":\"0x8D95060CA1B5048\",\"lastModified\":\"2021-07-26T18:11:28.7505992Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask787\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask782\",\"eTag\":\"0x8D95060CA1B021C\",\"lastModified\":\"2021-07-26T18:11:28.748598Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask782\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask785\",\"eTag\":\"0x8D95060CA1B7790\",\"lastModified\":\"2021-07-26T18:11:28.7516048Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask785\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask775\",\"eTag\":\"0x8D95060CA1B7790\",\"lastModified\":\"2021-07-26T18:11:28.7516048Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask775\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask772\",\"eTag\":\"0x8D95060CA1C1380\",\"lastModified\":\"2021-07-26T18:11:28.7555968Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask772\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask773\",\"eTag\":\"0x8D95060CA1C1380\",\"lastModified\":\"2021-07-26T18:11:28.7555968Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask773\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask783\",\"eTag\":\"0x8D95060CA1C6194\",\"lastModified\":\"2021-07-26T18:11:28.7575956Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask783\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask786\",\"eTag\":\"0x8D95060CA1D9A28\",\"lastModified\":\"2021-07-26T18:11:28.7655976Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask786\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask784\",\"eTag\":\"0x8D95060CA1DC13E\",\"lastModified\":\"2021-07-26T18:11:28.7665982Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask784\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask795\",\"eTag\":\"0x8D95060CA1DC13E\",\"lastModified\":\"2021-07-26T18:11:28.7665982Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask795\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask799\",\"eTag\":\"0x8D95060CA1ED2A6\",\"lastModified\":\"2021-07-26T18:11:28.7735974Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask799\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask790\",\"eTag\":\"0x8D95060CA1E847D\",\"lastModified\":\"2021-07-26T18:11:28.7715965Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask790\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask756\",\"eTag\":\"0x8D9ECFA62BD6964\",\"lastModified\":\"2022-02-11T01:03:59.2195428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask756\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask752\",\"eTag\":\"0x8D9ECFA62BE53DE\",\"lastModified\":\"2022-02-11T01:03:59.2255454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask752\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask761\",\"eTag\":\"0x8D9ECFA62BE53DE\",\"lastModified\":\"2022-02-11T01:03:59.2255454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask761\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask760\",\"eTag\":\"0x8D9ECFA62C04FA0\",\"lastModified\":\"2022-02-11T01:03:59.238544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask760\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask754\",\"eTag\":\"0x8D9ECFA62BE53DE\",\"lastModified\":\"2022-02-11T01:03:59.2255454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask754\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask759\",\"eTag\":\"0x8D9ECFA62C02872\",\"lastModified\":\"2022-02-11T01:03:59.237541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask759\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask762\",\"eTag\":\"0x8D9ECFA62C09DC0\",\"lastModified\":\"2022-02-11T01:03:59.240544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask762\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask767\",\"eTag\":\"0x8D9ECFA62C076AF\",\"lastModified\":\"2022-02-11T01:03:59.2395439Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask767\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask753\",\"eTag\":\"0x8D9ECFA62C02872\",\"lastModified\":\"2022-02-11T01:03:59.237541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask753\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask751\",\"eTag\":\"0x8D9ECFA62C076AF\",\"lastModified\":\"2022-02-11T01:03:59.2395439Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask751\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask758\",\"eTag\":\"0x8D9ECFA62C0EBD5\",\"lastModified\":\"2022-02-11T01:03:59.2425429Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask758\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask764\",\"eTag\":\"0x8D9ECFA62C0EBD5\",\"lastModified\":\"2022-02-11T01:03:59.2425429Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask764\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask768\",\"eTag\":\"0x8D9ECFA62C0C4E4\",\"lastModified\":\"2022-02-11T01:03:59.241546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask768\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask765\",\"eTag\":\"0x8D9ECFA62C112E4\",\"lastModified\":\"2022-02-11T01:03:59.2435428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask765\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask769\",\"eTag\":\"0x8D9ECFA62C2C0A0\",\"lastModified\":\"2022-02-11T01:03:59.254544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask769\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask766\",\"eTag\":\"0x8D9ECFA62C30ED1\",\"lastModified\":\"2022-02-11T01:03:59.2565457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask766\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask771\",\"eTag\":\"0x8D9ECFA62C5A6D4\",\"lastModified\":\"2022-02-11T01:03:59.2735444Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask771\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask757\",\"eTag\":\"0x8D9ECFA62C7A2A6\",\"lastModified\":\"2022-02-11T01:03:59.2865446Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask757\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask772\",\"eTag\":\"0x8D9ECFA62C75489\",\"lastModified\":\"2022-02-11T01:03:59.2845449Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask772\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask750\",\"eTag\":\"0x8D9ECFA62CCABBC\",\"lastModified\":\"2022-02-11T01:03:59.3195452Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask750\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask778\",\"eTag\":\"0x8D9ECFA62CCABBC\",\"lastModified\":\"2022-02-11T01:03:59.3195452Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask778\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask773\",\"eTag\":\"0x8D9ECFA62C7C9B2\",\"lastModified\":\"2022-02-11T01:03:59.2875442Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask773\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask781\",\"eTag\":\"0x8D9ECFA62CD4804\",\"lastModified\":\"2022-02-11T01:03:59.323546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask781\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask780\",\"eTag\":\"0x8D9ECFA62CF6ADE\",\"lastModified\":\"2022-02-11T01:03:59.3375454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask780\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask775\",\"eTag\":\"0x8D9ECFA62CCF9D5\",\"lastModified\":\"2022-02-11T01:03:59.3215445Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask775\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask779\",\"eTag\":\"0x8D9ECFA62D0072E\",\"lastModified\":\"2022-02-11T01:03:59.341547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask779\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask774\",\"eTag\":\"0x8D9ECFA62CF1C9D\",\"lastModified\":\"2022-02-11T01:03:59.3355421Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask774\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask776\",\"eTag\":\"0x8D9ECFA62D05541\",\"lastModified\":\"2022-02-11T01:03:59.3435457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask776\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask789\",\"eTag\":\"0x8D9ECFA62D49B05\",\"lastModified\":\"2022-02-11T01:03:59.3715461Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask789\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask791\",\"eTag\":\"0x8D9ECFA62D58554\",\"lastModified\":\"2022-02-11T01:03:59.3775444Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask791\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask790\",\"eTag\":\"0x8D9ECFA62D55E4F\",\"lastModified\":\"2022-02-11T01:03:59.3765455Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask790\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask785\",\"eTag\":\"0x8D9ECFA62D55E4F\",\"lastModified\":\"2022-02-11T01:03:59.3765455Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask785\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask793\",\"eTag\":\"0x8D9ECFA62D4E929\",\"lastModified\":\"2022-02-11T01:03:59.3735465Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask793\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask797\",\"eTag\":\"0x8D9ECFA62D53749\",\"lastModified\":\"2022-02-11T01:03:59.3755465Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask797\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask788\",\"eTag\":\"0x8D9ECFA62DAB58A\",\"lastModified\":\"2022-02-11T01:03:59.4115466Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask788\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask786\",\"eTag\":\"0x8D9ECFA62DA1958\",\"lastModified\":\"2022-02-11T01:03:59.407548Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask786\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask782\",\"eTag\":\"0x8D9ECFA62D53749\",\"lastModified\":\"2022-02-11T01:03:59.3755465Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask782\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask798\",\"eTag\":\"0x8D9ECFA62DAB58A\",\"lastModified\":\"2022-02-11T01:03:59.4115466Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask798\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask795\",\"eTag\":\"0x8D9ECFA62D9CB24\",\"lastModified\":\"2022-02-11T01:03:59.405546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask795\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask799\",\"eTag\":\"0x8D9ECFA62DA676A\",\"lastModified\":\"2022-02-11T01:03:59.4095466Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask799\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask796\",\"eTag\":\"0x8D9ECFA62DA8E77\",\"lastModified\":\"2022-02-11T01:03:59.4105463Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask796\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask794\",\"eTag\":\"0x8D9ECFA62DDE9E6\",\"lastModified\":\"2022-02-11T01:03:59.4325478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask794\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask784\",\"eTag\":\"0x8D9ECFA62DA1958\",\"lastModified\":\"2022-02-11T01:03:59.407548Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask784\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask763\",\"eTag\":\"0x8D9ECFA62DDE9E6\",\"lastModified\":\"2022-02-11T01:03:59.4325478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask763\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask783\",\"eTag\":\"0x8D9ECFA62DD9BC5\",\"lastModified\":\"2022-02-11T01:03:59.4305477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask783\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask770\",\"eTag\":\"0x8D9ECFA62D0F17F\",\"lastModified\":\"2022-02-11T01:03:59.3475455Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask770\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask792\",\"eTag\":\"0x8D9ECFA62E786D7\",\"lastModified\":\"2022-02-11T01:03:59.4955479Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask792\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask787\",\"eTag\":\"0x8D9ECFA62D47402\",\"lastModified\":\"2022-02-11T01:03:59.3705474Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask787\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask755\",\"eTag\":\"0x8D9ECFA62D11889\",\"lastModified\":\"2022-02-11T01:03:59.3485449Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask755\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask777\",\"eTag\":\"0x8D9ECFA62D05541\",\"lastModified\":\"2022-02-11T01:03:59.3435457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask777\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:28 GMT", + "date" : "Fri, 11 Feb 2022 01:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "cee6c06d-76f9-4e44-8ef1-dbd9aab1c93d", + "client-request-id" : "702efe08-aa14-4653-a353-cbeca5360439", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "65dcb883-e657-4f42-b730-e1c8775de788", + "request-id" : "018098a4-3d74-4245-85d4-59557cd3da5d", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask701\",\"eTag\":\"0x8D95060CA05A592\",\"lastModified\":\"2021-07-26T18:11:28.6086034Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask701\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask700\",\"eTag\":\"0x8D95060CA05A592\",\"lastModified\":\"2021-07-26T18:11:28.6086034Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask700\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask703\",\"eTag\":\"0x8D95060CA05F39B\",\"lastModified\":\"2021-07-26T18:11:28.6106011Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask703\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask704\",\"eTag\":\"0x8D95060CA05F39B\",\"lastModified\":\"2021-07-26T18:11:28.6106011Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask704\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask702\",\"eTag\":\"0x8D95060CA05A592\",\"lastModified\":\"2021-07-26T18:11:28.6086034Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask702\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask705\",\"eTag\":\"0x8D95060CA06467B\",\"lastModified\":\"2021-07-26T18:11:28.6127227Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask705\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask709\",\"eTag\":\"0x8D95060CA083D8E\",\"lastModified\":\"2021-07-26T18:11:28.6256014Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask709\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask708\",\"eTag\":\"0x8D95060CA083D8E\",\"lastModified\":\"2021-07-26T18:11:28.6256014Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask708\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask706\",\"eTag\":\"0x8D95060CA081683\",\"lastModified\":\"2021-07-26T18:11:28.6246019Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask706\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask712\",\"eTag\":\"0x8D95060CA08656D\",\"lastModified\":\"2021-07-26T18:11:28.6266221Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask712\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask707\",\"eTag\":\"0x8D95060CA083D8E\",\"lastModified\":\"2021-07-26T18:11:28.6256014Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask707\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask711\",\"eTag\":\"0x8D95060CA08B2B8\",\"lastModified\":\"2021-07-26T18:11:28.6286008Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask711\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask710\",\"eTag\":\"0x8D95060CA08656D\",\"lastModified\":\"2021-07-26T18:11:28.6266221Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask710\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask713\",\"eTag\":\"0x8D95060CA088BAF\",\"lastModified\":\"2021-07-26T18:11:28.6276015Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask713\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask718\",\"eTag\":\"0x8D95060CA08DA08\",\"lastModified\":\"2021-07-26T18:11:28.6296072Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask718\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask716\",\"eTag\":\"0x8D95060CA0900E0\",\"lastModified\":\"2021-07-26T18:11:28.6306016Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask716\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask720\",\"eTag\":\"0x8D95060CA09761D\",\"lastModified\":\"2021-07-26T18:11:28.6336029Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask720\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask715\",\"eTag\":\"0x8D95060CA099D86\",\"lastModified\":\"2021-07-26T18:11:28.6346118Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask715\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask721\",\"eTag\":\"0x8D95060CA0A3955\",\"lastModified\":\"2021-07-26T18:11:28.6386005Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask721\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask719\",\"eTag\":\"0x8D95060CA09761D\",\"lastModified\":\"2021-07-26T18:11:28.6336029Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask719\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask717\",\"eTag\":\"0x8D95060CA099D86\",\"lastModified\":\"2021-07-26T18:11:28.6346118Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask717\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask714\",\"eTag\":\"0x8D95060CA09EB2B\",\"lastModified\":\"2021-07-26T18:11:28.6365995Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask714\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask723\",\"eTag\":\"0x8D95060CA0D4690\",\"lastModified\":\"2021-07-26T18:11:28.6586Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask723\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask722\",\"eTag\":\"0x8D95060CA1053D5\",\"lastModified\":\"2021-07-26T18:11:28.6786005Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask722\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask737\",\"eTag\":\"0x8D95060CA162032\",\"lastModified\":\"2021-07-26T18:11:28.7166002Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask737\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask724\",\"eTag\":\"0x8D95060CA16BCE4\",\"lastModified\":\"2021-07-26T18:11:28.7206116Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask724\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask725\",\"eTag\":\"0x8D95060CA170A8D\",\"lastModified\":\"2021-07-26T18:11:28.7225997Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask725\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask726\",\"eTag\":\"0x8D95060CA1758AB\",\"lastModified\":\"2021-07-26T18:11:28.7245995Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask726\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask738\",\"eTag\":\"0x8D95060CA17319C\",\"lastModified\":\"2021-07-26T18:11:28.7235996Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask738\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask728\",\"eTag\":\"0x8D95060CA17A6CB\",\"lastModified\":\"2021-07-26T18:11:28.7265995Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask728\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask727\",\"eTag\":\"0x8D95060CA192D57\",\"lastModified\":\"2021-07-26T18:11:28.7365975Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask727\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask729\",\"eTag\":\"0x8D95060CA192D57\",\"lastModified\":\"2021-07-26T18:11:28.7365975Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask729\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask730\",\"eTag\":\"0x8D95060CA197B7E\",\"lastModified\":\"2021-07-26T18:11:28.7385982Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask730\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask731\",\"eTag\":\"0x8D95060CA19C9A4\",\"lastModified\":\"2021-07-26T18:11:28.7405988Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask731\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask733\",\"eTag\":\"0x8D95060CA1A3F69\",\"lastModified\":\"2021-07-26T18:11:28.7436137Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask733\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask732\",\"eTag\":\"0x8D95060CA1A663D\",\"lastModified\":\"2021-07-26T18:11:28.7446077Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask732\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask739\",\"eTag\":\"0x8D95060CA1A3F69\",\"lastModified\":\"2021-07-26T18:11:28.7436137Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask739\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask741\",\"eTag\":\"0x8D95060CA1ADB0A\",\"lastModified\":\"2021-07-26T18:11:28.7475978Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask741\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask734\",\"eTag\":\"0x8D95060CA1A663D\",\"lastModified\":\"2021-07-26T18:11:28.7446077Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask734\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask736\",\"eTag\":\"0x8D95060CA1B7790\",\"lastModified\":\"2021-07-26T18:11:28.7516048Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask736\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask744\",\"eTag\":\"0x8D95060CA1B9E59\",\"lastModified\":\"2021-07-26T18:11:28.7525977Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask744\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask740\",\"eTag\":\"0x8D95060CA1BEC97\",\"lastModified\":\"2021-07-26T18:11:28.7546007Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask740\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask735\",\"eTag\":\"0x8D95060CA1B7790\",\"lastModified\":\"2021-07-26T18:11:28.7516048Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask735\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask746\",\"eTag\":\"0x8D95060CA1D7304\",\"lastModified\":\"2021-07-26T18:11:28.7645956Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask746\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask745\",\"eTag\":\"0x8D95060CA1D24E5\",\"lastModified\":\"2021-07-26T18:11:28.7625957Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask745\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask742\",\"eTag\":\"0x8D95060CA1D9A28\",\"lastModified\":\"2021-07-26T18:11:28.7655976Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask742\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask747\",\"eTag\":\"0x8D95060CA1DC13E\",\"lastModified\":\"2021-07-26T18:11:28.7665982Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask747\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask748\",\"eTag\":\"0x8D95060CA1EAB99\",\"lastModified\":\"2021-07-26T18:11:28.7725977Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask748\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask743\",\"eTag\":\"0x8D95060CA1F6F2B\",\"lastModified\":\"2021-07-26T18:11:28.7776043Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask743\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask749\",\"eTag\":\"0x8D95060CA2E15A2\",\"lastModified\":\"2021-07-26T18:11:28.8736162Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask749\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask804\",\"eTag\":\"0x8D9ECFA62BD1B6F\",\"lastModified\":\"2022-02-11T01:03:59.2175471Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask804\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask800\",\"eTag\":\"0x8D9ECFA62BDB789\",\"lastModified\":\"2022-02-11T01:03:59.2215433Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask800\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask801\",\"eTag\":\"0x8D9ECFA62BDB789\",\"lastModified\":\"2022-02-11T01:03:59.2215433Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask801\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask806\",\"eTag\":\"0x8D9ECFA62BE2CC9\",\"lastModified\":\"2022-02-11T01:03:59.2245449Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask806\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask805\",\"eTag\":\"0x8D9ECFA62BE7AE6\",\"lastModified\":\"2022-02-11T01:03:59.2265446Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask805\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask802\",\"eTag\":\"0x8D9ECFA62C02872\",\"lastModified\":\"2022-02-11T01:03:59.237541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask802\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask807\",\"eTag\":\"0x8D9ECFA62C02872\",\"lastModified\":\"2022-02-11T01:03:59.237541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask807\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask803\",\"eTag\":\"0x8D9ECFA62C09DC0\",\"lastModified\":\"2022-02-11T01:03:59.240544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask803\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask812\",\"eTag\":\"0x8D9ECFA62C0EBD5\",\"lastModified\":\"2022-02-11T01:03:59.2425429Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask812\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask833\",\"eTag\":\"0x8D9ECFA62C2C0A0\",\"lastModified\":\"2022-02-11T01:03:59.254544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask833\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask828\",\"eTag\":\"0x8D9ECFA62C2C0A0\",\"lastModified\":\"2022-02-11T01:03:59.254544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask828\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask820\",\"eTag\":\"0x8D9ECFA62C29972\",\"lastModified\":\"2022-02-11T01:03:59.253541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask820\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask813\",\"eTag\":\"0x8D9ECFA62C30ED1\",\"lastModified\":\"2022-02-11T01:03:59.2565457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask813\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask826\",\"eTag\":\"0x8D9ECFA62C335DE\",\"lastModified\":\"2022-02-11T01:03:59.2575454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask826\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask824\",\"eTag\":\"0x8D9ECFA62C29972\",\"lastModified\":\"2022-02-11T01:03:59.253541Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask824\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask817\",\"eTag\":\"0x8D9ECFA62C3AB09\",\"lastModified\":\"2022-02-11T01:03:59.2605449Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask817\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask815\",\"eTag\":\"0x8D9ECFA62C4203D\",\"lastModified\":\"2022-02-11T01:03:59.2635453Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask815\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask811\",\"eTag\":\"0x8D9ECFA62C6430F\",\"lastModified\":\"2022-02-11T01:03:59.2775439Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask811\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask814\",\"eTag\":\"0x8D9ECFA62C6DF4F\",\"lastModified\":\"2022-02-11T01:03:59.2815439Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask814\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask810\",\"eTag\":\"0x8D9ECFA62C70670\",\"lastModified\":\"2022-02-11T01:03:59.2825456Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask810\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask829\",\"eTag\":\"0x8D9ECFA62C77BA0\",\"lastModified\":\"2022-02-11T01:03:59.2855456Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask829\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask809\",\"eTag\":\"0x8D9ECFA62C7C9B2\",\"lastModified\":\"2022-02-11T01:03:59.2875442Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask809\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask818\",\"eTag\":\"0x8D9ECFA62C7A2A6\",\"lastModified\":\"2022-02-11T01:03:59.2865446Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask818\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask816\",\"eTag\":\"0x8D9ECFA62C7A2A6\",\"lastModified\":\"2022-02-11T01:03:59.2865446Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask816\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask843\",\"eTag\":\"0x8D9ECFA62CCD2D1\",\"lastModified\":\"2022-02-11T01:03:59.3205457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask843\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask823\",\"eTag\":\"0x8D9ECFA62CC5DA1\",\"lastModified\":\"2022-02-11T01:03:59.3175457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask823\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask825\",\"eTag\":\"0x8D9ECFA62C817C3\",\"lastModified\":\"2022-02-11T01:03:59.2895427Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask825\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask842\",\"eTag\":\"0x8D9ECFA62CCABBC\",\"lastModified\":\"2022-02-11T01:03:59.3195452Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask842\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask836\",\"eTag\":\"0x8D9ECFA62CC3677\",\"lastModified\":\"2022-02-11T01:03:59.3165431Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask836\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask840\",\"eTag\":\"0x8D9ECFA62CC84D0\",\"lastModified\":\"2022-02-11T01:03:59.3185488Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask840\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask837\",\"eTag\":\"0x8D9ECFA62CCABBC\",\"lastModified\":\"2022-02-11T01:03:59.3195452Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask837\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask841\",\"eTag\":\"0x8D9ECFA62CD20EB\",\"lastModified\":\"2022-02-11T01:03:59.3225451Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask841\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask822\",\"eTag\":\"0x8D9ECFA62CFE00B\",\"lastModified\":\"2022-02-11T01:03:59.3405451Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask822\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask830\",\"eTag\":\"0x8D9ECFA62CFE00B\",\"lastModified\":\"2022-02-11T01:03:59.3405451Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask830\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask834\",\"eTag\":\"0x8D9ECFA62D0072E\",\"lastModified\":\"2022-02-11T01:03:59.341547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask834\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask821\",\"eTag\":\"0x8D9ECFA62CD4804\",\"lastModified\":\"2022-02-11T01:03:59.323546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask821\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask835\",\"eTag\":\"0x8D9ECFA62CFE00B\",\"lastModified\":\"2022-02-11T01:03:59.3405451Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask835\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask832\",\"eTag\":\"0x8D9ECFA62D05541\",\"lastModified\":\"2022-02-11T01:03:59.3435457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask832\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask839\",\"eTag\":\"0x8D9ECFA62D02E36\",\"lastModified\":\"2022-02-11T01:03:59.3425462Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask839\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask838\",\"eTag\":\"0x8D9ECFA62CF6ADE\",\"lastModified\":\"2022-02-11T01:03:59.3375454Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask838\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask819\",\"eTag\":\"0x8D9ECFA62C70670\",\"lastModified\":\"2022-02-11T01:03:59.2825456Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask819\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask831\",\"eTag\":\"0x8D9ECFA62D47402\",\"lastModified\":\"2022-02-11T01:03:59.3705474Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask831\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask846\",\"eTag\":\"0x8D9ECFA62D55E4F\",\"lastModified\":\"2022-02-11T01:03:59.3765455Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask846\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask848\",\"eTag\":\"0x8D9ECFA62D5103E\",\"lastModified\":\"2022-02-11T01:03:59.374547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask848\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask849\",\"eTag\":\"0x8D9ECFA62D9F246\",\"lastModified\":\"2022-02-11T01:03:59.4065478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask849\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask844\",\"eTag\":\"0x8D9ECFA62CF43CD\",\"lastModified\":\"2022-02-11T01:03:59.3365453Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask844\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask808\",\"eTag\":\"0x8D9ECFA62D33B63\",\"lastModified\":\"2022-02-11T01:03:59.3625443Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask808\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask847\",\"eTag\":\"0x8D9ECFA62E6EA89\",\"lastModified\":\"2022-02-11T01:03:59.4915465Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask847\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask827\",\"eTag\":\"0x8D9ECFA62D3145D\",\"lastModified\":\"2022-02-11T01:03:59.3615453Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask827\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask845\",\"eTag\":\"0x8D9ECFA62F01266\",\"lastModified\":\"2022-02-11T01:03:59.5515494Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask845\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:28 GMT", + "date" : "Fri, 11 Feb 2022 01:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "a3e565c1-6119-43d6-a1bd-f77b5ab44ff8", + "client-request-id" : "c1b19911-162c-476e-9e34-8545abccc80c", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "f2c53366-4fb0-4bf1-91c6-053f2794866b", + "request-id" : "35e3b0f1-be79-4ed7-b099-2b3a58ee9795", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask900\",\"eTag\":\"0x8D95060CA2932CD\",\"lastModified\":\"2021-07-26T18:11:28.8415949Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask900\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask901\",\"eTag\":\"0x8D95060CA2980FA\",\"lastModified\":\"2021-07-26T18:11:28.8435962Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask901\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask903\",\"eTag\":\"0x8D95060CA29A7F9\",\"lastModified\":\"2021-07-26T18:11:28.8445945Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask903\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask905\",\"eTag\":\"0x8D95060CA2AB979\",\"lastModified\":\"2021-07-26T18:11:28.8515961Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask905\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask906\",\"eTag\":\"0x8D95060CA2AE084\",\"lastModified\":\"2021-07-26T18:11:28.8525956Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask906\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask908\",\"eTag\":\"0x8D95060CA2B559E\",\"lastModified\":\"2021-07-26T18:11:28.8555934Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask908\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask902\",\"eTag\":\"0x8D95060CA2A6B5B\",\"lastModified\":\"2021-07-26T18:11:28.8495963Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask902\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask904\",\"eTag\":\"0x8D95060CA2A9255\",\"lastModified\":\"2021-07-26T18:11:28.8505941Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask904\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask910\",\"eTag\":\"0x8D95060CA2CDC30\",\"lastModified\":\"2021-07-26T18:11:28.865592Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask910\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask909\",\"eTag\":\"0x8D95060CA2CDC30\",\"lastModified\":\"2021-07-26T18:11:28.865592Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask909\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask913\",\"eTag\":\"0x8D95060CA2D2AE0\",\"lastModified\":\"2021-07-26T18:11:28.8676064Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask913\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask914\",\"eTag\":\"0x8D95060CA2D2AE0\",\"lastModified\":\"2021-07-26T18:11:28.8676064Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask914\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask907\",\"eTag\":\"0x8D95060CA2B078C\",\"lastModified\":\"2021-07-26T18:11:28.8535948Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask907\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask915\",\"eTag\":\"0x8D95060CA2D5180\",\"lastModified\":\"2021-07-26T18:11:28.8685952Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask915\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask911\",\"eTag\":\"0x8D95060CA2D0359\",\"lastModified\":\"2021-07-26T18:11:28.8665945Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask911\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask919\",\"eTag\":\"0x8D95060CA2D788E\",\"lastModified\":\"2021-07-26T18:11:28.869595Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask919\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask916\",\"eTag\":\"0x8D95060CA2D5180\",\"lastModified\":\"2021-07-26T18:11:28.8685952Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask916\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask918\",\"eTag\":\"0x8D95060CA2D9F9D\",\"lastModified\":\"2021-07-26T18:11:28.8705949Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask918\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask920\",\"eTag\":\"0x8D95060CA2D9F9D\",\"lastModified\":\"2021-07-26T18:11:28.8705949Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask920\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask912\",\"eTag\":\"0x8D95060CA2D788E\",\"lastModified\":\"2021-07-26T18:11:28.869595Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask912\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask917\",\"eTag\":\"0x8D95060CA2D788E\",\"lastModified\":\"2021-07-26T18:11:28.869595Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask917\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask922\",\"eTag\":\"0x8D95060CA2DC6A0\",\"lastModified\":\"2021-07-26T18:11:28.8715936Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask922\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask921\",\"eTag\":\"0x8D95060CA2DC6A0\",\"lastModified\":\"2021-07-26T18:11:28.8715936Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask921\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask923\",\"eTag\":\"0x8D95060CA2DEDFC\",\"lastModified\":\"2021-07-26T18:11:28.8726012Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask923\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask924\",\"eTag\":\"0x8D95060CA2DEDFC\",\"lastModified\":\"2021-07-26T18:11:28.8726012Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask924\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask926\",\"eTag\":\"0x8D95060CA2E15A2\",\"lastModified\":\"2021-07-26T18:11:28.8736162Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask926\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask928\",\"eTag\":\"0x8D95060CA2E89E6\",\"lastModified\":\"2021-07-26T18:11:28.8765926Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask928\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask925\",\"eTag\":\"0x8D95060CA2E6521\",\"lastModified\":\"2021-07-26T18:11:28.8756513Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask925\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask932\",\"eTag\":\"0x8D95060CA2EB0FD\",\"lastModified\":\"2021-07-26T18:11:28.8775933Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask932\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask927\",\"eTag\":\"0x8D95060CA2E89E6\",\"lastModified\":\"2021-07-26T18:11:28.8765926Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask927\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask930\",\"eTag\":\"0x8D95060CA2ED808\",\"lastModified\":\"2021-07-26T18:11:28.8785928Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask930\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask934\",\"eTag\":\"0x8D95060CA2EFF28\",\"lastModified\":\"2021-07-26T18:11:28.8795944Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask934\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask936\",\"eTag\":\"0x8D95060CA2F2627\",\"lastModified\":\"2021-07-26T18:11:28.8805927Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask936\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask933\",\"eTag\":\"0x8D95060CA2ED808\",\"lastModified\":\"2021-07-26T18:11:28.8785928Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask933\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask931\",\"eTag\":\"0x8D95060CA2ED808\",\"lastModified\":\"2021-07-26T18:11:28.8785928Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask931\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask935\",\"eTag\":\"0x8D95060CA2EFF28\",\"lastModified\":\"2021-07-26T18:11:28.8795944Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask935\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask938\",\"eTag\":\"0x8D95060CA2F2627\",\"lastModified\":\"2021-07-26T18:11:28.8805927Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask938\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask945\",\"eTag\":\"0x8D95060CA3085C9\",\"lastModified\":\"2021-07-26T18:11:28.8895945Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask945\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask942\",\"eTag\":\"0x8D95060CA2F4D48\",\"lastModified\":\"2021-07-26T18:11:28.8815944Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask942\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask948\",\"eTag\":\"0x8D95060CA30ACD2\",\"lastModified\":\"2021-07-26T18:11:28.8905938Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask948\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask929\",\"eTag\":\"0x8D95060CA2EB0FD\",\"lastModified\":\"2021-07-26T18:11:28.8775933Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask929\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask944\",\"eTag\":\"0x8D95060CA305E8E\",\"lastModified\":\"2021-07-26T18:11:28.8885902Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask944\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask940\",\"eTag\":\"0x8D95060CA2F7447\",\"lastModified\":\"2021-07-26T18:11:28.8825927Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask940\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask941\",\"eTag\":\"0x8D95060CA2F7447\",\"lastModified\":\"2021-07-26T18:11:28.8825927Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask941\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask943\",\"eTag\":\"0x8D95060CA3085C9\",\"lastModified\":\"2021-07-26T18:11:28.8895945Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask943\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask949\",\"eTag\":\"0x8D95060CA30ACD2\",\"lastModified\":\"2021-07-26T18:11:28.8905938Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask949\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask947\",\"eTag\":\"0x8D95060CA3085C9\",\"lastModified\":\"2021-07-26T18:11:28.8895945Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask947\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask937\",\"eTag\":\"0x8D95060CA2F2627\",\"lastModified\":\"2021-07-26T18:11:28.8805927Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask937\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask939\",\"eTag\":\"0x8D95060CA2F4D48\",\"lastModified\":\"2021-07-26T18:11:28.8815944Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask939\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask946\",\"eTag\":\"0x8D95060CA3085C9\",\"lastModified\":\"2021-07-26T18:11:28.8895945Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask946\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask850\",\"eTag\":\"0x8D9ECFA62C09DC0\",\"lastModified\":\"2022-02-11T01:03:59.240544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask850\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask851\",\"eTag\":\"0x8D9ECFA62C112E4\",\"lastModified\":\"2022-02-11T01:03:59.2435428Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask851\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask861\",\"eTag\":\"0x8D9ECFA62C2C0A0\",\"lastModified\":\"2022-02-11T01:03:59.254544Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask861\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask853\",\"eTag\":\"0x8D9ECFA62C139F8\",\"lastModified\":\"2022-02-11T01:03:59.2445432Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask853\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask855\",\"eTag\":\"0x8D9ECFA62C35CF4\",\"lastModified\":\"2022-02-11T01:03:59.258546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask855\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask856\",\"eTag\":\"0x8D9ECFA62C3D222\",\"lastModified\":\"2022-02-11T01:03:59.2615458Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask856\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask854\",\"eTag\":\"0x8D9ECFA62C3F92C\",\"lastModified\":\"2022-02-11T01:03:59.2625452Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask854\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask860\",\"eTag\":\"0x8D9ECFA62C5CDE4\",\"lastModified\":\"2022-02-11T01:03:59.2745444Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask860\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask858\",\"eTag\":\"0x8D9ECFA62C61C04\",\"lastModified\":\"2022-02-11T01:03:59.2765444Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask858\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask867\",\"eTag\":\"0x8D9ECFA62CC84D0\",\"lastModified\":\"2022-02-11T01:03:59.3185488Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask867\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask863\",\"eTag\":\"0x8D9ECFA62CC5DA1\",\"lastModified\":\"2022-02-11T01:03:59.3175457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask863\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask852\",\"eTag\":\"0x8D9ECFA62C7F0CA\",\"lastModified\":\"2022-02-11T01:03:59.288545Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask852\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask859\",\"eTag\":\"0x8D9ECFA62C77BA0\",\"lastModified\":\"2022-02-11T01:03:59.2855456Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask859\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask866\",\"eTag\":\"0x8D9ECFA62CCABBC\",\"lastModified\":\"2022-02-11T01:03:59.3195452Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask866\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask864\",\"eTag\":\"0x8D9ECFA62CCF9D5\",\"lastModified\":\"2022-02-11T01:03:59.3215445Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask864\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask865\",\"eTag\":\"0x8D9ECFA62CC84D0\",\"lastModified\":\"2022-02-11T01:03:59.3185488Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask865\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask868\",\"eTag\":\"0x8D9ECFA62D0072E\",\"lastModified\":\"2022-02-11T01:03:59.341547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask868\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask857\",\"eTag\":\"0x8D9ECFA62D02E36\",\"lastModified\":\"2022-02-11T01:03:59.3425462Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask857\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask862\",\"eTag\":\"0x8D9ECFA62CD4804\",\"lastModified\":\"2022-02-11T01:03:59.323546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask862\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask869\",\"eTag\":\"0x8D9ECFA62CC3677\",\"lastModified\":\"2022-02-11T01:03:59.3165431Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask869\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask872\",\"eTag\":\"0x8D9ECFA62D58554\",\"lastModified\":\"2022-02-11T01:03:59.3775444Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask872\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask874\",\"eTag\":\"0x8D9ECFA62D9CB24\",\"lastModified\":\"2022-02-11T01:03:59.405546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask874\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask886\",\"eTag\":\"0x8D9ECFA62DA8E77\",\"lastModified\":\"2022-02-11T01:03:59.4105463Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask886\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask899\",\"eTag\":\"0x8D9ECFA62DA8E77\",\"lastModified\":\"2022-02-11T01:03:59.4105463Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask899\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask898\",\"eTag\":\"0x8D9ECFA62DB03AF\",\"lastModified\":\"2022-02-11T01:03:59.4135471Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask898\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask877\",\"eTag\":\"0x8D9ECFA62D9F246\",\"lastModified\":\"2022-02-11T01:03:59.4065478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask877\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask873\",\"eTag\":\"0x8D9ECFA62DA8E77\",\"lastModified\":\"2022-02-11T01:03:59.4105463Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask873\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask879\",\"eTag\":\"0x8D9ECFA62DAB58A\",\"lastModified\":\"2022-02-11T01:03:59.4115466Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask879\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask885\",\"eTag\":\"0x8D9ECFA62DA676A\",\"lastModified\":\"2022-02-11T01:03:59.4095466Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask885\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask883\",\"eTag\":\"0x8D9ECFA62DB2AC8\",\"lastModified\":\"2022-02-11T01:03:59.414548Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask883\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask891\",\"eTag\":\"0x8D9ECFA62DDC2DF\",\"lastModified\":\"2022-02-11T01:03:59.4315487Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask891\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask880\",\"eTag\":\"0x8D9ECFA62DDC2DF\",\"lastModified\":\"2022-02-11T01:03:59.4315487Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask880\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask882\",\"eTag\":\"0x8D9ECFA62DD9BC5\",\"lastModified\":\"2022-02-11T01:03:59.4305477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask882\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask876\",\"eTag\":\"0x8D9ECFA62DB03AF\",\"lastModified\":\"2022-02-11T01:03:59.4135471Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask876\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask871\",\"eTag\":\"0x8D9ECFA62DB2AC8\",\"lastModified\":\"2022-02-11T01:03:59.414548Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask871\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask889\",\"eTag\":\"0x8D9ECFA62E081D3\",\"lastModified\":\"2022-02-11T01:03:59.4495443Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask889\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask887\",\"eTag\":\"0x8D9ECFA62E0A906\",\"lastModified\":\"2022-02-11T01:03:59.4505478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask887\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask892\",\"eTag\":\"0x8D9ECFA62E0A906\",\"lastModified\":\"2022-02-11T01:03:59.4505478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask892\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask884\",\"eTag\":\"0x8D9ECFA62E0D003\",\"lastModified\":\"2022-02-11T01:03:59.4515459Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask884\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask881\",\"eTag\":\"0x8D9ECFA62E0A906\",\"lastModified\":\"2022-02-11T01:03:59.4505478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask881\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask890\",\"eTag\":\"0x8D9ECFA62E19360\",\"lastModified\":\"2022-02-11T01:03:59.4565472Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask890\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask875\",\"eTag\":\"0x8D9ECFA62E16C4F\",\"lastModified\":\"2022-02-11T01:03:59.4555471Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask875\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask888\",\"eTag\":\"0x8D9ECFA62E1BA79\",\"lastModified\":\"2022-02-11T01:03:59.4575481Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask888\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask870\",\"eTag\":\"0x8D9ECFA62D07C5C\",\"lastModified\":\"2022-02-11T01:03:59.3445468Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask870\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask896\",\"eTag\":\"0x8D9ECFA62E64E54\",\"lastModified\":\"2022-02-11T01:03:59.4875476Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask896\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask895\",\"eTag\":\"0x8D9ECFA62E6C37E\",\"lastModified\":\"2022-02-11T01:03:59.490547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask895\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask894\",\"eTag\":\"0x8D9ECFA62E69C6E\",\"lastModified\":\"2022-02-11T01:03:59.489547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask894\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask878\",\"eTag\":\"0x8D9ECFA62E7ADF3\",\"lastModified\":\"2022-02-11T01:03:59.4965491Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask878\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask893\",\"eTag\":\"0x8D9ECFA62E738C3\",\"lastModified\":\"2022-02-11T01:03:59.4935491Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask893\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask897\",\"eTag\":\"0x8D9ECFA62F1C01F\",\"lastModified\":\"2022-02-11T01:03:59.5625503Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask897\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:28 GMT", + "date" : "Fri, 11 Feb 2022 01:03:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "6072a30d-54fb-4612-aa4e-934737db0a68", + "client-request-id" : "1f36e571-b16a-4ede-9fec-aed0af64efbb", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "f2258ef2-2eec-4c7d-bbdb-f0cc3c1974ca", + "request-id" : "eb582ed7-f842-4be4-8c4b-761c00f3de56", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask952\",\"eTag\":\"0x8D95060CA30D3DA\",\"lastModified\":\"2021-07-26T18:11:28.891593Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask952\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask959\",\"eTag\":\"0x8D95060CA3121F3\",\"lastModified\":\"2021-07-26T18:11:28.8935923Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask959\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask955\",\"eTag\":\"0x8D95060CA30FAD6\",\"lastModified\":\"2021-07-26T18:11:28.892591Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask955\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask957\",\"eTag\":\"0x8D95060CA30D3DA\",\"lastModified\":\"2021-07-26T18:11:28.891593Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask957\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask962\",\"eTag\":\"0x8D95060CA314918\",\"lastModified\":\"2021-07-26T18:11:28.8945944Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask962\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask958\",\"eTag\":\"0x8D95060CA3121F3\",\"lastModified\":\"2021-07-26T18:11:28.8935923Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask958\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask953\",\"eTag\":\"0x8D95060CA30D3DA\",\"lastModified\":\"2021-07-26T18:11:28.891593Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask953\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask956\",\"eTag\":\"0x8D95060CA30FAD6\",\"lastModified\":\"2021-07-26T18:11:28.892591Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask956\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask961\",\"eTag\":\"0x8D95060CA314918\",\"lastModified\":\"2021-07-26T18:11:28.8945944Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask961\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask966\",\"eTag\":\"0x8D95060CA31BE51\",\"lastModified\":\"2021-07-26T18:11:28.8975953Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask966\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask954\",\"eTag\":\"0x8D95060CA3121F3\",\"lastModified\":\"2021-07-26T18:11:28.8935923Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask954\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask951\",\"eTag\":\"0x8D95060CA314918\",\"lastModified\":\"2021-07-26T18:11:28.8945944Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask951\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask963\",\"eTag\":\"0x8D95060CA319EF0\",\"lastModified\":\"2021-07-26T18:11:28.896792Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask963\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask964\",\"eTag\":\"0x8D95060CA31BE51\",\"lastModified\":\"2021-07-26T18:11:28.8975953Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask964\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask965\",\"eTag\":\"0x8D95060CA319EF0\",\"lastModified\":\"2021-07-26T18:11:28.896792Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask965\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask967\",\"eTag\":\"0x8D95060CA31E601\",\"lastModified\":\"2021-07-26T18:11:28.8986113Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask967\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask950\",\"eTag\":\"0x8D95060CA31E601\",\"lastModified\":\"2021-07-26T18:11:28.8986113Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask950\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask968\",\"eTag\":\"0x8D95060CA323362\",\"lastModified\":\"2021-07-26T18:11:28.9005922Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask968\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask971\",\"eTag\":\"0x8D95060CA32A8B4\",\"lastModified\":\"2021-07-26T18:11:28.9035956Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask971\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask978\",\"eTag\":\"0x8D95060CA331DCE\",\"lastModified\":\"2021-07-26T18:11:28.9065934Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask978\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask970\",\"eTag\":\"0x8D95060CA32A8B4\",\"lastModified\":\"2021-07-26T18:11:28.9035956Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask970\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask973\",\"eTag\":\"0x8D95060CA32F6B7\",\"lastModified\":\"2021-07-26T18:11:28.9055927Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask973\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask969\",\"eTag\":\"0x8D95060CA325A78\",\"lastModified\":\"2021-07-26T18:11:28.9015928Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask969\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask974\",\"eTag\":\"0x8D95060CA32F6B7\",\"lastModified\":\"2021-07-26T18:11:28.9055927Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask974\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask960\",\"eTag\":\"0x8D95060CA314918\",\"lastModified\":\"2021-07-26T18:11:28.8945944Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask960\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask977\",\"eTag\":\"0x8D95060CA32F6B7\",\"lastModified\":\"2021-07-26T18:11:28.9055927Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask977\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask983\",\"eTag\":\"0x8D95060CA34CB7D\",\"lastModified\":\"2021-07-26T18:11:28.9175933Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask983\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask984\",\"eTag\":\"0x8D95060CA3344D4\",\"lastModified\":\"2021-07-26T18:11:28.9075924Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask984\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask982\",\"eTag\":\"0x8D95060CA34F271\",\"lastModified\":\"2021-07-26T18:11:28.9185905Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask982\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask985\",\"eTag\":\"0x8D95060CA354086\",\"lastModified\":\"2021-07-26T18:11:28.9205894Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask985\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask979\",\"eTag\":\"0x8D95060CA336BED\",\"lastModified\":\"2021-07-26T18:11:28.9085933Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask979\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask975\",\"eTag\":\"0x8D95060CA32CFB0\",\"lastModified\":\"2021-07-26T18:11:28.9045936Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask975\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask988\",\"eTag\":\"0x8D95060CA358ECA\",\"lastModified\":\"2021-07-26T18:11:28.922593Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask988\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask981\",\"eTag\":\"0x8D95060CA354086\",\"lastModified\":\"2021-07-26T18:11:28.9205894Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask981\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask980\",\"eTag\":\"0x8D95060CA34CB7D\",\"lastModified\":\"2021-07-26T18:11:28.9175933Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask980\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask991\",\"eTag\":\"0x8D95060CA358ECA\",\"lastModified\":\"2021-07-26T18:11:28.922593Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask991\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask990\",\"eTag\":\"0x8D95060CA3567BC\",\"lastModified\":\"2021-07-26T18:11:28.9215932Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask990\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask986\",\"eTag\":\"0x8D95060CA3567BC\",\"lastModified\":\"2021-07-26T18:11:28.9215932Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask986\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask998\",\"eTag\":\"0x8D95060CA35DCE6\",\"lastModified\":\"2021-07-26T18:11:28.9245926Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask998\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask992\",\"eTag\":\"0x8D95060CA35B6CF\",\"lastModified\":\"2021-07-26T18:11:28.9236175Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask992\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask995\",\"eTag\":\"0x8D95060CA35DCE6\",\"lastModified\":\"2021-07-26T18:11:28.9245926Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask995\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask987\",\"eTag\":\"0x8D95060CA354086\",\"lastModified\":\"2021-07-26T18:11:28.9205894Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask987\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask996\",\"eTag\":\"0x8D95060CA35DCE6\",\"lastModified\":\"2021-07-26T18:11:28.9245926Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask996\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask993\",\"eTag\":\"0x8D95060CA35B6CF\",\"lastModified\":\"2021-07-26T18:11:28.9236175Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask993\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask976\",\"eTag\":\"0x8D95060CA32F6B7\",\"lastModified\":\"2021-07-26T18:11:28.9055927Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask976\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask999\",\"eTag\":\"0x8D95060CA3604A7\",\"lastModified\":\"2021-07-26T18:11:28.9256103Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask999\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask997\",\"eTag\":\"0x8D95060CA35DCE6\",\"lastModified\":\"2021-07-26T18:11:28.9245926Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask997\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask989\",\"eTag\":\"0x8D95060CA3567BC\",\"lastModified\":\"2021-07-26T18:11:28.9215932Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask989\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask972\",\"eTag\":\"0x8D95060CA32CFB0\",\"lastModified\":\"2021-07-26T18:11:28.9045936Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask972\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask994\",\"eTag\":\"0x8D95060CA362B18\",\"lastModified\":\"2021-07-26T18:11:28.9265944Z\",\"location\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask994\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask900\",\"eTag\":\"0x8D9ECFA62C30ED1\",\"lastModified\":\"2022-02-11T01:03:59.2565457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask900\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask901\",\"eTag\":\"0x8D9ECFA62C3F92C\",\"lastModified\":\"2022-02-11T01:03:59.2625452Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask901\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask918\",\"eTag\":\"0x8D9ECFA62C7F0CA\",\"lastModified\":\"2022-02-11T01:03:59.288545Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask918\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask905\",\"eTag\":\"0x8D9ECFA62CC5DA1\",\"lastModified\":\"2022-02-11T01:03:59.3175457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask905\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask906\",\"eTag\":\"0x8D9ECFA62CCD2D1\",\"lastModified\":\"2022-02-11T01:03:59.3205457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask906\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask916\",\"eTag\":\"0x8D9ECFA62CD20EB\",\"lastModified\":\"2022-02-11T01:03:59.3225451Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask916\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask903\",\"eTag\":\"0x8D9ECFA62C75489\",\"lastModified\":\"2022-02-11T01:03:59.2845449Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask903\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask910\",\"eTag\":\"0x8D9ECFA62CCABBC\",\"lastModified\":\"2022-02-11T01:03:59.3195452Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask910\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask911\",\"eTag\":\"0x8D9ECFA62CD4804\",\"lastModified\":\"2022-02-11T01:03:59.323546Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask911\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask909\",\"eTag\":\"0x8D9ECFA62CCF9D5\",\"lastModified\":\"2022-02-11T01:03:59.3215445Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask909\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask912\",\"eTag\":\"0x8D9ECFA62D0072E\",\"lastModified\":\"2022-02-11T01:03:59.341547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask912\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask913\",\"eTag\":\"0x8D9ECFA62CCF9D5\",\"lastModified\":\"2022-02-11T01:03:59.3215445Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask913\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask919\",\"eTag\":\"0x8D9ECFA62CCD2D1\",\"lastModified\":\"2022-02-11T01:03:59.3205457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask919\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask902\",\"eTag\":\"0x8D9ECFA62CD20EB\",\"lastModified\":\"2022-02-11T01:03:59.3225451Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask902\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask907\",\"eTag\":\"0x8D9ECFA62D02E36\",\"lastModified\":\"2022-02-11T01:03:59.3425462Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask907\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask917\",\"eTag\":\"0x8D9ECFA62CF1C9D\",\"lastModified\":\"2022-02-11T01:03:59.3355421Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask917\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask915\",\"eTag\":\"0x8D9ECFA62D0072E\",\"lastModified\":\"2022-02-11T01:03:59.341547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask915\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask908\",\"eTag\":\"0x8D9ECFA62D05541\",\"lastModified\":\"2022-02-11T01:03:59.3435457Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask908\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask924\",\"eTag\":\"0x8D9ECFA62D5AC72\",\"lastModified\":\"2022-02-11T01:03:59.3785458Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask924\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask923\",\"eTag\":\"0x8D9ECFA62DADCA3\",\"lastModified\":\"2022-02-11T01:03:59.4125475Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask923\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask932\",\"eTag\":\"0x8D9ECFA62DAB58A\",\"lastModified\":\"2022-02-11T01:03:59.4115466Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask932\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask925\",\"eTag\":\"0x8D9ECFA62DDC2DF\",\"lastModified\":\"2022-02-11T01:03:59.4315487Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask925\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask922\",\"eTag\":\"0x8D9ECFA62DD4D90\",\"lastModified\":\"2022-02-11T01:03:59.4285456Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask922\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask929\",\"eTag\":\"0x8D9ECFA62DDC2DF\",\"lastModified\":\"2022-02-11T01:03:59.4315487Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask929\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask904\",\"eTag\":\"0x8D9ECFA62DE10FE\",\"lastModified\":\"2022-02-11T01:03:59.4335486Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask904\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask927\",\"eTag\":\"0x8D9ECFA62DADCA3\",\"lastModified\":\"2022-02-11T01:03:59.4125475Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask927\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask949\",\"eTag\":\"0x8D9ECFA62DD9BC5\",\"lastModified\":\"2022-02-11T01:03:59.4305477Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask949\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask914\",\"eTag\":\"0x8D9ECFA62D07C5C\",\"lastModified\":\"2022-02-11T01:03:59.3445468Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask914\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask930\",\"eTag\":\"0x8D9ECFA62DDE9E6\",\"lastModified\":\"2022-02-11T01:03:59.4325478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask930\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask936\",\"eTag\":\"0x8D9ECFA62E19360\",\"lastModified\":\"2022-02-11T01:03:59.4565472Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask936\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask931\",\"eTag\":\"0x8D9ECFA62E16C4F\",\"lastModified\":\"2022-02-11T01:03:59.4555471Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask931\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask926\",\"eTag\":\"0x8D9ECFA62E16C4F\",\"lastModified\":\"2022-02-11T01:03:59.4555471Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask926\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask921\",\"eTag\":\"0x8D9ECFA62E1BA79\",\"lastModified\":\"2022-02-11T01:03:59.4575481Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask921\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask934\",\"eTag\":\"0x8D9ECFA62E16C4F\",\"lastModified\":\"2022-02-11T01:03:59.4555471Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask934\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask928\",\"eTag\":\"0x8D9ECFA62E1E186\",\"lastModified\":\"2022-02-11T01:03:59.4585478Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask928\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask939\",\"eTag\":\"0x8D9ECFA62E256A6\",\"lastModified\":\"2022-02-11T01:03:59.4615462Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask939\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask935\",\"eTag\":\"0x8D9ECFA62E22F9A\",\"lastModified\":\"2022-02-11T01:03:59.4605466Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask935\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask947\",\"eTag\":\"0x8D9ECFA62E2CBE2\",\"lastModified\":\"2022-02-11T01:03:59.4645474Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask947\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask942\",\"eTag\":\"0x8D9ECFA62E2CBE2\",\"lastModified\":\"2022-02-11T01:03:59.4645474Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask942\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask944\",\"eTag\":\"0x8D9ECFA62E6C37E\",\"lastModified\":\"2022-02-11T01:03:59.490547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask944\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask940\",\"eTag\":\"0x8D9ECFA62E6EA89\",\"lastModified\":\"2022-02-11T01:03:59.4915465Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask940\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask937\",\"eTag\":\"0x8D9ECFA62E738C3\",\"lastModified\":\"2022-02-11T01:03:59.4935491Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask937\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask941\",\"eTag\":\"0x8D9ECFA62E711AE\",\"lastModified\":\"2022-02-11T01:03:59.4925486Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask941\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask938\",\"eTag\":\"0x8D9ECFA62E69C6E\",\"lastModified\":\"2022-02-11T01:03:59.489547Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask938\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask943\",\"eTag\":\"0x8D9ECFA62E6EA89\",\"lastModified\":\"2022-02-11T01:03:59.4915465Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask943\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask945\",\"eTag\":\"0x8D9ECFA62E738C3\",\"lastModified\":\"2022-02-11T01:03:59.4935491Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask945\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask946\",\"eTag\":\"0x8D9ECFA62E6EA89\",\"lastModified\":\"2022-02-11T01:03:59.4915465Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask946\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask933\",\"eTag\":\"0x8D9ECFA62E7ADF3\",\"lastModified\":\"2022-02-11T01:03:59.4965491Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask933\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask920\",\"eTag\":\"0x8D9ECFA62EFEB44\",\"lastModified\":\"2022-02-11T01:03:59.5505476Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask920\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask948\",\"eTag\":\"0x8D9ECFA62F1C01F\",\"lastModified\":\"2022-02-11T01:03:59.5625503Z\",\"location\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask948\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/taskcounts?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/taskcounts?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:59 GMT", + "date" : "Fri, 11 Feb 2022 01:04:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "a6db90c5-57ee-4189-ac8d-0efdce141e87", + "client-request-id" : "b816ded4-b74d-4b02-897e-164263871412", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "cef15342-e9ea-4b73-9928-8525050829d2", + "request-id" : "9b5b06b7-fc8a-4708-b558-206f2d56957e", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#taskcountsresult/@Element\",\"taskCounts\":{\r\n \"active\":991,\"running\":0,\"completed\":9,\"succeeded\":0,\"failed\":9\r\n },\"taskSlotCounts\":{\r\n \"active\":991,\"running\":0,\"completed\":9,\"succeeded\":0,\"failed\":9\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#taskcountsresult/@Element\",\"taskCounts\":{\r\n \"active\":990,\"running\":0,\"completed\":10,\"succeeded\":0,\"failed\":10\r\n },\"taskSlotCounts\":{\r\n \"active\":990,\"running\":0,\"completed\":10,\"succeeded\":0,\"failed\":10\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testGetTaskCounts?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:11:59 GMT", + "date" : "Fri, 11 Feb 2022 01:04:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "36ce5b32-c753-491b-8764-ccde778de2dc", + "client-request-id" : "7651fc85-44e5-4a8c-8bde-28502647bd5d", "retry-after" : "0", - "request-id" : "09a45734-67d6-446e-b8da-125b68f67baf", + "request-id" : "7ba3fea4-a7cd-45c0-8970-7c8af80a5694", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testJobUser.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testJobUser.json index 1d093dffd875..9b347ddb3836 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testJobUser.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testJobUser.json @@ -1,86 +1,86 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:02 GMT", + "date" : "Fri, 11 Feb 2022 01:03:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "b2d5c715-90ff-4b57-92e2-6ae230df6e71", + "request-id" : "a9da840c-2f44-4027-9dce-8c02a76a073a", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:02 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:15 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "efc182aa-f716-46a3-927e-5f7f75b4ab37", - "etag" : "0x8D950609667A840", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "client-request-id" : "a3317852-f2d4-488d-9375-a9c21578242b", + "etag" : "0x8D9ECFA48A1DAA4", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testJobUser/tasks?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testJobUser/tasks?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:02 GMT", + "date" : "Fri, 11 Feb 2022 01:03:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask", "retry-after" : "0", - "request-id" : "a2e462f6-280e-441d-aa37-449254857652", + "request-id" : "9edb3c00-e95d-487f-ac1c-59ef0238571b", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:02 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:15 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "7202d12b-2c6e-449b-afaa-1df5ed7d98c4", - "etag" : "0x8D95060966FD8E0", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask", + "client-request-id" : "b36a9d05-c85f-4cbe-989d-142fe747a8ca", + "etag" : "0x8D9ECFA48B4FC25", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:02 GMT", + "date" : "Fri, 11 Feb 2022 01:03:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "d921a2ee-a669-4d3f-9a39-5985845260f7", + "request-id" : "03e1b5b3-0e23-44dd-8ed3-1d113d1db7ba", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:02 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:15 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9dd40d75-efed-4663-8bb7-f3030f7e2cf4", + "client-request-id" : "14fc63cb-bb54-4da1-b7eb-ea70ff95f8ce", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D95060966FD8E0", + "etag" : "0x8D9ECFA48B4FC25", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask\",\"eTag\":\"0x8D95060966FD8E0\",\"creationTime\":\"2021-07-26T18:10:02.0630752Z\",\"lastModified\":\"2021-07-26T18:10:02.0630752Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-26T18:10:02.0630752Z\",\"commandLine\":\"cmd /c echo hello\",\"applicationPackageReferences\":[\r\n {\r\n \"applicationId\":\"msmpi\"\r\n }\r\n ],\"userIdentity\":{\r\n \"username\":\"test-user\"\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask\",\"eTag\":\"0x8D9ECFA48B4FC25\",\"creationTime\":\"2022-02-11T01:03:15.5435557Z\",\"lastModified\":\"2022-02-11T01:03:15.5435557Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-02-11T01:03:15.5435557Z\",\"commandLine\":\"cmd /c echo hello\",\"applicationPackageReferences\":[\r\n {\r\n \"applicationId\":\"msmpi\"\r\n }\r\n ],\"userIdentity\":{\r\n \"username\":\"test-user\"\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testJobUser?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testJobUser?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:02 GMT", + "date" : "Fri, 11 Feb 2022 01:03:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "3e690d79-e904-42f4-aafd-ad73168a67bc", + "client-request-id" : "b528e321-202d-4b3a-98f4-587d83fb061c", "retry-after" : "0", - "request-id" : "afd5f48a-28d5-4581-8eaa-ac7ed6c87631", + "request-id" : "c31d1ddb-65d5-4903-9f86-9ff1668554ea", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testOutputFiles.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testOutputFiles.json index f00441922406..55ce43a1fb5b 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testOutputFiles.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testOutputFiles.json @@ -1,211 +1,211 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:03 GMT", + "date" : "Fri, 11 Feb 2022 01:03:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "4bfaceaf-eb2b-4c49-b965-659f8e244926", + "request-id" : "db07c565-6d28-48a1-bf93-a53262e889d7", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:03 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:16 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "13202584-52c5-4b2d-9bd2-7eec42668047", - "etag" : "0x8D95060971BDECE", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/job-1", + "client-request-id" : "25d230ed-2c18-467d-9dbd-ee0fbcab6d56", + "etag" : "0x8D9ECFA49673A07", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:03 GMT", + "date" : "Fri, 11 Feb 2022 01:03:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask", "retry-after" : "0", - "request-id" : "6799a0df-b7a9-441a-aee2-9c1e954aafe3", + "request-id" : "e848acc2-11f1-4d41-88a0-fbd3deeecd1a", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:03 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "4c156d12-02ca-4db3-8941-dbc1fcec8be4", - "etag" : "0x8D950609735A593", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask", + "client-request-id" : "5b1257c5-99a5-44e8-98fe-0ffae9f4f81c", + "etag" : "0x8D9ECFA49A9C877", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:03 GMT", + "date" : "Fri, 11 Feb 2022 01:03:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "b7792bcd-b8b0-4287-b599-3462caf32639", + "client-request-id" : "245129cc-86f5-40f1-96a6-465349374d15", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "a838d18c-2092-4765-b104-7467c0137008", + "request-id" : "428145fc-ea9f-4a8f-8d6c-cc880324debe", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"active\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"active\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:13 GMT", + "date" : "Fri, 11 Feb 2022 01:03:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "5337abe1-9c1d-41f0-a53a-be6f8b706069", + "client-request-id" : "71d53b20-9f11-4cb4-bd27-7be95a3f817b", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "c273bf3e-cc8c-48b2-beed-4fe2955e34a6", + "request-id" : "40ec4534-e321-46a2-8aa4-cdd6719be90b", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:13 GMT", + "date" : "Fri, 11 Feb 2022 01:03:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "aa52000c-867c-48ee-9024-ccfdf49cd825", + "request-id" : "4e6cbb0f-5da3-4e62-b694-82ac00326cc3", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:03 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "3c2162b4-ef7c-4ac9-bc64-8f8945a960bf", + "client-request-id" : "6e6eb532-0574-46a2-a21a-77dbc904007c", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950609735A593", + "etag" : "0x8D9ECFA49A9C877", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask\",\"eTag\":\"0x8D950609735A593\",\"creationTime\":\"2021-07-26T18:10:03.3593747Z\",\"lastModified\":\"2021-07-26T18:10:03.3593747Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-26T18:10:04.954322Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2021-07-26T18:10:04.309689Z\",\"commandLine\":\"bash -c \\\"echo hello\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"../stdout.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://shpasterbatchteststorage.blob.core.windows.net/output?sig=Kw0FsCe45QxRaSXb1fptxainY5BpgnTBiyQgBX5wFrQ%3D&se=2021-07-27T18%3A10%3A03Z&sv=2018-03-28&sp=rcwdl&sr=c\",\"path\":\"taskLogs/output.txt\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskCompletion\"\r\n }\r\n },{\r\n \"filePattern\":\"../stderr.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://shpasterbatchteststorage.blob.core.windows.net/output?sig=Kw0FsCe45QxRaSXb1fptxainY5BpgnTBiyQgBX5wFrQ%3D&se=2021-07-27T18%3A10%3A03Z&sv=2018-03-28&sp=rcwdl&sr=c\",\"path\":\"taskLogs/err.txt\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskFailure\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:10:04.362694Z\",\"endTime\":\"2021-07-26T18:10:04.954322Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d\",\"nodeUrl\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d\",\"taskRootDirectory\":\"workitems/BatchUser-testOutputFiles/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d/files/workitems/BatchUser-testOutputFiles/job-1/mytask\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask\",\"eTag\":\"0x8D9ECFA49A9C877\",\"creationTime\":\"2022-02-11T01:03:17.1478647Z\",\"lastModified\":\"2022-02-11T01:03:17.1478647Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-02-11T01:03:17.938176Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2022-02-11T01:03:17.399406Z\",\"commandLine\":\"bash -c \\\"echo hello\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"../stdout.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://javasdkstore.blob.core.windows.net/output?sig=rgUYyfzGWjPQbZU5S9KVm6iYR3waLH698UXItQHI0eE%3D&se=2022-02-12T01%3A03%3A17Z&sv=2018-03-28&sp=rcwdl&sr=c\",\"path\":\"taskLogs/output.txt\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskCompletion\"\r\n }\r\n },{\r\n \"filePattern\":\"../stderr.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://javasdkstore.blob.core.windows.net/output?sig=rgUYyfzGWjPQbZU5S9KVm6iYR3waLH698UXItQHI0eE%3D&se=2022-02-12T01%3A03%3A17Z&sv=2018-03-28&sp=rcwdl&sr=c\",\"path\":\"taskLogs/err.txt\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskFailure\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T01:03:17.455829Z\",\"endTime\":\"2022-02-11T01:03:17.938176Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d\",\"nodeUrl\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d\",\"taskRootDirectory\":\"workitems/BatchUser-testOutputFiles/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d/files/workitems/BatchUser-testOutputFiles/job-1/mytask\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:13 GMT", + "date" : "Fri, 11 Feb 2022 01:03:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1", + "dataserviceid" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1", "retry-after" : "0", - "request-id" : "6c5cc1d9-983b-4b5f-81e0-05117174ee08", + "request-id" : "4a7db8b4-35d7-4a62-94e5-c2965fbe1ede", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:13 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:27 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d97f2dfc-4211-419b-adaf-2d9d4eea5be5", - "etag" : "0x8D950609D650C3B", - "location" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1", + "client-request-id" : "76a491a1-0625-4c0f-9332-8955a6dd352c", + "etag" : "0x8D9ECFA501E56E4", + "location" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:13 GMT", + "date" : "Fri, 11 Feb 2022 01:03:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "974c0a02-d10c-4d81-855d-9d7257beb6cf", + "client-request-id" : "b70a6e80-03ab-4035-92fb-4d45bcf78e8f", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "3afefd97-9922-4e00-87f8-47e8990d03d4", + "request-id" : "231bb825-edd5-4912-b69d-073dd1b4371c", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n },{\r\n \"id\":\"mytask1\",\"state\":\"active\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n },{\r\n \"id\":\"mytask1\",\"state\":\"active\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:23 GMT", + "date" : "Fri, 11 Feb 2022 01:03:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "1e06404d-7a84-41af-a551-7906657d801d", + "client-request-id" : "2e03b898-9576-491e-a673-fec75f867ea3", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "b7fc4c7d-6df7-48a3-9d4c-20b3be867fa1", + "request-id" : "dce45b33-7f3a-4d6f-917c-bd9d22bd65bf", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n },{\r\n \"id\":\"mytask1\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n },{\r\n \"id\":\"mytask1\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:23 GMT", + "date" : "Fri, 11 Feb 2022 01:03:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "728e42c2-eeaf-4d90-935f-65e00e21b22d", + "request-id" : "eec7f599-8131-44e8-aae8-545bfcc6d0ed", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Mon, 26 Jul 2021 18:10:13 GMT", + "last-modified" : "Fri, 11 Feb 2022 01:03:27 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e682ec6b-07a6-4d72-82c7-0aaae502e87e", + "client-request-id" : "f3cab83f-bdf2-4341-8765-bade47644afc", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D950609D650C3B", + "etag" : "0x8D9ECFA501E56E4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask1\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1\",\"eTag\":\"0x8D950609D650C3B\",\"creationTime\":\"2021-07-26T18:10:13.7363515Z\",\"lastModified\":\"2021-07-26T18:10:13.7363515Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-26T18:10:16.116648Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2021-07-26T18:10:15.520252Z\",\"commandLine\":\"bash -c \\\"bad command\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"../stdout.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://shpasterbatchteststorage.blob.core.windows.net/output?sig=Kw0FsCe45QxRaSXb1fptxainY5BpgnTBiyQgBX5wFrQ%3D&se=2021-07-27T18%3A10%3A03Z&sv=2018-03-28&sp=rcwdl&sr=c\",\"path\":\"taskLogs/output.txt\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskCompletion\"\r\n }\r\n },{\r\n \"filePattern\":\"../stderr.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://shpasterbatchteststorage.blob.core.windows.net/output?sig=Kw0FsCe45QxRaSXb1fptxainY5BpgnTBiyQgBX5wFrQ%3D&se=2021-07-27T18%3A10%3A03Z&sv=2018-03-28&sp=rcwdl&sr=c\",\"path\":\"taskLogs/err.txt\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskFailure\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"startTime\":\"2021-07-26T18:10:15.57056Z\",\"endTime\":\"2021-07-26T18:10:16.116648Z\",\"exitCode\":127,\"failureInfo\":{\r\n \"category\":\"UserError\",\"code\":\"FailureExitCode\",\"message\":\"The task exited with an exit code representing a failure\",\"details\":[\r\n {\r\n \"name\":\"Message\",\"value\":\"The task process exited with an unexpected exit code\"\r\n },{\r\n \"name\":\"AdditionalErrorCode\",\"value\":\"FailureExitCode\"\r\n }\r\n ]\r\n },\"result\":\"failure\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d\",\"nodeUrl\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d\",\"taskRootDirectory\":\"workitems/BatchUser-testOutputFiles/job-1/mytask1\",\"taskRootDirectoryUrl\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_570c232ec8c62fe1e5208cbc5ec910777a8e640883e909edd96ebd42a3edcbb5_d/files/workitems/BatchUser-testOutputFiles/job-1/mytask1\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask1\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1\",\"eTag\":\"0x8D9ECFA501E56E4\",\"creationTime\":\"2022-02-11T01:03:27.978058Z\",\"lastModified\":\"2022-02-11T01:03:27.978058Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-02-11T01:03:28.975579Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2022-02-11T01:03:28.434304Z\",\"commandLine\":\"bash -c \\\"bad command\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"../stdout.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://javasdkstore.blob.core.windows.net/output?sig=rgUYyfzGWjPQbZU5S9KVm6iYR3waLH698UXItQHI0eE%3D&se=2022-02-12T01%3A03%3A17Z&sv=2018-03-28&sp=rcwdl&sr=c\",\"path\":\"taskLogs/output.txt\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskCompletion\"\r\n }\r\n },{\r\n \"filePattern\":\"../stderr.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"https://javasdkstore.blob.core.windows.net/output?sig=rgUYyfzGWjPQbZU5S9KVm6iYR3waLH698UXItQHI0eE%3D&se=2022-02-12T01%3A03%3A17Z&sv=2018-03-28&sp=rcwdl&sr=c\",\"path\":\"taskLogs/err.txt\"\r\n }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskFailure\"\r\n }\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n },\"requiredSlots\":1,\"executionInfo\":{\r\n \"startTime\":\"2022-02-11T01:03:28.47546Z\",\"endTime\":\"2022-02-11T01:03:28.975579Z\",\"exitCode\":127,\"failureInfo\":{\r\n \"category\":\"UserError\",\"code\":\"FailureExitCode\",\"message\":\"The task exited with an exit code representing a failure\",\"details\":[\r\n {\r\n \"name\":\"Message\",\"value\":\"The task process exited with an unexpected exit code\"\r\n },{\r\n \"name\":\"AdditionalErrorCode\",\"value\":\"FailureExitCode\"\r\n }\r\n ]\r\n },\"result\":\"failure\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d\",\"nodeUrl\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d\",\"taskRootDirectory\":\"workitems/BatchUser-testOutputFiles/job-1/mytask1\",\"taskRootDirectoryUrl\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_ca0689d44c70a980912db95f05b5b6c796eb7cb6b14765fa7e5c4e376702bd16_d/files/workitems/BatchUser-testOutputFiles/job-1/mytask1\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles?api-version=2021-06-01.14.0", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/jobs/BatchUser-testOutputFiles?api-version=2022-01-01.15.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:f152d1cc9e30dca4e1c450c8d8e8d14d2fb7e2be9be344f7bcc6cef88fc4b4e3 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Mon, 26 Jul 2021 18:10:23 GMT", + "date" : "Fri, 11 Feb 2022 01:03:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "baf7719b-e421-4612-80c7-e1e3b8f3a838", + "client-request-id" : "5e4c5841-8669-4715-8033-6bcaacfe3f58", "retry-after" : "0", - "request-id" : "1e4c4ba5-c7c7-4fdc-b4ba-56fef296969d", + "request-id" : "934d8127-70b7-4501-955d-6b41aef497fd", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testPoolOData.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testPoolOData.json index 1cf9e5fdf19c..513657492391 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testPoolOData.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/testPoolOData.json @@ -1,64 +1,64 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool?api-version=2021-06-01.14.0&%24expand=stats", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool?api-version=2022-01-01.15.0&%24expand=stats", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:05 GMT", + "date" : "Fri, 11 Feb 2022 01:17:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "75456a5f-31f1-412c-9d0d-5e886d09d470", + "request-id" : "6555a476-f19b-404a-b6bf-3434addb88b4", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 27 Jul 2021 13:28:25 GMT", + "last-modified" : "Thu, 27 Jan 2022 02:01:44 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f13d6646-bd01-40d1-a651-d8fae8c23a6c", + "client-request-id" : "d7a69d56-5558-454a-88ff-fba72b0127cd", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8D9510269B8A29D", + "etag" : "0x8D9E138F8213617", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools/@Element\",\"stats@odata.navigationLinkUrl\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/stats\",\"stats\":{\r\n \"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool/stats\",\"usageStats\":{\r\n \"startTime\":\"2021-07-27T13:28:25.5128221Z\",\"lastUpdateTime\":\"2021-07-27T13:30:00Z\",\"dedicatedCoreTime\":\"PT30M16.663S\"\r\n },\"resourceStats\":{\r\n \"startTime\":\"2021-07-27T13:28:25.5128221Z\",\"diskReadIOps\":\"1060\",\"diskWriteIOps\":\"4904\",\"lastUpdateTime\":\"2021-07-27T13:30:00Z\",\"avgCPUPercentage\":0.0042593476297983247,\"avgMemoryGiB\":0.48971968296707752,\"peakMemoryGiB\":0.4901885986328125,\"avgDiskGiB\":0.050758361801739323,\"peakDiskGiB\":0.05075836181640625,\"diskReadGiB\":0.0931243896484375,\"diskWriteGiB\":1.63519287109375,\"networkReadGiB\":0.0090252012014389038,\"networkWriteGiB\":0.0076288003474473953\r\n }\r\n },\"id\":\"BatchUser-testpool\",\"url\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools/BatchUser-testpool\",\"eTag\":\"0x8D9510269B8A29D\",\"lastModified\":\"2021-07-27T13:28:25.5128221Z\",\"creationTime\":\"2021-07-27T13:28:25.5128221Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-27T13:28:25.5128221Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-27T13:29:43.3925399Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user\",\"elevationLevel\":\"admin\",\"linuxUserConfiguration\":{\r\n \"uid\":5,\"gid\":5\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/21abd678-18c5-4660-9fdd-8c5ba6b6fe1f/resourceGroups/shpaster/providers/Microsoft.Network/virtualNetworks/shpasterbatchtestvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools/@Element\",\"stats@odata.navigationLinkUrl\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/stats\",\"stats\":{\r\n \"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool/stats\",\"resourceStats\":{\r\n \"startTime\":\"2022-01-27T02:01:44.6980119Z\",\"diskReadIOps\":\"48862\",\"diskWriteIOps\":\"989238\",\"lastUpdateTime\":\"2022-02-11T00:00:00Z\",\"avgCPUPercentage\":0.003218962048561242,\"avgMemoryGiB\":0.49239095322160947,\"peakMemoryGiB\":0.60028457641601563,\"avgDiskGiB\":0.062948946076953352,\"peakDiskGiB\":0.0756683349609375,\"diskReadGiB\":0.44663143157958984,\"diskWriteGiB\":15.284797668457031,\"networkReadGiB\":3.0528192855417728,\"networkWriteGiB\":6.0789693146944046\r\n }\r\n },\"id\":\"BatchUser-testpool\",\"url\":\"https://javasdkacct.eastus.batch.azure.com/pools/BatchUser-testpool\",\"eTag\":\"0x8D9E138F8213617\",\"lastModified\":\"2022-01-27T02:01:44.6980119Z\",\"creationTime\":\"2022-01-27T02:01:44.6980119Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-27T02:01:44.6980119Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-01-27T02:03:22.6998358Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n \"name\":\"test-user\",\"elevationLevel\":\"admin\",\"linuxUserConfiguration\":{\r\n \"uid\":5,\"gid\":5\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\"\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/3960a4c8-4712-4014-9ad7-4da7f39f37f0/resourceGroups/javasdkrg/providers/Microsoft.Network/virtualNetworks/javasdkvnet/subnets/javasdksubnet\",\"dynamicVNetAssignmentScope\":\"none\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools?api-version=2021-06-01.14.0&%24select=id%2C%20state", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools?api-version=2022-01-01.15.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:05 GMT", + "date" : "Fri, 11 Feb 2022 01:17:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "a905d0ae-3414-4334-b20d-3ee62c8d69bd", + "client-request-id" : "d8b80f33-9dff-42c5-8c25-2ceeab3e283b", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "080a1912-6800-4f9a-af40-879a1f570106", + "request-id" : "53287612-d713-4fb9-ab00-fe23a4d96d85", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-testpool\",\"state\":\"active\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-testIaaSpool\",\"state\":\"active\"\r\n },{\r\n \"id\":\"BatchUser-testpool\",\"state\":\"active\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/pools?api-version=2021-06-01.14.0&%24filter=state%20eq%20%27deleting%27", + "Uri" : "https://javasdkacct.eastus.batch.azure.com/pools?api-version=2022-01-01.15.0&%24filter=state%20eq%20%27deleting%27", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Mac OS X/11.4 MacAddressHash:5eb222f5b86716eb4f26fb185aca6487b26bf45726d96aa8f5640737d9096be9 Java:16.0.1 (BatchServiceClient, 2021-06-01.14.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:4cce0d84fea79019379a0906ed254da4f45e000bd9fc2f27a7cd2050beb16bb1 Java:1.8.0_311 (BatchServiceClient, 2022-01-01.15.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 27 Jul 2021 14:44:05 GMT", + "date" : "Fri, 11 Feb 2022 01:17:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "390079df-a711-4ab5-8592-42837310405b", + "client-request-id" : "c7a4082c-a0a4-4369-ad51-f3c76b3392b5", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "443557c1-04fd-44b6-880e-06ca7c0ba356", + "request-id" : "7713528c-3413-4dd2-8dec-bdeaf05be1c5", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://shpasterbatch1.pilotprod2.eastus.batch.azure.com/$metadata#pools\",\"value\":[]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://javasdkacct.eastus.batch.azure.com/$metadata#pools\",\"value\":[]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } } ],