From 7bd9ef74b2c414c13ae49f0262bae70d55be62b8 Mon Sep 17 00:00:00 2001 From: ljiaqi Date: Tue, 23 May 2023 05:51:33 +0000 Subject: [PATCH 1/8] Added features like VM Extension automatic upgrade and accelerated networking to upcoming Batch Data plane Java SDK release and remove Job/Pool lifetime statistics --- eng/spotbugs-aggregate-report/pom.xml | 2 +- eng/versioning/version_data.txt | 2 +- sdk/batch/microsoft-azure-batch/CHANGELOG.md | 19 +- sdk/batch/microsoft-azure-batch/pom.xml | 2 +- .../azure/batch/AccountOperations.java | 8 +- .../microsoft/azure/batch/BatchClient.java | 3 + .../azure/batch/CertificateOperations.java | 2 + .../microsoft/azure/batch/JobOperations.java | 29 --- .../microsoft/azure/batch/PoolOperations.java | 44 ---- .../batch/protocol/BatchServiceClient.java | 12 +- .../azure/batch/protocol/Certificates.java | 48 +++++ .../microsoft/azure/batch/protocol/Jobs.java | 84 -------- .../microsoft/azure/batch/protocol/Pools.java | 84 -------- .../BatchServiceClientImpl.java | 32 +-- .../implementation/CertificatesImpl.java | 52 +++++ .../protocol/implementation/JobsImpl.java | 188 ------------------ .../protocol/implementation/PoolsImpl.java | 188 ------------------ .../protocol/models/CertificateReference.java | 4 + .../batch/protocol/models/CloudPool.java | 7 + .../batch/protocol/models/ComputeNode.java | 7 + .../models/ContainerConfiguration.java | 18 +- .../batch/protocol/models/ContainerType.java | 53 +++++ .../batch/protocol/models/JobConstraints.java | 9 +- .../JobGetAllLifetimeStatisticsHeaders.java | 142 ------------- .../JobGetAllLifetimeStatisticsOptions.java | 136 ------------- .../protocol/models/NetworkConfiguration.java | 30 +++ .../protocol/models/PoolAddParameter.java | 7 + .../PoolGetAllLifetimeStatisticsHeaders.java | 142 ------------- .../PoolGetAllLifetimeStatisticsOptions.java | 136 ------------- .../protocol/models/PoolPatchParameter.java | 7 + .../protocol/models/PoolSpecification.java | 7 + .../models/PoolUpdatePropertiesParameter.java | 7 + .../batch/protocol/models/VMExtension.java | 27 +++ .../com/microsoft/azure/batch/JobTests.java | 4 +- .../com/microsoft/azure/batch/PoolTests.java | 84 +++++++- 35 files changed, 400 insertions(+), 1226 deletions(-) create mode 100644 sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerType.java delete mode 100644 sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobGetAllLifetimeStatisticsHeaders.java delete mode 100644 sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobGetAllLifetimeStatisticsOptions.java delete mode 100644 sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolGetAllLifetimeStatisticsHeaders.java delete mode 100644 sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolGetAllLifetimeStatisticsOptions.java diff --git a/eng/spotbugs-aggregate-report/pom.xml b/eng/spotbugs-aggregate-report/pom.xml index fde47b4e6f7e..f07edbfe980b 100644 --- a/eng/spotbugs-aggregate-report/pom.xml +++ b/eng/spotbugs-aggregate-report/pom.xml @@ -107,7 +107,7 @@ com.microsoft.azure azure-batch - 10.2.0-beta.1 + 10.2.0 com.microsoft.azure diff --git a/eng/versioning/version_data.txt b/eng/versioning/version_data.txt index dcf7a5ea154c..b969b541238d 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.1.0;10.2.0-beta.1 +com.microsoft.azure:azure-batch;10.1.0;10.2.0 com.microsoft.azure:azure-applicationinsights-query;1.0.0-Preview-1;1.0.0-Preview-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 d0498401b83e..391c1ffe898b 100644 --- a/sdk/batch/microsoft-azure-batch/CHANGELOG.md +++ b/sdk/batch/microsoft-azure-batch/CHANGELOG.md @@ -1,15 +1,28 @@ # Release History -## 10.2.0-beta.1 (Unreleased) +## 10.2.0 (2023-05-23) -### Features Added +### Features + +- Added new customer enum type `ContainerType`. + - This property determines the container technology to be used. + - Possible values: docker_compatible, cri_compatible. +- Added boolean property `enableAutomaticUpgrade` to the `VMExtension` model to determine whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available. +- Added boolean property `enableAcceleratedNetworking` to the `NetworkConfiguration` model to determine whether this pool should enable accelerated networking. ### Breaking Changes -### Bugs Fixed +- Changed property `type` in `ContainerConfiguration` from string type to enum type `ContainerType`. +- Remove the following methods in `JobOperations`. + - `getAllJobsLifetimeStatistics()`. + - `getAllJobsLifetimeStatistics(Iterable additionalBehaviors)`. +- Remove the following methods in `PoolOperations`. + - `getAllPoolsLifetimeStatistics()`. + - `getAllPoolsLifetimeStatistics(Iterable additionalBehaviors)`. ### Other Changes + ## 10.1.0 (2022-11-15) ### Features diff --git a/sdk/batch/microsoft-azure-batch/pom.xml b/sdk/batch/microsoft-azure-batch/pom.xml index e936fac2955b..9b02f075ce89 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.2.0-beta.1 + 10.2.0 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/AccountOperations.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/AccountOperations.java index 190341d5a05a..eb37c3dadc13 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/AccountOperations.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/AccountOperations.java @@ -52,7 +52,7 @@ public IInheritedBehaviors withCustomBehaviors(Collection b /** * Lists the node agent SKU values supported by the Batch service. * - * @return A list of {@link NodeAgentSku} objects. + * @return A list of {@link ImageInformation} objects. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service. */ @@ -64,7 +64,7 @@ public PagedList listSupportedImages() throws BatchErrorExcept * Lists the node agent SKU values supported by the Batch service. * * @param detailLevel A {@link DetailLevel} used for filtering the list and for controlling which properties are retrieved from the service. - * @return A list of {@link NodeAgentSku} objects. + * @return A list of {@link ImageInformation} objects. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service. */ @@ -77,7 +77,7 @@ public PagedList listSupportedImages(DetailLevel detailLevel) * * @param detailLevel A {@link DetailLevel} used for filtering the list and for controlling which properties are retrieved from the service. * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request. - * @return A list of {@link NodeAgentSku} objects. + * @return A list of {@link ImageInformation} objects. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service. */ @@ -93,7 +93,7 @@ public PagedList listSupportedImages(DetailLevel detailLevel, /** * Gets the number of nodes in each state, grouped by pool. * - * @return A list of {@link NodeAgentSku} objects. + * @return A list of {@link PoolNodeCounts} objects. * @throws BatchErrorException Exception thrown when an error response is received from the Batch service. * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service. */ diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/BatchClient.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/BatchClient.java index 68717ae239d4..90084c5b57f7 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/BatchClient.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/BatchClient.java @@ -23,6 +23,7 @@ public class BatchClient { private final BatchServiceClient protocolLayer; + @Deprecated private final CertificateOperations certificateOperations; private final JobOperations jobOperations; private final TaskOperations taskOperations; @@ -104,9 +105,11 @@ public static BatchClient open(RestClient restClient, String baseUrl) { /** * Gets a {@link CertificateOperations} object for performing certificate-related operations on the associated account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @return An instance of the {@link CertificateOperations} class. */ + @Deprecated public CertificateOperations certificateOperations() { return certificateOperations; } diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/CertificateOperations.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/CertificateOperations.java index 82776c71ebe3..162383e20d7c 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/CertificateOperations.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/CertificateOperations.java @@ -27,7 +27,9 @@ /** * Performs certificate-related operations on an Azure Batch account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. */ +@Deprecated public class CertificateOperations implements IInheritedBehaviors { private Collection customBehaviors; diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/JobOperations.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/JobOperations.java index 9bba5c725f10..2d4084fece45 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/JobOperations.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/JobOperations.java @@ -14,7 +14,6 @@ import com.microsoft.azure.batch.protocol.models.JobDisableOptions; import com.microsoft.azure.batch.protocol.models.JobEnableOptions; import com.microsoft.azure.batch.protocol.models.JobExecutionInformation; -import com.microsoft.azure.batch.protocol.models.JobGetAllLifetimeStatisticsOptions; import com.microsoft.azure.batch.protocol.models.JobGetOptions; import com.microsoft.azure.batch.protocol.models.JobGetTaskCountsOptions; import com.microsoft.azure.batch.protocol.models.JobListFromJobScheduleOptions; @@ -25,7 +24,6 @@ import com.microsoft.azure.batch.protocol.models.JobPreparationAndReleaseTaskExecutionInformation; import com.microsoft.azure.batch.protocol.models.JobPreparationTask; import com.microsoft.azure.batch.protocol.models.JobReleaseTask; -import com.microsoft.azure.batch.protocol.models.JobStatistics; import com.microsoft.azure.batch.protocol.models.JobTerminateOptions; import com.microsoft.azure.batch.protocol.models.JobUpdateOptions; import com.microsoft.azure.batch.protocol.models.JobUpdateParameter; @@ -78,33 +76,6 @@ public IInheritedBehaviors withCustomBehaviors(Collection b return this; } - /** - * Gets lifetime summary statistics for all of the jobs in the current account. - * - * @return The aggregated job statistics. - * @throws BatchErrorException Exception thrown when an error response is received from the Batch service. - * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service. - */ - public JobStatistics getAllJobsLifetimeStatistics() throws BatchErrorException, IOException { - return getAllJobsLifetimeStatistics(null); - } - - /** - * Gets lifetime summary statistics for all of the jobs in the current account. - * - * @param additionalBehaviors A collection of {@link BatchClientBehavior} instances that are applied to the Batch service request. - * @return The aggregated job statistics. - * @throws BatchErrorException Exception thrown when an error response is received from the Batch service. - * @throws IOException Exception thrown when there is an error in serialization/deserialization of data sent to/received from the Batch service. - */ - public JobStatistics getAllJobsLifetimeStatistics(Iterable additionalBehaviors) throws BatchErrorException, IOException { - JobGetAllLifetimeStatisticsOptions options = new JobGetAllLifetimeStatisticsOptions(); - BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors); - bhMgr.applyRequestBehaviors(options); - - return this.parentBatchClient.protocolLayer().jobs().getAllLifetimeStatistics(options); - } - /** * Gets the specified {@link CloudJob}. * 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 7d6832fde4cf..8fd67badbec7 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 @@ -1376,48 +1376,4 @@ public PagedList listPoolUsageMetrics(DateTime startTime, Date return this.parentBatchClient.protocolLayer().pools().listUsageMetrics(options); } - - /** - * Gets lifetime summary statistics for all of the pools in the current account. - * Statistics are aggregated across all pools that have ever existed in the - * account, from account creation to the last update time of the statistics. - * - * @return The aggregated pool statistics. - * @throws BatchErrorException - * Exception thrown when an error response is received from the - * Batch service. - * @throws IOException - * Exception thrown when there is an error in - * serialization/deserialization of data sent to/received from the - * Batch service. - */ - public PoolStatistics getAllPoolsLifetimeStatistics() throws BatchErrorException, IOException { - return getAllPoolsLifetimeStatistics(null); - } - - /** - * Gets lifetime summary statistics for all of the pools in the current account. - * Statistics are aggregated across all pools that have ever existed in the - * account, from account creation to the last update time of the statistics. - * - * @param additionalBehaviors - * A collection of {@link BatchClientBehavior} instances that are - * applied to the Batch service request. - * @return The aggregated pool statistics. - * @throws BatchErrorException - * Exception thrown when an error response is received from the - * Batch service. - * @throws IOException - * Exception thrown when there is an error in - * serialization/deserialization of data sent to/received from the - * Batch service. - */ - public PoolStatistics getAllPoolsLifetimeStatistics(Iterable additionalBehaviors) - throws BatchErrorException, IOException { - PoolGetAllLifetimeStatisticsOptions options = new PoolGetAllLifetimeStatisticsOptions(); - BehaviorManager bhMgr = new BehaviorManager(this.customBehaviors(), additionalBehaviors); - bhMgr.applyRequestBehaviors(options); - - return this.parentBatchClient.protocolLayer().pools().getAllLifetimeStatistics(options); - } } diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/BatchServiceClient.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/BatchServiceClient.java index 6770a7355cbb..7d5309872088 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/BatchServiceClient.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/BatchServiceClient.java @@ -120,12 +120,6 @@ public interface BatchServiceClient { */ Accounts accounts(); - /** - * Gets the Jobs object to access its operations. - * @return the Jobs object. - */ - Jobs jobs(); - /** * Gets the Certificates object to access its operations. * @return the Certificates object. @@ -144,6 +138,12 @@ public interface BatchServiceClient { */ JobSchedules jobSchedules(); + /** + * Gets the Jobs object to access its operations. + * @return the Jobs object. + */ + Jobs jobs(); + /** * Gets the Tasks object to access its operations. * @return the Tasks object. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Certificates.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Certificates.java index fa7b67c0083d..549fb9975e7c 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Certificates.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Certificates.java @@ -39,6 +39,7 @@ public interface Certificates { /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -49,6 +50,7 @@ public interface Certificates { /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. @@ -59,6 +61,7 @@ public interface Certificates { /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -68,6 +71,7 @@ public interface Certificates { /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -76,6 +80,7 @@ public interface Certificates { Observable> addWithServiceResponseAsync(CertificateAddParameter certificate); /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @param certificateAddOptions Additional parameters for the operation @@ -87,6 +92,7 @@ public interface Certificates { /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @param certificateAddOptions Additional parameters for the operation @@ -98,6 +104,7 @@ public interface Certificates { /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @param certificateAddOptions Additional parameters for the operation @@ -108,6 +115,7 @@ public interface Certificates { /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @param certificateAddOptions Additional parameters for the operation @@ -118,6 +126,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @throws IllegalArgumentException thrown if parameters fail the validation * @throws BatchErrorException thrown if the request is rejected by server @@ -128,6 +137,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -137,6 +147,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<Certificate> object @@ -145,6 +156,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<Certificate> object @@ -152,6 +164,7 @@ public interface Certificates { Observable, CertificateListHeaders>> listWithServiceResponseAsync(); /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateListOptions Additional parameters for the operation * @throws IllegalArgumentException thrown if parameters fail the validation @@ -163,6 +176,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateListOptions Additional parameters for the operation * @param serviceCallback the async ServiceCallback to handle successful and failed responses. @@ -173,6 +187,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateListOptions Additional parameters for the operation * @throws IllegalArgumentException thrown if parameters fail the validation @@ -182,6 +197,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateListOptions Additional parameters for the operation * @throws IllegalArgumentException thrown if parameters fail the validation @@ -192,6 +208,7 @@ public interface Certificates { /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -204,6 +221,7 @@ public interface Certificates { /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -216,6 +234,7 @@ public interface Certificates { /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -227,6 +246,7 @@ public interface Certificates { /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -237,6 +257,7 @@ public interface Certificates { /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -250,6 +271,7 @@ public interface Certificates { /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -263,6 +285,7 @@ public interface Certificates { /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -275,6 +298,7 @@ public interface Certificates { /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -287,6 +311,7 @@ public interface Certificates { /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -299,6 +324,7 @@ public interface Certificates { /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -311,6 +337,7 @@ public interface Certificates { /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -322,6 +349,7 @@ public interface Certificates { /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -332,6 +360,7 @@ public interface Certificates { /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -345,6 +374,7 @@ public interface Certificates { /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -358,6 +388,7 @@ public interface Certificates { /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -370,6 +401,7 @@ public interface Certificates { /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -381,6 +413,7 @@ public interface Certificates { /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -393,6 +426,7 @@ public interface Certificates { /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -404,6 +438,7 @@ public interface Certificates { /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -414,6 +449,7 @@ public interface Certificates { /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -423,6 +459,7 @@ public interface Certificates { Observable> getWithServiceResponseAsync(String thumbprintAlgorithm, String thumbprint); /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -436,6 +473,7 @@ public interface Certificates { /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -448,6 +486,7 @@ public interface Certificates { /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -459,6 +498,7 @@ public interface Certificates { /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -470,6 +510,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -481,6 +522,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @param serviceFuture the ServiceFuture object tracking the Retrofit calls @@ -492,6 +534,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -501,6 +544,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -509,6 +553,7 @@ public interface Certificates { Observable, CertificateListHeaders>> listNextWithServiceResponseAsync(final String nextPageLink); /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @param certificateListNextOptions Additional parameters for the operation @@ -521,6 +566,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @param certificateListNextOptions Additional parameters for the operation @@ -533,6 +579,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @param certificateListNextOptions Additional parameters for the operation @@ -543,6 +590,7 @@ public interface Certificates { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @param certificateListNextOptions Additional parameters for the operation diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Jobs.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Jobs.java index 4f229ca20b69..981f3ec7631b 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Jobs.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/Jobs.java @@ -20,8 +20,6 @@ import com.microsoft.azure.batch.protocol.models.JobDisableOptions; import com.microsoft.azure.batch.protocol.models.JobEnableHeaders; import com.microsoft.azure.batch.protocol.models.JobEnableOptions; -import com.microsoft.azure.batch.protocol.models.JobGetAllLifetimeStatisticsHeaders; -import com.microsoft.azure.batch.protocol.models.JobGetAllLifetimeStatisticsOptions; import com.microsoft.azure.batch.protocol.models.JobGetHeaders; import com.microsoft.azure.batch.protocol.models.JobGetOptions; import com.microsoft.azure.batch.protocol.models.JobGetTaskCountsHeaders; @@ -39,7 +37,6 @@ import com.microsoft.azure.batch.protocol.models.JobPatchOptions; import com.microsoft.azure.batch.protocol.models.JobPatchParameter; import com.microsoft.azure.batch.protocol.models.JobPreparationAndReleaseTaskExecutionInformation; -import com.microsoft.azure.batch.protocol.models.JobStatistics; import com.microsoft.azure.batch.protocol.models.JobTerminateHeaders; import com.microsoft.azure.batch.protocol.models.JobTerminateOptions; import com.microsoft.azure.batch.protocol.models.JobUpdateHeaders; @@ -61,87 +58,6 @@ * in Jobs. */ public interface Jobs { - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @throws BatchErrorException thrown if the request is rejected by server - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent - * @return the JobStatistics object if successful. - */ - JobStatistics getAllLifetimeStatistics(); - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param serviceCallback the async ServiceCallback to handle successful and failed responses. - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the {@link ServiceFuture} object - */ - ServiceFuture getAllLifetimeStatisticsAsync(final ServiceCallback serviceCallback); - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the JobStatistics object - */ - Observable getAllLifetimeStatisticsAsync(); - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the JobStatistics object - */ - Observable> getAllLifetimeStatisticsWithServiceResponseAsync(); - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param jobGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @throws BatchErrorException thrown if the request is rejected by server - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent - * @return the JobStatistics object if successful. - */ - JobStatistics getAllLifetimeStatistics(JobGetAllLifetimeStatisticsOptions jobGetAllLifetimeStatisticsOptions); - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param jobGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @param serviceCallback the async ServiceCallback to handle successful and failed responses. - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the {@link ServiceFuture} object - */ - ServiceFuture getAllLifetimeStatisticsAsync(JobGetAllLifetimeStatisticsOptions jobGetAllLifetimeStatisticsOptions, final ServiceCallback serviceCallback); - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param jobGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the JobStatistics object - */ - Observable getAllLifetimeStatisticsAsync(JobGetAllLifetimeStatisticsOptions jobGetAllLifetimeStatisticsOptions); - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param jobGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the JobStatistics object - */ - Observable> getAllLifetimeStatisticsWithServiceResponseAsync(JobGetAllLifetimeStatisticsOptions jobGetAllLifetimeStatisticsOptions); - /** * Deletes a Job. * Deleting a Job also deletes all Tasks that are part of that Job, and all Job statistics. This also overrides the retention period for Task data; that is, if the Job contains Tasks which are still retained on Compute Nodes, the Batch services deletes those Tasks' working directories and all their contents. When a Delete Job request is received, the Batch service sets the Job to the deleting state. All update operations on a Job that is in deleting state will fail with status code 409 (Conflict), with additional information indicating that the Job is being deleted. 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 ee5b8eab48ee..79cbbdf41e87 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 @@ -26,8 +26,6 @@ import com.microsoft.azure.batch.protocol.models.PoolEvaluateAutoScaleOptions; import com.microsoft.azure.batch.protocol.models.PoolExistsHeaders; import com.microsoft.azure.batch.protocol.models.PoolExistsOptions; -import com.microsoft.azure.batch.protocol.models.PoolGetAllLifetimeStatisticsHeaders; -import com.microsoft.azure.batch.protocol.models.PoolGetAllLifetimeStatisticsOptions; import com.microsoft.azure.batch.protocol.models.PoolGetHeaders; import com.microsoft.azure.batch.protocol.models.PoolGetOptions; import com.microsoft.azure.batch.protocol.models.PoolListHeaders; @@ -44,7 +42,6 @@ import com.microsoft.azure.batch.protocol.models.PoolResizeHeaders; import com.microsoft.azure.batch.protocol.models.PoolResizeOptions; import com.microsoft.azure.batch.protocol.models.PoolResizeParameter; -import com.microsoft.azure.batch.protocol.models.PoolStatistics; import com.microsoft.azure.batch.protocol.models.PoolStopResizeHeaders; import com.microsoft.azure.batch.protocol.models.PoolStopResizeOptions; import com.microsoft.azure.batch.protocol.models.PoolUpdatePropertiesHeaders; @@ -147,87 +144,6 @@ public interface Pools { */ Observable, PoolListUsageMetricsHeaders>> listUsageMetricsWithServiceResponseAsync(final PoolListUsageMetricsOptions poolListUsageMetricsOptions); - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @throws BatchErrorException thrown if the request is rejected by server - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent - * @return the PoolStatistics object if successful. - */ - PoolStatistics getAllLifetimeStatistics(); - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param serviceCallback the async ServiceCallback to handle successful and failed responses. - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the {@link ServiceFuture} object - */ - ServiceFuture getAllLifetimeStatisticsAsync(final ServiceCallback serviceCallback); - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the PoolStatistics object - */ - Observable getAllLifetimeStatisticsAsync(); - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the PoolStatistics object - */ - Observable> getAllLifetimeStatisticsWithServiceResponseAsync(); - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param poolGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @throws BatchErrorException thrown if the request is rejected by server - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent - * @return the PoolStatistics object if successful. - */ - PoolStatistics getAllLifetimeStatistics(PoolGetAllLifetimeStatisticsOptions poolGetAllLifetimeStatisticsOptions); - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param poolGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @param serviceCallback the async ServiceCallback to handle successful and failed responses. - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the {@link ServiceFuture} object - */ - ServiceFuture getAllLifetimeStatisticsAsync(PoolGetAllLifetimeStatisticsOptions poolGetAllLifetimeStatisticsOptions, final ServiceCallback serviceCallback); - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param poolGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the PoolStatistics object - */ - Observable getAllLifetimeStatisticsAsync(PoolGetAllLifetimeStatisticsOptions poolGetAllLifetimeStatisticsOptions); - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param poolGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the PoolStatistics object - */ - Observable> getAllLifetimeStatisticsWithServiceResponseAsync(PoolGetAllLifetimeStatisticsOptions poolGetAllLifetimeStatisticsOptions); - /** * Adds a Pool to the specified Account. * When naming Pools, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers. 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 068da40c3c39..508cf6517e7c 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 @@ -182,19 +182,6 @@ public Accounts accounts() { return this.accounts; } - /** - * The Jobs object to access its operations. - */ - private Jobs jobs; - - /** - * Gets the Jobs object to access its operations. - * @return the Jobs object. - */ - public Jobs jobs() { - return this.jobs; - } - /** * The Certificates object to access its operations. */ @@ -234,6 +221,19 @@ public JobSchedules jobSchedules() { return this.jobSchedules; } + /** + * The Jobs object to access its operations. + */ + private Jobs jobs; + + /** + * Gets the Jobs object to access its operations. + * @return the Jobs object. + */ + public Jobs jobs() { + return this.jobs; + } + /** * The Tasks object to access its operations. */ @@ -304,17 +304,17 @@ public BatchServiceClientImpl(RestClient restClient) { } protected void initialize() { - this.apiVersion = "2022-10-01.16.0"; + this.apiVersion = "2023-05-01.17.0"; this.acceptLanguage = "en-US"; this.longRunningOperationRetryTimeout = 30; this.generateClientRequestId = true; this.applications = new ApplicationsImpl(restClient().retrofit(), this); this.pools = new PoolsImpl(restClient().retrofit(), this); this.accounts = new AccountsImpl(restClient().retrofit(), this); - this.jobs = new JobsImpl(restClient().retrofit(), this); this.certificates = new CertificatesImpl(restClient().retrofit(), this); this.files = new FilesImpl(restClient().retrofit(), this); this.jobSchedules = new JobSchedulesImpl(restClient().retrofit(), this); + this.jobs = new JobsImpl(restClient().retrofit(), this); this.tasks = new TasksImpl(restClient().retrofit(), this); this.computeNodes = new ComputeNodesImpl(restClient().retrofit(), this); this.computeNodeExtensions = new ComputeNodeExtensionsImpl(restClient().retrofit(), this); @@ -328,6 +328,6 @@ protected void initialize() { */ @Override public String userAgent() { - return String.format("%s (%s, %s)", super.userAgent(), "BatchServiceClient", "2022-10-01.16.0"); + return String.format("%s (%s, %s)", super.userAgent(), "BatchServiceClient", "2023-05-01.17.0"); } } diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/CertificatesImpl.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/CertificatesImpl.java index 9a105a631469..d91218fce3b0 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/CertificatesImpl.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/CertificatesImpl.java @@ -108,6 +108,7 @@ interface CertificatesService { /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -120,6 +121,7 @@ public void add(CertificateAddParameter certificate) { /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. @@ -132,6 +134,7 @@ public ServiceFuture addAsync(CertificateAddParameter certificate, final S /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -148,6 +151,7 @@ public Void call(ServiceResponseWithHeaders respons /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -190,6 +194,7 @@ public Observable> call( /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @param certificateAddOptions Additional parameters for the operation @@ -203,6 +208,7 @@ public void add(CertificateAddParameter certificate, CertificateAddOptions certi /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @param certificateAddOptions Additional parameters for the operation @@ -216,6 +222,7 @@ public ServiceFuture addAsync(CertificateAddParameter certificate, Certifi /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @param certificateAddOptions Additional parameters for the operation @@ -233,6 +240,7 @@ public Void call(ServiceResponseWithHeaders respons /** * Adds a Certificate to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificate The Certificate to be added. * @param certificateAddOptions Additional parameters for the operation @@ -295,6 +303,7 @@ private ServiceResponseWithHeaders addDelegate(Resp /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @throws IllegalArgumentException thrown if parameters fail the validation * @throws BatchErrorException thrown if the request is rejected by server @@ -313,6 +322,7 @@ public Page nextPage(String nextPageLink) { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -332,6 +342,7 @@ public Observable, CertificateListH /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<Certificate> object @@ -348,6 +359,7 @@ public Page call(ServiceResponseWithHeaders, Cert /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the PagedList<Certificate> object @@ -368,6 +380,7 @@ public Observable, CertificateListH /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @throws IllegalArgumentException thrown if parameters fail the validation * @return the PagedList<Certificate> object wrapped in {@link ServiceResponseWithHeaders} if successful. @@ -408,6 +421,7 @@ public Observable, CertificateListH /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateListOptions Additional parameters for the operation * @throws IllegalArgumentException thrown if parameters fail the validation @@ -434,6 +448,7 @@ public Page nextPage(String nextPageLink) { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateListOptions Additional parameters for the operation * @param serviceCallback the async ServiceCallback to handle successful and failed responses. @@ -461,6 +476,7 @@ public Observable, CertificateListH /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateListOptions Additional parameters for the operation * @throws IllegalArgumentException thrown if parameters fail the validation @@ -478,6 +494,7 @@ public Page call(ServiceResponseWithHeaders, Cert /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateListOptions Additional parameters for the operation * @throws IllegalArgumentException thrown if parameters fail the validation @@ -506,6 +523,7 @@ public Observable, CertificateListH /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * ServiceResponseWithHeaders, CertificateListHeaders> * @param certificateListOptions Additional parameters for the operation * @throws IllegalArgumentException thrown if parameters fail the validation @@ -576,6 +594,7 @@ private ServiceResponseWithHeaders, CertificateListHeaders /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -590,6 +609,7 @@ public void cancelDeletion(String thumbprintAlgorithm, String thumbprint) { /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -604,6 +624,7 @@ public ServiceFuture cancelDeletionAsync(String thumbprintAlgorithm, Strin /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -622,6 +643,7 @@ public Void call(ServiceResponseWithHeaders cancelDeletionAsync(String thumbprintAlgorithm, Strin /** * Cancels a failed deletion of a Certificate from the specified Account. * If you try to delete a Certificate that is being used by a Pool or Compute Node, the status of the Certificate changes to deleteFailed. If you decide that you want to continue using the Certificate, you can use this operation to set the status of the Certificate back to active. If you intend to delete the Certificate, you do not need to run this operation after the deletion failed. You must make sure that the Certificate is not being used by any resources, and then you can try again to delete the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate being deleted. @@ -717,6 +742,7 @@ public Void call(ServiceResponseWithHeaders cance /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -797,6 +824,7 @@ public void delete(String thumbprintAlgorithm, String thumbprint) { /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -811,6 +839,7 @@ public ServiceFuture deleteAsync(String thumbprintAlgorithm, String thumbp /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -829,6 +858,7 @@ public Void call(ServiceResponseWithHeaders resp /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -875,6 +905,7 @@ public Observable> ca /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -890,6 +921,7 @@ public void delete(String thumbprintAlgorithm, String thumbprint, CertificateDel /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -905,6 +937,7 @@ public ServiceFuture deleteAsync(String thumbprintAlgorithm, String thumbp /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -924,6 +957,7 @@ public Void call(ServiceResponseWithHeaders resp /** * Deletes a Certificate from the specified Account. * You cannot delete a Certificate if a resource (Pool or Compute Node) is using it. Before you can delete a Certificate, you must therefore make sure that the Certificate is not associated with any existing Pools, the Certificate is not installed on any Nodes (even if you remove a Certificate from a Pool, it is not removed from existing Compute Nodes in that Pool until they restart), and no running Tasks depend on the Certificate. If you try to delete a Certificate that is in use, the deletion fails. The Certificate status changes to deleteFailed. You can use Cancel Delete Certificate to set the status back to active if you decide that you want to continue using the Certificate. + Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to be deleted. @@ -989,6 +1023,7 @@ private ServiceResponseWithHeaders deleteDelegat /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -1003,6 +1038,7 @@ public Certificate get(String thumbprintAlgorithm, String thumbprint) { /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -1016,6 +1052,7 @@ public ServiceFuture getAsync(String thumbprintAlgorithm, String th /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -1033,6 +1070,7 @@ public Certificate call(ServiceResponseWithHeaders /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -1094,6 +1133,7 @@ public Certificate get(String thumbprintAlgorithm, String thumbprint, Certificat /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -1108,6 +1148,7 @@ public ServiceFuture getAsync(String thumbprintAlgorithm, String th /** * Gets information about the specified Certificate. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param thumbprintAlgorithm The algorithm used to derive the thumbprint parameter. This must be sha1. * @param thumbprint The thumbprint of the Certificate to get. @@ -1126,6 +1167,7 @@ public Certificate call(ServiceResponseWithHeaders getDelega /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -1214,6 +1257,7 @@ public Page nextPage(String nextPageLink) { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @param serviceFuture the ServiceFuture object tracking the Retrofit calls @@ -1235,6 +1279,7 @@ public Observable, CertificateListH /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -1252,6 +1297,7 @@ public Page call(ServiceResponseWithHeaders, Cert /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -1273,6 +1319,7 @@ public Observable, CertificateListH /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @throws IllegalArgumentException thrown if parameters fail the validation @@ -1307,6 +1354,7 @@ public Observable, CertificateListH /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @param certificateListNextOptions Additional parameters for the operation @@ -1327,6 +1375,7 @@ public Page nextPage(String nextPageLink) { /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @param certificateListNextOptions Additional parameters for the operation @@ -1349,6 +1398,7 @@ public Observable, CertificateListH /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @param certificateListNextOptions Additional parameters for the operation @@ -1367,6 +1417,7 @@ public Page call(ServiceResponseWithHeaders, Cert /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param nextPageLink The NextLink from the previous successful call to List operation. * @param certificateListNextOptions Additional parameters for the operation @@ -1389,6 +1440,7 @@ public Observable, CertificateListH /** * Lists all of the Certificates that have been added to the specified Account. + * Warning: This operation is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * ServiceResponseWithHeaders, CertificateListHeaders> * @param nextPageLink The NextLink from the previous successful call to List operation. ServiceResponseWithHeaders, CertificateListHeaders> * @param certificateListNextOptions Additional parameters for the operation diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/JobsImpl.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/JobsImpl.java index 3e69142bb8e2..a177963c8929 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/JobsImpl.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/JobsImpl.java @@ -26,8 +26,6 @@ import com.microsoft.azure.batch.protocol.models.JobDisableParameter; import com.microsoft.azure.batch.protocol.models.JobEnableHeaders; import com.microsoft.azure.batch.protocol.models.JobEnableOptions; -import com.microsoft.azure.batch.protocol.models.JobGetAllLifetimeStatisticsHeaders; -import com.microsoft.azure.batch.protocol.models.JobGetAllLifetimeStatisticsOptions; import com.microsoft.azure.batch.protocol.models.JobGetHeaders; import com.microsoft.azure.batch.protocol.models.JobGetOptions; import com.microsoft.azure.batch.protocol.models.JobGetTaskCountsHeaders; @@ -45,7 +43,6 @@ import com.microsoft.azure.batch.protocol.models.JobPatchOptions; import com.microsoft.azure.batch.protocol.models.JobPatchParameter; import com.microsoft.azure.batch.protocol.models.JobPreparationAndReleaseTaskExecutionInformation; -import com.microsoft.azure.batch.protocol.models.JobStatistics; import com.microsoft.azure.batch.protocol.models.JobTerminateHeaders; import com.microsoft.azure.batch.protocol.models.JobTerminateOptions; import com.microsoft.azure.batch.protocol.models.JobTerminateParameter; @@ -108,10 +105,6 @@ public JobsImpl(Retrofit retrofit, BatchServiceClientImpl client) { * used by Retrofit to perform actually REST calls. */ interface JobsService { - @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.batch.protocol.Jobs getAllLifetimeStatistics" }) - @GET("lifetimejobstats") - Observable> getAllLifetimeStatistics(@Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Query("timeout") Integer timeout, @Header("client-request-id") UUID clientRequestId, @Header("return-client-request-id") Boolean returnClientRequestId, @Header("ocp-date") DateTimeRfc1123 ocpDate, @Header("x-ms-parameterized-host") String parameterizedHost, @Header("User-Agent") String userAgent); - @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.batch.protocol.Jobs delete" }) @HTTP(path = "jobs/{jobId}", method = "DELETE", hasBody = true) Observable> delete(@Path("jobId") String jobId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Query("timeout") Integer timeout, @Header("client-request-id") UUID clientRequestId, @Header("return-client-request-id") Boolean returnClientRequestId, @Header("ocp-date") DateTimeRfc1123 ocpDate, @Header("If-Match") String ifMatch, @Header("If-None-Match") String ifNoneMatch, @Header("If-Modified-Since") DateTimeRfc1123 ifModifiedSince, @Header("If-Unmodified-Since") DateTimeRfc1123 ifUnmodifiedSince, @Header("x-ms-parameterized-host") String parameterizedHost, @Header("User-Agent") String userAgent); @@ -174,187 +167,6 @@ interface JobsService { } - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @throws BatchErrorException thrown if the request is rejected by server - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent - * @return the JobStatistics object if successful. - */ - public JobStatistics getAllLifetimeStatistics() { - return getAllLifetimeStatisticsWithServiceResponseAsync().toBlocking().single().body(); - } - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param serviceCallback the async ServiceCallback to handle successful and failed responses. - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the {@link ServiceFuture} object - */ - public ServiceFuture getAllLifetimeStatisticsAsync(final ServiceCallback serviceCallback) { - return ServiceFuture.fromHeaderResponse(getAllLifetimeStatisticsWithServiceResponseAsync(), serviceCallback); - } - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the JobStatistics object - */ - public Observable getAllLifetimeStatisticsAsync() { - return getAllLifetimeStatisticsWithServiceResponseAsync().map(new Func1, JobStatistics>() { - @Override - public JobStatistics call(ServiceResponseWithHeaders response) { - return response.body(); - } - }); - } - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the JobStatistics object - */ - public Observable> getAllLifetimeStatisticsWithServiceResponseAsync() { - if (this.client.batchUrl() == null) { - throw new IllegalArgumentException("Parameter this.client.batchUrl() is required and cannot be null."); - } - if (this.client.apiVersion() == null) { - throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); - } - final JobGetAllLifetimeStatisticsOptions jobGetAllLifetimeStatisticsOptions = null; - Integer timeout = null; - UUID clientRequestId = null; - Boolean returnClientRequestId = null; - DateTime ocpDate = null; - String parameterizedHost = Joiner.on(", ").join("{batchUrl}", this.client.batchUrl()); - DateTimeRfc1123 ocpDateConverted = null; - if (ocpDate != null) { - ocpDateConverted = new DateTimeRfc1123(ocpDate); - } - return service.getAllLifetimeStatistics(this.client.apiVersion(), this.client.acceptLanguage(), timeout, clientRequestId, returnClientRequestId, ocpDateConverted, parameterizedHost, this.client.userAgent()) - .flatMap(new Func1, Observable>>() { - @Override - public Observable> call(Response response) { - try { - ServiceResponseWithHeaders clientResponse = getAllLifetimeStatisticsDelegate(response); - return Observable.just(clientResponse); - } catch (Throwable t) { - return Observable.error(t); - } - } - }); - } - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param jobGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @throws BatchErrorException thrown if the request is rejected by server - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent - * @return the JobStatistics object if successful. - */ - public JobStatistics getAllLifetimeStatistics(JobGetAllLifetimeStatisticsOptions jobGetAllLifetimeStatisticsOptions) { - return getAllLifetimeStatisticsWithServiceResponseAsync(jobGetAllLifetimeStatisticsOptions).toBlocking().single().body(); - } - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param jobGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @param serviceCallback the async ServiceCallback to handle successful and failed responses. - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the {@link ServiceFuture} object - */ - public ServiceFuture getAllLifetimeStatisticsAsync(JobGetAllLifetimeStatisticsOptions jobGetAllLifetimeStatisticsOptions, final ServiceCallback serviceCallback) { - return ServiceFuture.fromHeaderResponse(getAllLifetimeStatisticsWithServiceResponseAsync(jobGetAllLifetimeStatisticsOptions), serviceCallback); - } - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param jobGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the JobStatistics object - */ - public Observable getAllLifetimeStatisticsAsync(JobGetAllLifetimeStatisticsOptions jobGetAllLifetimeStatisticsOptions) { - return getAllLifetimeStatisticsWithServiceResponseAsync(jobGetAllLifetimeStatisticsOptions).map(new Func1, JobStatistics>() { - @Override - public JobStatistics call(ServiceResponseWithHeaders response) { - return response.body(); - } - }); - } - - /** - * Gets lifetime summary statistics for all of the Jobs in the specified Account. - * Statistics are aggregated across all Jobs that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param jobGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the JobStatistics object - */ - public Observable> getAllLifetimeStatisticsWithServiceResponseAsync(JobGetAllLifetimeStatisticsOptions jobGetAllLifetimeStatisticsOptions) { - if (this.client.batchUrl() == null) { - throw new IllegalArgumentException("Parameter this.client.batchUrl() is required and cannot be null."); - } - if (this.client.apiVersion() == null) { - throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); - } - Validator.validate(jobGetAllLifetimeStatisticsOptions); - Integer timeout = null; - if (jobGetAllLifetimeStatisticsOptions != null) { - timeout = jobGetAllLifetimeStatisticsOptions.timeout(); - } - UUID clientRequestId = null; - if (jobGetAllLifetimeStatisticsOptions != null) { - clientRequestId = jobGetAllLifetimeStatisticsOptions.clientRequestId(); - } - Boolean returnClientRequestId = null; - if (jobGetAllLifetimeStatisticsOptions != null) { - returnClientRequestId = jobGetAllLifetimeStatisticsOptions.returnClientRequestId(); - } - DateTime ocpDate = null; - if (jobGetAllLifetimeStatisticsOptions != null) { - ocpDate = jobGetAllLifetimeStatisticsOptions.ocpDate(); - } - String parameterizedHost = Joiner.on(", ").join("{batchUrl}", this.client.batchUrl()); - DateTimeRfc1123 ocpDateConverted = null; - if (ocpDate != null) { - ocpDateConverted = new DateTimeRfc1123(ocpDate); - } - return service.getAllLifetimeStatistics(this.client.apiVersion(), this.client.acceptLanguage(), timeout, clientRequestId, returnClientRequestId, ocpDateConverted, parameterizedHost, this.client.userAgent()) - .flatMap(new Func1, Observable>>() { - @Override - public Observable> call(Response response) { - try { - ServiceResponseWithHeaders clientResponse = getAllLifetimeStatisticsDelegate(response); - return Observable.just(clientResponse); - } catch (Throwable t) { - return Observable.error(t); - } - } - }); - } - - private ServiceResponseWithHeaders getAllLifetimeStatisticsDelegate(Response response) throws BatchErrorException, IOException, IllegalArgumentException { - return this.client.restClient().responseBuilderFactory().newInstance(this.client.serializerAdapter()) - .register(200, new TypeToken() { }.getType()) - .registerError(BatchErrorException.class) - .buildWithHeaders(response, JobGetAllLifetimeStatisticsHeaders.class); - } - /** * Deletes a Job. * Deleting a Job also deletes all Tasks that are part of that Job, and all Job statistics. This also overrides the retention period for Task data; that is, if the Job contains Tasks which are still retained on Compute Nodes, the Batch services deletes those Tasks' working directories and all their contents. When a Delete Job request is received, the Batch service sets the Job to the deleting state. All update operations on a Job that is in deleting state will fail with status code 409 (Conflict), with additional information indicating that the Job is being deleted. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/PoolsImpl.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/PoolsImpl.java index 455c2669db12..742a1e0b5a37 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/PoolsImpl.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/implementation/PoolsImpl.java @@ -33,8 +33,6 @@ import com.microsoft.azure.batch.protocol.models.PoolEvaluateAutoScaleParameter; import com.microsoft.azure.batch.protocol.models.PoolExistsHeaders; import com.microsoft.azure.batch.protocol.models.PoolExistsOptions; -import com.microsoft.azure.batch.protocol.models.PoolGetAllLifetimeStatisticsHeaders; -import com.microsoft.azure.batch.protocol.models.PoolGetAllLifetimeStatisticsOptions; import com.microsoft.azure.batch.protocol.models.PoolGetHeaders; import com.microsoft.azure.batch.protocol.models.PoolGetOptions; import com.microsoft.azure.batch.protocol.models.PoolListHeaders; @@ -51,7 +49,6 @@ import com.microsoft.azure.batch.protocol.models.PoolResizeHeaders; import com.microsoft.azure.batch.protocol.models.PoolResizeOptions; import com.microsoft.azure.batch.protocol.models.PoolResizeParameter; -import com.microsoft.azure.batch.protocol.models.PoolStatistics; import com.microsoft.azure.batch.protocol.models.PoolStopResizeHeaders; import com.microsoft.azure.batch.protocol.models.PoolStopResizeOptions; import com.microsoft.azure.batch.protocol.models.PoolUpdatePropertiesHeaders; @@ -116,10 +113,6 @@ interface PoolsService { @GET("poolusagemetrics") Observable> listUsageMetrics(@Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Query("starttime") DateTime startTime, @Query("endtime") DateTime endTime, @Query("$filter") String filter, @Query("maxresults") Integer maxResults, @Query("timeout") Integer timeout, @Header("client-request-id") UUID clientRequestId, @Header("return-client-request-id") Boolean returnClientRequestId, @Header("ocp-date") DateTimeRfc1123 ocpDate, @Header("x-ms-parameterized-host") String parameterizedHost, @Header("User-Agent") String userAgent); - @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.batch.protocol.Pools getAllLifetimeStatistics" }) - @GET("lifetimepoolstats") - Observable> getAllLifetimeStatistics(@Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Query("timeout") Integer timeout, @Header("client-request-id") UUID clientRequestId, @Header("return-client-request-id") Boolean returnClientRequestId, @Header("ocp-date") DateTimeRfc1123 ocpDate, @Header("x-ms-parameterized-host") String parameterizedHost, @Header("User-Agent") String userAgent); - @Headers({ "Content-Type: application/json; odata=minimalmetadata; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.batch.protocol.Pools add" }) @POST("pools") Observable> add(@Body PoolAddParameter pool, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Query("timeout") Integer timeout, @Header("client-request-id") UUID clientRequestId, @Header("return-client-request-id") Boolean returnClientRequestId, @Header("ocp-date") DateTimeRfc1123 ocpDate, @Header("x-ms-parameterized-host") String parameterizedHost, @Header("User-Agent") String userAgent); @@ -477,187 +470,6 @@ private ServiceResponseWithHeaders, PoolListUsageMetr .buildWithHeaders(response, PoolListUsageMetricsHeaders.class); } - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @throws BatchErrorException thrown if the request is rejected by server - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent - * @return the PoolStatistics object if successful. - */ - public PoolStatistics getAllLifetimeStatistics() { - return getAllLifetimeStatisticsWithServiceResponseAsync().toBlocking().single().body(); - } - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param serviceCallback the async ServiceCallback to handle successful and failed responses. - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the {@link ServiceFuture} object - */ - public ServiceFuture getAllLifetimeStatisticsAsync(final ServiceCallback serviceCallback) { - return ServiceFuture.fromHeaderResponse(getAllLifetimeStatisticsWithServiceResponseAsync(), serviceCallback); - } - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the PoolStatistics object - */ - public Observable getAllLifetimeStatisticsAsync() { - return getAllLifetimeStatisticsWithServiceResponseAsync().map(new Func1, PoolStatistics>() { - @Override - public PoolStatistics call(ServiceResponseWithHeaders response) { - return response.body(); - } - }); - } - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the PoolStatistics object - */ - public Observable> getAllLifetimeStatisticsWithServiceResponseAsync() { - if (this.client.batchUrl() == null) { - throw new IllegalArgumentException("Parameter this.client.batchUrl() is required and cannot be null."); - } - if (this.client.apiVersion() == null) { - throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); - } - final PoolGetAllLifetimeStatisticsOptions poolGetAllLifetimeStatisticsOptions = null; - Integer timeout = null; - UUID clientRequestId = null; - Boolean returnClientRequestId = null; - DateTime ocpDate = null; - String parameterizedHost = Joiner.on(", ").join("{batchUrl}", this.client.batchUrl()); - DateTimeRfc1123 ocpDateConverted = null; - if (ocpDate != null) { - ocpDateConverted = new DateTimeRfc1123(ocpDate); - } - return service.getAllLifetimeStatistics(this.client.apiVersion(), this.client.acceptLanguage(), timeout, clientRequestId, returnClientRequestId, ocpDateConverted, parameterizedHost, this.client.userAgent()) - .flatMap(new Func1, Observable>>() { - @Override - public Observable> call(Response response) { - try { - ServiceResponseWithHeaders clientResponse = getAllLifetimeStatisticsDelegate(response); - return Observable.just(clientResponse); - } catch (Throwable t) { - return Observable.error(t); - } - } - }); - } - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param poolGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @throws BatchErrorException thrown if the request is rejected by server - * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent - * @return the PoolStatistics object if successful. - */ - public PoolStatistics getAllLifetimeStatistics(PoolGetAllLifetimeStatisticsOptions poolGetAllLifetimeStatisticsOptions) { - return getAllLifetimeStatisticsWithServiceResponseAsync(poolGetAllLifetimeStatisticsOptions).toBlocking().single().body(); - } - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param poolGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @param serviceCallback the async ServiceCallback to handle successful and failed responses. - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the {@link ServiceFuture} object - */ - public ServiceFuture getAllLifetimeStatisticsAsync(PoolGetAllLifetimeStatisticsOptions poolGetAllLifetimeStatisticsOptions, final ServiceCallback serviceCallback) { - return ServiceFuture.fromHeaderResponse(getAllLifetimeStatisticsWithServiceResponseAsync(poolGetAllLifetimeStatisticsOptions), serviceCallback); - } - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param poolGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the PoolStatistics object - */ - public Observable getAllLifetimeStatisticsAsync(PoolGetAllLifetimeStatisticsOptions poolGetAllLifetimeStatisticsOptions) { - return getAllLifetimeStatisticsWithServiceResponseAsync(poolGetAllLifetimeStatisticsOptions).map(new Func1, PoolStatistics>() { - @Override - public PoolStatistics call(ServiceResponseWithHeaders response) { - return response.body(); - } - }); - } - - /** - * Gets lifetime summary statistics for all of the Pools in the specified Account. - * Statistics are aggregated across all Pools that have ever existed in the Account, from Account creation to the last update time of the statistics. The statistics may not be immediately available. The Batch service performs periodic roll-up of statistics. The typical delay is about 30 minutes. - * - * @param poolGetAllLifetimeStatisticsOptions Additional parameters for the operation - * @throws IllegalArgumentException thrown if parameters fail the validation - * @return the observable to the PoolStatistics object - */ - public Observable> getAllLifetimeStatisticsWithServiceResponseAsync(PoolGetAllLifetimeStatisticsOptions poolGetAllLifetimeStatisticsOptions) { - if (this.client.batchUrl() == null) { - throw new IllegalArgumentException("Parameter this.client.batchUrl() is required and cannot be null."); - } - if (this.client.apiVersion() == null) { - throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); - } - Validator.validate(poolGetAllLifetimeStatisticsOptions); - Integer timeout = null; - if (poolGetAllLifetimeStatisticsOptions != null) { - timeout = poolGetAllLifetimeStatisticsOptions.timeout(); - } - UUID clientRequestId = null; - if (poolGetAllLifetimeStatisticsOptions != null) { - clientRequestId = poolGetAllLifetimeStatisticsOptions.clientRequestId(); - } - Boolean returnClientRequestId = null; - if (poolGetAllLifetimeStatisticsOptions != null) { - returnClientRequestId = poolGetAllLifetimeStatisticsOptions.returnClientRequestId(); - } - DateTime ocpDate = null; - if (poolGetAllLifetimeStatisticsOptions != null) { - ocpDate = poolGetAllLifetimeStatisticsOptions.ocpDate(); - } - String parameterizedHost = Joiner.on(", ").join("{batchUrl}", this.client.batchUrl()); - DateTimeRfc1123 ocpDateConverted = null; - if (ocpDate != null) { - ocpDateConverted = new DateTimeRfc1123(ocpDate); - } - return service.getAllLifetimeStatistics(this.client.apiVersion(), this.client.acceptLanguage(), timeout, clientRequestId, returnClientRequestId, ocpDateConverted, parameterizedHost, this.client.userAgent()) - .flatMap(new Func1, Observable>>() { - @Override - public Observable> call(Response response) { - try { - ServiceResponseWithHeaders clientResponse = getAllLifetimeStatisticsDelegate(response); - return Observable.just(clientResponse); - } catch (Throwable t) { - return Observable.error(t); - } - } - }); - } - - private ServiceResponseWithHeaders getAllLifetimeStatisticsDelegate(Response response) throws BatchErrorException, IOException, IllegalArgumentException { - return this.client.restClient().responseBuilderFactory().newInstance(this.client.serializerAdapter()) - .register(200, new TypeToken() { }.getType()) - .registerError(BatchErrorException.class) - .buildWithHeaders(response, PoolGetAllLifetimeStatisticsHeaders.class); - } - /** * Adds a Pool to the specified Account. * When naming Pools, avoid including sensitive information such as user names or secret project names. This information may appear in telemetry logs accessible to Microsoft Support engineers. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CertificateReference.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CertificateReference.java index 254a433824c7..37f7eb48ade1 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CertificateReference.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/CertificateReference.java @@ -13,6 +13,10 @@ /** * A reference to a Certificate to be installed on Compute Nodes in a Pool. + * Warning: This object is deprecated and will be removed after February, 2024. + * Please use the [Azure KeyVault + * Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) + * instead. */ public class CertificateReference { /** 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 2ec23820cc68..5b5d1cfff647 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 @@ -231,6 +231,11 @@ public class CloudPool { * 'remoteUser', a 'certs' directory is created in the user's home * directory (e.g., /home/{user-name}/certs) and Certificates are placed in * that directory. + * + * Warning: This property is deprecated and will be removed after February, + * 2024. Please use the [Azure KeyVault + * Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) + * instead. */ @JsonProperty(value = "certificateReferences") private List certificateReferences; @@ -848,6 +853,7 @@ public CloudPool withStartTask(StartTask startTask) { /** * Get for Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @return the certificateReferences value */ @@ -857,6 +863,7 @@ public List certificateReferences() { /** * Set for Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateReferences the certificateReferences 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 02c1a91893d6..cc8648cc4332 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 @@ -166,6 +166,11 @@ public class ComputeNode { * 'remoteUser', a 'certs' directory is created in the user's home * directory (e.g., /home/{user-name}/certs) and Certificates are placed in * that directory. + * + * Warning: This property is deprecated and will be removed after February, + * 2024. Please use the [Azure KeyVault + * Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) + * instead. */ @JsonProperty(value = "certificateReferences") private List certificateReferences; @@ -545,6 +550,7 @@ public ComputeNode withStartTaskInfo(StartTaskInformation startTaskInfo) { /** * Get for Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @return the certificateReferences value */ @@ -554,6 +560,7 @@ public List certificateReferences() { /** * Set for Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateReferences the certificateReferences 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/ContainerConfiguration.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerConfiguration.java index 35f06d0e6778..28e3ec4891b3 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerConfiguration.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerConfiguration.java @@ -17,9 +17,10 @@ public class ContainerConfiguration { /** * The container technology to be used. + * Possible values include: 'dockerCompatible', 'criCompatible'. */ @JsonProperty(value = "type", required = true) - private String type; + private ContainerType type; /** * The collection of container Image names. @@ -39,28 +40,21 @@ public class ContainerConfiguration { private List containerRegistries; /** - * Creates an instance of ContainerConfiguration class. - */ - public ContainerConfiguration() { - type = "dockerCompatible"; - } - - /** - * Get the type value. + * Get possible values include: 'dockerCompatible', 'criCompatible'. * * @return the type value */ - public String type() { + public ContainerType type() { return this.type; } /** - * Set the type value. + * Set possible values include: 'dockerCompatible', 'criCompatible'. * * @param type the type value to set * @return the ContainerConfiguration object itself. */ - public ContainerConfiguration withType(String type) { + public ContainerConfiguration withType(ContainerType type) { this.type = type; return this; } diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerType.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerType.java new file mode 100644 index 000000000000..075ae38ad9f6 --- /dev/null +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerType.java @@ -0,0 +1,53 @@ +/** + * 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.JsonCreator; +import com.fasterxml.jackson.annotation.JsonValue; + +/** + * Defines values for ContainerType. + */ +public enum ContainerType { + /** A Docker compatible container technology will be used to launch the containers. */ + DOCKER_COMPATIBLE("dockerCompatible"), + + /** A CRI based technology will be used to launch the containers. */ + CRI_COMPATIBLE("criCompatible"); + + /** The actual serialized value for a ContainerType instance. */ + private String value; + + ContainerType(String value) { + this.value = value; + } + + /** + * Parses a serialized value to a ContainerType instance. + * + * @param value the serialized value to parse. + * @return the parsed ContainerType object, or null if unable to parse. + */ + @JsonCreator + public static ContainerType fromString(String value) { + ContainerType[] items = ContainerType.values(); + for (ContainerType item : items) { + if (item.toString().equalsIgnoreCase(value)) { + return item; + } + } + return null; + } + + @JsonValue + @Override + public String toString() { + return this.value; + } +} 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 41ddfb4b8e15..ac0403658e07 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,9 +34,8 @@ 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 the Task without limit, however - * this is not recommended for a start task or any task. The default value - * is 0 (no retries). + * count is -1, the Batch service retries Tasks without limit. The default + * value is 0 (no retries). */ @JsonProperty(value = "maxTaskRetryCount") private Integer maxTaskRetryCount; @@ -62,7 +61,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 the Task without limit, however this is not recommended for a start task or any task. 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 Tasks without limit. The default value is 0 (no retries). * * @return the maxTaskRetryCount value */ @@ -71,7 +70,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 the Task without limit, however this is not recommended for a start task or any task. 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 Tasks without limit. 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/JobGetAllLifetimeStatisticsHeaders.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobGetAllLifetimeStatisticsHeaders.java deleted file mode 100644 index 84a176c98437..000000000000 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobGetAllLifetimeStatisticsHeaders.java +++ /dev/null @@ -1,142 +0,0 @@ -/** - * 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 java.util.UUID; -import com.microsoft.rest.DateTimeRfc1123; -import org.joda.time.DateTime; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * Defines headers for GetAllLifetimeStatistics operation. - */ -public class JobGetAllLifetimeStatisticsHeaders { - /** - * The client-request-id provided by the client during the request. This - * will be returned only if the return-client-request-id parameter was set - * to true. - */ - @JsonProperty(value = "client-request-id") - private UUID clientRequestId; - - /** - * A unique identifier for the request that was made to the Batch service. - * If a request is consistently failing and you have verified that the - * request is properly formulated, you may use this value to report the - * error to Microsoft. In your report, include the value of this request - * ID, the approximate time that the request was made, the Batch Account - * against which the request was made, and the region that Account resides - * in. - */ - @JsonProperty(value = "request-id") - private UUID requestId; - - /** - * The ETag HTTP response header. This is an opaque string. You can use it - * to detect whether the resource has changed between requests. In - * particular, you can pass the ETag to one of the If-Modified-Since, - * If-Unmodified-Since, If-Match or If-None-Match headers. - */ - @JsonProperty(value = "ETag") - private String eTag; - - /** - * The time at which the resource was last modified. - */ - @JsonProperty(value = "Last-Modified") - private DateTimeRfc1123 lastModified; - - /** - * Get the client-request-id provided by the client during the request. This will be returned only if the return-client-request-id parameter was set to true. - * - * @return the clientRequestId value - */ - public UUID clientRequestId() { - return this.clientRequestId; - } - - /** - * Set the client-request-id provided by the client during the request. This will be returned only if the return-client-request-id parameter was set to true. - * - * @param clientRequestId the clientRequestId value to set - * @return the JobGetAllLifetimeStatisticsHeaders object itself. - */ - public JobGetAllLifetimeStatisticsHeaders withClientRequestId(UUID clientRequestId) { - this.clientRequestId = clientRequestId; - return this; - } - - /** - * Get a unique identifier for the request that was made to the Batch service. If a request is consistently failing and you have verified that the request is properly formulated, you may use this value to report the error to Microsoft. In your report, include the value of this request ID, the approximate time that the request was made, the Batch Account against which the request was made, and the region that Account resides in. - * - * @return the requestId value - */ - public UUID requestId() { - return this.requestId; - } - - /** - * Set a unique identifier for the request that was made to the Batch service. If a request is consistently failing and you have verified that the request is properly formulated, you may use this value to report the error to Microsoft. In your report, include the value of this request ID, the approximate time that the request was made, the Batch Account against which the request was made, and the region that Account resides in. - * - * @param requestId the requestId value to set - * @return the JobGetAllLifetimeStatisticsHeaders object itself. - */ - public JobGetAllLifetimeStatisticsHeaders withRequestId(UUID requestId) { - this.requestId = requestId; - return this; - } - - /** - * Get the ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Modified-Since, If-Unmodified-Since, If-Match or If-None-Match headers. - * - * @return the eTag value - */ - public String eTag() { - return this.eTag; - } - - /** - * Set the ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Modified-Since, If-Unmodified-Since, If-Match or If-None-Match headers. - * - * @param eTag the eTag value to set - * @return the JobGetAllLifetimeStatisticsHeaders object itself. - */ - public JobGetAllLifetimeStatisticsHeaders withETag(String eTag) { - this.eTag = eTag; - return this; - } - - /** - * Get the time at which the resource was last modified. - * - * @return the lastModified value - */ - public DateTime lastModified() { - if (this.lastModified == null) { - return null; - } - return this.lastModified.dateTime(); - } - - /** - * Set the time at which the resource was last modified. - * - * @param lastModified the lastModified value to set - * @return the JobGetAllLifetimeStatisticsHeaders object itself. - */ - public JobGetAllLifetimeStatisticsHeaders withLastModified(DateTime lastModified) { - if (lastModified == null) { - this.lastModified = null; - } else { - this.lastModified = new DateTimeRfc1123(lastModified); - } - return this; - } - -} diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobGetAllLifetimeStatisticsOptions.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobGetAllLifetimeStatisticsOptions.java deleted file mode 100644 index 70f9382926b6..000000000000 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/JobGetAllLifetimeStatisticsOptions.java +++ /dev/null @@ -1,136 +0,0 @@ -/** - * 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 java.util.UUID; -import com.microsoft.rest.DateTimeRfc1123; -import org.joda.time.DateTime; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * Additional parameters for getAllLifetimeStatistics operation. - */ -public class JobGetAllLifetimeStatisticsOptions { - /** - * The maximum time that the server can spend processing the request, in - * seconds. The default is 30 seconds. - */ - @JsonProperty(value = "") - private Integer timeout; - - /** - * The caller-generated request identity, in the form of a GUID with no - * decoration such as curly braces, e.g. - * 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0. - */ - @JsonProperty(value = "") - private UUID clientRequestId; - - /** - * Whether the server should return the client-request-id in the response. - */ - @JsonProperty(value = "") - private Boolean returnClientRequestId; - - /** - * The time the request was issued. Client libraries typically set this to - * the current system clock time; set it explicitly if you are calling the - * REST API directly. - */ - @JsonProperty(value = "") - private DateTimeRfc1123 ocpDate; - - /** - * Get the maximum time that the server can spend processing the request, in seconds. The default is 30 seconds. - * - * @return the timeout value - */ - public Integer timeout() { - return this.timeout; - } - - /** - * Set the maximum time that the server can spend processing the request, in seconds. The default is 30 seconds. - * - * @param timeout the timeout value to set - * @return the JobGetAllLifetimeStatisticsOptions object itself. - */ - public JobGetAllLifetimeStatisticsOptions withTimeout(Integer timeout) { - this.timeout = timeout; - return this; - } - - /** - * Get the caller-generated request identity, in the form of a GUID with no decoration such as curly braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0. - * - * @return the clientRequestId value - */ - public UUID clientRequestId() { - return this.clientRequestId; - } - - /** - * Set the caller-generated request identity, in the form of a GUID with no decoration such as curly braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0. - * - * @param clientRequestId the clientRequestId value to set - * @return the JobGetAllLifetimeStatisticsOptions object itself. - */ - public JobGetAllLifetimeStatisticsOptions withClientRequestId(UUID clientRequestId) { - this.clientRequestId = clientRequestId; - return this; - } - - /** - * Get whether the server should return the client-request-id in the response. - * - * @return the returnClientRequestId value - */ - public Boolean returnClientRequestId() { - return this.returnClientRequestId; - } - - /** - * Set whether the server should return the client-request-id in the response. - * - * @param returnClientRequestId the returnClientRequestId value to set - * @return the JobGetAllLifetimeStatisticsOptions object itself. - */ - public JobGetAllLifetimeStatisticsOptions withReturnClientRequestId(Boolean returnClientRequestId) { - this.returnClientRequestId = returnClientRequestId; - return this; - } - - /** - * Get the time the request was issued. Client libraries typically set this to the current system clock time; set it explicitly if you are calling the REST API directly. - * - * @return the ocpDate value - */ - public DateTime ocpDate() { - if (this.ocpDate == null) { - return null; - } - return this.ocpDate.dateTime(); - } - - /** - * Set the time the request was issued. Client libraries typically set this to the current system clock time; set it explicitly if you are calling the REST API directly. - * - * @param ocpDate the ocpDate value to set - * @return the JobGetAllLifetimeStatisticsOptions object itself. - */ - public JobGetAllLifetimeStatisticsOptions withOcpDate(DateTime ocpDate) { - if (ocpDate == null) { - this.ocpDate = null; - } else { - this.ocpDate = new DateTimeRfc1123(ocpDate); - } - return this; - } - -} diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/NetworkConfiguration.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/NetworkConfiguration.java index 1c92b11a73dc..1055670df5fe 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/NetworkConfiguration.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/NetworkConfiguration.java @@ -69,6 +69,16 @@ public class NetworkConfiguration { @JsonProperty(value = "publicIPAddressConfiguration") private PublicIPAddressConfiguration publicIPAddressConfiguration; + /** + * Whether this pool should enable accelerated networking. + * Accelerated networking enables single root I/O virtualization (SR-IOV) + * to a VM, which may lead to improved networking performance. For more + * details, see: + * https://learn.microsoft.com/azure/virtual-network/accelerated-networking-overview. + */ + @JsonProperty(value = "enableAcceleratedNetworking") + private Boolean enableAcceleratedNetworking; + /** * Get the virtual network must be in the same region and subscription as the Azure Batch Account. The specified subnet should have enough free IP addresses to accommodate the number of Compute Nodes in the Pool. If the subnet doesn't have enough free IP addresses, the Pool will partially allocate Nodes and a resize error will occur. The 'MicrosoftAzureBatch' service principal must have the 'Classic Virtual Machine Contributor' Role-Based Access Control (RBAC) role for the specified VNet. The specified subnet must allow communication from the Azure Batch service to be able to schedule Tasks on the Nodes. This can be verified by checking if the specified VNet has any associated Network Security Groups (NSG). If communication to the Nodes in the specified subnet is denied by an NSG, then the Batch service will set the state of the Compute Nodes to unusable. For Pools created with virtualMachineConfiguration only ARM virtual networks ('Microsoft.Network/virtualNetworks') are supported, but for Pools created with cloudServiceConfiguration both ARM and classic virtual networks are supported. If the specified VNet has any associated Network Security Groups (NSG), then a few reserved system ports must be enabled for inbound communication. For Pools created with a virtual machine configuration, enable ports 29876 and 29877, as well as port 22 for Linux and port 3389 for Windows. For Pools created with a cloud service configuration, enable ports 10100, 20100, and 30100. Also enable outbound connections to Azure Storage on port 443. For more details see: https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration. * @@ -149,4 +159,24 @@ public NetworkConfiguration withPublicIPAddressConfiguration(PublicIPAddressConf return this; } + /** + * Get accelerated networking enables single root I/O virtualization (SR-IOV) to a VM, which may lead to improved networking performance. For more details, see: https://learn.microsoft.com/azure/virtual-network/accelerated-networking-overview. + * + * @return the enableAcceleratedNetworking value + */ + public Boolean enableAcceleratedNetworking() { + return this.enableAcceleratedNetworking; + } + + /** + * Set accelerated networking enables single root I/O virtualization (SR-IOV) to a VM, which may lead to improved networking performance. For more details, see: https://learn.microsoft.com/azure/virtual-network/accelerated-networking-overview. + * + * @param enableAcceleratedNetworking the enableAcceleratedNetworking value to set + * @return the NetworkConfiguration object itself. + */ + public NetworkConfiguration withEnableAcceleratedNetworking(Boolean enableAcceleratedNetworking) { + this.enableAcceleratedNetworking = enableAcceleratedNetworking; + 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 28a6dc632c87..828aa10b7ed2 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 @@ -171,6 +171,11 @@ public class PoolAddParameter { * 'remoteUser', a 'certs' directory is created in the user's home * directory (e.g., /home/{user-name}/certs) and Certificates are placed in * that directory. + * + * Warning: This property is deprecated and will be removed after February, + * 2024. Please use the [Azure KeyVault + * Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) + * instead. */ @JsonProperty(value = "certificateReferences") private List certificateReferences; @@ -528,6 +533,7 @@ public PoolAddParameter withStartTask(StartTask startTask) { /** * Get for Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @return the certificateReferences value */ @@ -537,6 +543,7 @@ public List certificateReferences() { /** * Set for Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateReferences the certificateReferences value to set * @return the PoolAddParameter object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolGetAllLifetimeStatisticsHeaders.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolGetAllLifetimeStatisticsHeaders.java deleted file mode 100644 index 889ef94feb5c..000000000000 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolGetAllLifetimeStatisticsHeaders.java +++ /dev/null @@ -1,142 +0,0 @@ -/** - * 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 java.util.UUID; -import com.microsoft.rest.DateTimeRfc1123; -import org.joda.time.DateTime; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * Defines headers for GetAllLifetimeStatistics operation. - */ -public class PoolGetAllLifetimeStatisticsHeaders { - /** - * The client-request-id provided by the client during the request. This - * will be returned only if the return-client-request-id parameter was set - * to true. - */ - @JsonProperty(value = "client-request-id") - private UUID clientRequestId; - - /** - * A unique identifier for the request that was made to the Batch service. - * If a request is consistently failing and you have verified that the - * request is properly formulated, you may use this value to report the - * error to Microsoft. In your report, include the value of this request - * ID, the approximate time that the request was made, the Batch Account - * against which the request was made, and the region that Account resides - * in. - */ - @JsonProperty(value = "request-id") - private UUID requestId; - - /** - * The ETag HTTP response header. This is an opaque string. You can use it - * to detect whether the resource has changed between requests. In - * particular, you can pass the ETag to one of the If-Modified-Since, - * If-Unmodified-Since, If-Match or If-None-Match headers. - */ - @JsonProperty(value = "ETag") - private String eTag; - - /** - * The time at which the resource was last modified. - */ - @JsonProperty(value = "Last-Modified") - private DateTimeRfc1123 lastModified; - - /** - * Get the client-request-id provided by the client during the request. This will be returned only if the return-client-request-id parameter was set to true. - * - * @return the clientRequestId value - */ - public UUID clientRequestId() { - return this.clientRequestId; - } - - /** - * Set the client-request-id provided by the client during the request. This will be returned only if the return-client-request-id parameter was set to true. - * - * @param clientRequestId the clientRequestId value to set - * @return the PoolGetAllLifetimeStatisticsHeaders object itself. - */ - public PoolGetAllLifetimeStatisticsHeaders withClientRequestId(UUID clientRequestId) { - this.clientRequestId = clientRequestId; - return this; - } - - /** - * Get a unique identifier for the request that was made to the Batch service. If a request is consistently failing and you have verified that the request is properly formulated, you may use this value to report the error to Microsoft. In your report, include the value of this request ID, the approximate time that the request was made, the Batch Account against which the request was made, and the region that Account resides in. - * - * @return the requestId value - */ - public UUID requestId() { - return this.requestId; - } - - /** - * Set a unique identifier for the request that was made to the Batch service. If a request is consistently failing and you have verified that the request is properly formulated, you may use this value to report the error to Microsoft. In your report, include the value of this request ID, the approximate time that the request was made, the Batch Account against which the request was made, and the region that Account resides in. - * - * @param requestId the requestId value to set - * @return the PoolGetAllLifetimeStatisticsHeaders object itself. - */ - public PoolGetAllLifetimeStatisticsHeaders withRequestId(UUID requestId) { - this.requestId = requestId; - return this; - } - - /** - * Get the ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Modified-Since, If-Unmodified-Since, If-Match or If-None-Match headers. - * - * @return the eTag value - */ - public String eTag() { - return this.eTag; - } - - /** - * Set the ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Modified-Since, If-Unmodified-Since, If-Match or If-None-Match headers. - * - * @param eTag the eTag value to set - * @return the PoolGetAllLifetimeStatisticsHeaders object itself. - */ - public PoolGetAllLifetimeStatisticsHeaders withETag(String eTag) { - this.eTag = eTag; - return this; - } - - /** - * Get the time at which the resource was last modified. - * - * @return the lastModified value - */ - public DateTime lastModified() { - if (this.lastModified == null) { - return null; - } - return this.lastModified.dateTime(); - } - - /** - * Set the time at which the resource was last modified. - * - * @param lastModified the lastModified value to set - * @return the PoolGetAllLifetimeStatisticsHeaders object itself. - */ - public PoolGetAllLifetimeStatisticsHeaders withLastModified(DateTime lastModified) { - if (lastModified == null) { - this.lastModified = null; - } else { - this.lastModified = new DateTimeRfc1123(lastModified); - } - return this; - } - -} diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolGetAllLifetimeStatisticsOptions.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolGetAllLifetimeStatisticsOptions.java deleted file mode 100644 index 8074e3c2c28c..000000000000 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolGetAllLifetimeStatisticsOptions.java +++ /dev/null @@ -1,136 +0,0 @@ -/** - * 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 java.util.UUID; -import com.microsoft.rest.DateTimeRfc1123; -import org.joda.time.DateTime; -import com.fasterxml.jackson.annotation.JsonProperty; - -/** - * Additional parameters for getAllLifetimeStatistics operation. - */ -public class PoolGetAllLifetimeStatisticsOptions { - /** - * The maximum time that the server can spend processing the request, in - * seconds. The default is 30 seconds. - */ - @JsonProperty(value = "") - private Integer timeout; - - /** - * The caller-generated request identity, in the form of a GUID with no - * decoration such as curly braces, e.g. - * 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0. - */ - @JsonProperty(value = "") - private UUID clientRequestId; - - /** - * Whether the server should return the client-request-id in the response. - */ - @JsonProperty(value = "") - private Boolean returnClientRequestId; - - /** - * The time the request was issued. Client libraries typically set this to - * the current system clock time; set it explicitly if you are calling the - * REST API directly. - */ - @JsonProperty(value = "") - private DateTimeRfc1123 ocpDate; - - /** - * Get the maximum time that the server can spend processing the request, in seconds. The default is 30 seconds. - * - * @return the timeout value - */ - public Integer timeout() { - return this.timeout; - } - - /** - * Set the maximum time that the server can spend processing the request, in seconds. The default is 30 seconds. - * - * @param timeout the timeout value to set - * @return the PoolGetAllLifetimeStatisticsOptions object itself. - */ - public PoolGetAllLifetimeStatisticsOptions withTimeout(Integer timeout) { - this.timeout = timeout; - return this; - } - - /** - * Get the caller-generated request identity, in the form of a GUID with no decoration such as curly braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0. - * - * @return the clientRequestId value - */ - public UUID clientRequestId() { - return this.clientRequestId; - } - - /** - * Set the caller-generated request identity, in the form of a GUID with no decoration such as curly braces, e.g. 9C4D50EE-2D56-4CD3-8152-34347DC9F2B0. - * - * @param clientRequestId the clientRequestId value to set - * @return the PoolGetAllLifetimeStatisticsOptions object itself. - */ - public PoolGetAllLifetimeStatisticsOptions withClientRequestId(UUID clientRequestId) { - this.clientRequestId = clientRequestId; - return this; - } - - /** - * Get whether the server should return the client-request-id in the response. - * - * @return the returnClientRequestId value - */ - public Boolean returnClientRequestId() { - return this.returnClientRequestId; - } - - /** - * Set whether the server should return the client-request-id in the response. - * - * @param returnClientRequestId the returnClientRequestId value to set - * @return the PoolGetAllLifetimeStatisticsOptions object itself. - */ - public PoolGetAllLifetimeStatisticsOptions withReturnClientRequestId(Boolean returnClientRequestId) { - this.returnClientRequestId = returnClientRequestId; - return this; - } - - /** - * Get the time the request was issued. Client libraries typically set this to the current system clock time; set it explicitly if you are calling the REST API directly. - * - * @return the ocpDate value - */ - public DateTime ocpDate() { - if (this.ocpDate == null) { - return null; - } - return this.ocpDate.dateTime(); - } - - /** - * Set the time the request was issued. Client libraries typically set this to the current system clock time; set it explicitly if you are calling the REST API directly. - * - * @param ocpDate the ocpDate value to set - * @return the PoolGetAllLifetimeStatisticsOptions object itself. - */ - public PoolGetAllLifetimeStatisticsOptions withOcpDate(DateTime ocpDate) { - if (ocpDate == null) { - this.ocpDate = null; - } else { - this.ocpDate = new DateTimeRfc1123(ocpDate); - } - return this; - } - -} diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolPatchParameter.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolPatchParameter.java index 34972b8cbce8..af4132f46519 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolPatchParameter.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolPatchParameter.java @@ -37,6 +37,11 @@ public class PoolPatchParameter { * location. For Certificates with visibility of 'remoteUser', a 'certs' * directory is created in the user's home directory (e.g., * /home/{user-name}/certs) and Certificates are placed in that directory. + * + * Warning: This property is deprecated and will be removed after February, + * 2024. Please use the [Azure KeyVault + * Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) + * instead. */ @JsonProperty(value = "certificateReferences") private List certificateReferences; @@ -94,6 +99,7 @@ public PoolPatchParameter withStartTask(StartTask startTask) { /** * Get if this element is present, it replaces any existing Certificate references configured on the Pool. If omitted, any existing Certificate references are left unchanged. For Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @return the certificateReferences value */ @@ -103,6 +109,7 @@ public List certificateReferences() { /** * Set if this element is present, it replaces any existing Certificate references configured on the Pool. If omitted, any existing Certificate references are left unchanged. For Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateReferences the certificateReferences value to set * @return the PoolPatchParameter object itself. 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 9fa28351c927..8cfad464b66d 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 @@ -169,6 +169,11 @@ public class PoolSpecification { * 'remoteUser', a 'certs' directory is created in the user's home * directory (e.g., /home/{user-name}/certs) and Certificates are placed in * that directory. + * + * Warning: This property is deprecated and will be removed after February, + * 2024. Please use the [Azure KeyVault + * Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) + * instead. */ @JsonProperty(value = "certificateReferences") private List certificateReferences; @@ -530,6 +535,7 @@ public PoolSpecification withStartTask(StartTask startTask) { /** * Get for Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @return the certificateReferences value */ @@ -539,6 +545,7 @@ public List certificateReferences() { /** * Set for Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateReferences the certificateReferences value to set * @return the PoolSpecification object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolUpdatePropertiesParameter.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolUpdatePropertiesParameter.java index d8956885aa44..03718f632126 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolUpdatePropertiesParameter.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/PoolUpdatePropertiesParameter.java @@ -37,6 +37,11 @@ public class PoolUpdatePropertiesParameter { * location. For Certificates with visibility of 'remoteUser', a 'certs' * directory is created in the user's home directory (e.g., * /home/{user-name}/certs) and Certificates are placed in that directory. + * + * Warning: This property is deprecated and will be removed after February, + * 2024. Please use the [Azure KeyVault + * Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) + * instead. */ @JsonProperty(value = "certificateReferences", required = true) private List certificateReferences; @@ -96,6 +101,7 @@ public PoolUpdatePropertiesParameter withStartTask(StartTask startTask) { /** * Get this list replaces any existing Certificate references configured on the Pool. If you specify an empty collection, any existing Certificate references are removed from the Pool. For Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @return the certificateReferences value */ @@ -105,6 +111,7 @@ public List certificateReferences() { /** * Set this list replaces any existing Certificate references configured on the Pool. If you specify an empty collection, any existing Certificate references are removed from the Pool. For Windows Nodes, the Batch service installs the Certificates to the specified Certificate store and location. For Linux Compute Nodes, the Certificates are stored in a directory inside the Task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the Task to query for this location. For Certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and Certificates are placed in that directory. + Warning: This property is deprecated and will be removed after February, 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. * * @param certificateReferences the certificateReferences value to set * @return the PoolUpdatePropertiesParameter object itself. diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/VMExtension.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/VMExtension.java index 8b89248c6198..db78e0342992 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/VMExtension.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/VMExtension.java @@ -48,6 +48,13 @@ public class VMExtension { @JsonProperty(value = "autoUpgradeMinorVersion") private Boolean autoUpgradeMinorVersion; + /** + * Indicates whether the extension should be automatically upgraded by the + * platform if there is a newer version of the extension available. + */ + @JsonProperty(value = "enableAutomaticUpgrade") + private Boolean enableAutomaticUpgrade; + /** * JSON formatted public settings for the extension. */ @@ -169,6 +176,26 @@ public VMExtension withAutoUpgradeMinorVersion(Boolean autoUpgradeMinorVersion) return this; } + /** + * Get indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available. + * + * @return the enableAutomaticUpgrade value + */ + public Boolean enableAutomaticUpgrade() { + return this.enableAutomaticUpgrade; + } + + /** + * Set indicates whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available. + * + * @param enableAutomaticUpgrade the enableAutomaticUpgrade value to set + * @return the VMExtension object itself. + */ + public VMExtension withEnableAutomaticUpgrade(Boolean enableAutomaticUpgrade) { + this.enableAutomaticUpgrade = enableAutomaticUpgrade; + return this; + } + /** * Get the settings value. * diff --git a/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/JobTests.java b/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/JobTests.java index 837356377851..330980334821 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/JobTests.java +++ b/sdk/batch/microsoft-azure-batch/src/test/java/com/microsoft/azure/batch/JobTests.java @@ -121,7 +121,7 @@ public void canUpdateJobState() throws Exception { batchClient.jobOperations().disableJob(jobId, DisableJobOption.REQUEUE.REQUEUE); job = batchClient.jobOperations().getJob(jobId); - Assert.assertEquals(JobState.DISABLING, job.state()); + Assert.assertTrue(JobState.DISABLING == job.state() || JobState.DISABLED == job.state()); Thread.sleep(5 * 1000); job = batchClient.jobOperations().getJob(jobId); @@ -138,7 +138,7 @@ public void canUpdateJobState() throws Exception { batchClient.jobOperations().terminateJob(jobId, "myreason"); job = batchClient.jobOperations().getJob(jobId); - Assert.assertEquals(JobState.TERMINATING, job.state()); + Assert.assertTrue(JobState.TERMINATING == job.state() || JobState.COMPLETED == job.state()); Thread.sleep(2 * 1000); job = batchClient.jobOperations().getJob(jobId); 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 bb95f46a7e63..959e2642731d 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 @@ -86,7 +86,7 @@ public void canCRUDLowPriIaaSPool() throws Exception { inbounds.add(new InboundNATPool().withName("testinbound").withProtocol(InboundEndpointProtocol.TCP) .withBackendPort(5000).withFrontendPortRangeStart(60000).withFrontendPortRangeEnd(60040)); endpointConfig.withInboundNATPools(inbounds); - netConfig.withEndpointConfiguration(endpointConfig); + netConfig.withEndpointConfiguration(endpointConfig).withEnableAcceleratedNetworking(true); PoolAddParameter addParameter = new PoolAddParameter().withId(poolId) .withTargetDedicatedNodes(POOL_VM_COUNT).withTargetLowPriorityNodes(POOL_LOW_PRI_VM_COUNT) @@ -110,6 +110,7 @@ public void canCRUDLowPriIaaSPool() throws Exception { Assert.assertEquals(POOL_LOW_PRI_VM_COUNT, (long) pool.currentLowPriorityNodes()); Assert.assertNotNull("CurrentNodeCommunicationMode should be defined for pool with more than one target dedicated node", pool.currentNodeCommunicationMode()); Assert.assertEquals(NodeCommunicationMode.DEFAULT, pool.targetNodeCommunicationMode()); + Assert.assertNotNull("Should have option on whether to use accelerated networking",pool.networkConfiguration().enableAcceleratedNetworking()); List computeNodes = batchClient.computeNodeOperations().listComputeNodes(poolId); List inboundEndpoints = computeNodes.get(0).endpointConfiguration().inboundEndpoints(); @@ -198,6 +199,85 @@ public void canCRUDLowPriIaaSPool() throws Exception { } } + @Test + public void canInstallVMExtension() throws Exception { + String poolId = getStringIdWithUserNamePrefix("-installVMExtension"); + String POOL_VM_SIZE = "STANDARD_D1_V2"; + int POOL_VM_COUNT = 1; + int POOL_LOW_PRI_VM_COUNT = 1; + + String VM_EXTENSION_NAME = "secretext"; + String VM_EXTENSION_TYPE = "KeyVaultForLinux"; + String VM_EXTENSION_PUBLISHER = "Microsoft.Azure.KeyVault"; + String VM_TYPEHANDLER_VERSION = "1.0"; + + // 15 minutes + long POOL_STEADY_TIMEOUT_IN_Milliseconds = 15 * 60 * 1000; + + List vmExtensions = new ArrayList(); + vmExtensions.add(new VMExtension().withName(VM_EXTENSION_NAME).withType(VM_EXTENSION_TYPE).withPublisher(VM_EXTENSION_PUBLISHER).withTypeHandlerVersion(VM_TYPEHANDLER_VERSION).withEnableAutomaticUpgrade(true)); + ImageReference imgRef = new ImageReference().withPublisher("Canonical").withOffer("UbuntuServer") + .withSku("18.04-LTS").withVersion("latest"); + VirtualMachineConfiguration configuration = new VirtualMachineConfiguration(); + configuration.withNodeAgentSKUId("batch.node.ubuntu 18.04").withImageReference(imgRef).withExtensions(vmExtensions); + + PoolAddParameter addParameter = new PoolAddParameter().withId(poolId) + .withTargetDedicatedNodes(POOL_VM_COUNT).withTargetLowPriorityNodes(POOL_LOW_PRI_VM_COUNT) + .withVmSize(POOL_VM_SIZE).withVirtualMachineConfiguration(configuration) + .withNetworkConfiguration(networkConfiguration) + .withTargetNodeCommunicationMode(NodeCommunicationMode.DEFAULT); + batchClient.poolOperations().createPool(addParameter); + + try{ + long startTime = System.currentTimeMillis(); + long elapsedTime = 0L; + + // Wait for the VM to be allocated + CloudPool pool = waitForPoolState(poolId, AllocationState.STEADY, POOL_STEADY_TIMEOUT_IN_Milliseconds); + + Assert.assertEquals(POOL_VM_COUNT, (long) pool.currentDedicatedNodes()); + Assert.assertEquals(POOL_LOW_PRI_VM_COUNT, (long) pool.currentLowPriorityNodes()); + + List computeNodes = batchClient.computeNodeOperations().listComputeNodes(poolId); + for(ComputeNode node : computeNodes){ + NodeVMExtension nodeVMExtension = batchClient.protocolLayer().computeNodeExtensions().get(poolId, node.id(), VM_EXTENSION_NAME); + Assert.assertNotNull(nodeVMExtension); + Assert.assertNotNull("Should have the option on whether to enable vm extension auto upgrade",nodeVMExtension.vmExtension().enableAutomaticUpgrade()); + } + + // DELETE + boolean deleted = false; + batchClient.poolOperations().deletePool(poolId); + // Wait for the VM to be allocated + while (elapsedTime < POOL_STEADY_TIMEOUT_IN_Milliseconds * 2) { + try { + batchClient.poolOperations().getPool(poolId); + } catch (BatchErrorException err) { + if (err.body().code().equals(BatchErrorCodeStrings.PoolNotFound)) { + deleted = true; + break; + } else { + throw err; + } + } + + System.out.println("wait 15 seconds for pool delete..."); + threadSleepInRecordMode(15 * 1000); + elapsedTime = (new Date()).getTime() - startTime; + } + Assert.assertTrue(deleted); + }finally { + try { + if (batchClient.poolOperations().existsPool(poolId)) { + batchClient.poolOperations().deletePool(poolId); + } + } catch (Exception e) { + // Ignore exception + } + } + + } + @Test public void canCreateDataDisk() throws Exception { String poolId = getStringIdWithUserNamePrefix("-testpool3"); @@ -299,7 +379,7 @@ public void shouldFailOnCreateContainerPoolWithRegularImage() throws Exception { .withImageReference( new ImageReference().withPublisher("Canonical").withOffer("UbuntuServer").withSku("18.04-LTS")) .withNodeAgentSKUId("batch.node.ubuntu 18.04") - .withContainerConfiguration(new ContainerConfiguration().withContainerImageNames(images)); + .withContainerConfiguration(new ContainerConfiguration().withContainerImageNames(images).withType(ContainerType.DOCKER_COMPATIBLE)); PoolAddParameter poolConfig = new PoolAddParameter() .withId(poolId) .withVmSize(POOL_VM_SIZE) From 4fefa887f60fc26ce79c4d8c80b3b4a72adb6c69 Mon Sep 17 00:00:00 2001 From: ljiaqi Date: Tue, 23 May 2023 05:56:15 +0000 Subject: [PATCH 2/8] Regenerated batch data plane test recordings following 2023-05-01 API changes --- .../resources/test-recordings/canCRUDJob.json | 125 +- .../test-recordings/canCRUDJobSchedule.json | 146 +- ...nCRUDJobWithPoolNodeCommunicationMode.json | 84 +- .../canCRUDLowPriIaaSPool.json | 497 ++---- .../canCRUDLowPriPaaSPool.json | 535 +++--- .../test-recordings/canCRUDPaaSPool.json | 1583 ++++++++--------- .../test-recordings/canCRUDTest.json | 216 +-- ...canCreateCustomImageWithExpectedError.json | 25 +- .../test-recordings/canCreateDataDisk.json | 68 +- .../canInstallVMExtension.json | 364 ++++ .../test-recordings/canReadFromNode.json | 147 +- .../test-recordings/canReadFromTaskFile.json | 130 +- .../canUpdateJobScheduleState.json | 195 +- .../test-recordings/canUpdateJobState.json | 251 ++- ...ailCreateContainerTaskWithRegularPool.json | 49 +- .../failIfPoisonTaskTooLarge.json | 44 +- ...OnCreateContainerPoolWithRegularImage.json | 25 +- ...ailOnCreateLinuxPoolWithWindowsConfig.json | 25 +- .../test-recordings/testGetTaskCounts.json | 316 ++-- .../test-recordings/testJobUser.json | 66 +- .../test-recordings/testOutputFiles.json | 154 +- .../test-recordings/testPoolOData.json | 43 +- 22 files changed, 2534 insertions(+), 2554 deletions(-) create mode 100644 sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canInstallVMExtension.json 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 066a5ba99dd5..501e73ecf606 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,133 +1,127 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:00 GMT", + "date" : "Tue, 23 May 2023 03:28:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "78a61f46-1ca6-419e-b82a-7751575d7384", + "request-id" : "19ccc8b5-7c22-42f0-8c90-f524ffcf5ea8", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:01 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:51 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "03d13f33-69a0-4d78-9213-938a9d473838", - "etag" : "0x8DAC6B98A0D3059", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "2125806e-d161-4fe8-9af0-b38ba6815fd1", + "etag" : "0x8DB5B3DD414D35F", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:01 GMT", + "date" : "Tue, 23 May 2023 03:28:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "b39b784b-9b3e-4d54-a640-4a1a83332ef1", + "request-id" : "1165420c-04fc-4676-9bcc-658364a3f795", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:01 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:51 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "bb12e215-d00c-4c86-bcb1-699672f5a2e1", + "client-request-id" : "3c67691e-2591-4859-9620-ea1f59ea0a24", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98A0D3059", + "etag" : "0x8DB5B3DD414D35F", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8DAC6B98A0D3059\",\"lastModified\":\"2022-11-15T03:29:01.3716057Z\",\"creationTime\":\"2022-11-15T03:29:01.355602Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:29:01.3716057Z\",\"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-11-15T03:29:01.3716057Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8DB5B3DD414D35F\",\"lastModified\":\"2023-05-23T03:28:51.2324447Z\",\"creationTime\":\"2023-05-23T03:28:51.219443Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:28:51.2324447Z\",\"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\":\"2023-05-23T03:28:51.2324447Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:01 GMT", + "date" : "Tue, 23 May 2023 03:28:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "44f22e37-4aeb-4039-97d4-60714ace1b98", + "client-request-id" : "99e9a86c-9915-41b9-9591-2680a28e9295", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "e7616ca9-0035-4012-8391-82681c86f33a", + "request-id" : "6bab073c-b52e-4e5e-aa47-4c16b54e4eb1", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8DAC6B98A0D3059\",\"lastModified\":\"2022-11-15T03:29:01.3716057Z\",\"creationTime\":\"2022-11-15T03:29:01.355602Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:29:01.3716057Z\",\"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-11-15T03:29:01.3716057Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-Job-canReadFromNode\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode\",\"eTag\":\"0x8DAC6B97BDD03BE\",\"lastModified\":\"2022-11-15T03:28:37.5677886Z\",\"creationTime\":\"2022-11-15T03:28:37.5487871Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T03:28:48.8824843Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:28:37.5677886Z\",\"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-11-15T03:28:37.5677886Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-Job-canReadFromTaskFile\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile\",\"eTag\":\"0x8DAC6B97448A44B\",\"lastModified\":\"2022-11-15T03:28:24.8513611Z\",\"creationTime\":\"2022-11-15T03:28:24.8353705Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T03:28:36.2353683Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:28:24.8513611Z\",\"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-11-15T03:28:24.8513611Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8DAC6B9848978C5\",\"lastModified\":\"2022-11-15T03:28:52.1197765Z\",\"creationTime\":\"2022-11-15T03:28:52.0267761Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-11-15T03:28:54.0127674Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:28:52.1197765Z\",\"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-11-15T03:28:52.1197765Z\",\"endTime\":\"2022-11-15T03:28:54.0127674Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"TerminateWorkitem\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8DB5B3DD414D35F\",\"lastModified\":\"2023-05-23T03:28:51.2324447Z\",\"creationTime\":\"2023-05-23T03:28:51.219443Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:28:51.2324447Z\",\"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\":\"2023-05-23T03:28:51.2324447Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"job\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job\",\"eTag\":\"0x8DB583E196EF817\",\"lastModified\":\"2023-05-19T07:53:14.0976663Z\",\"creationTime\":\"2023-05-19T07:50:40.2581568Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2023-05-19T07:53:14.1166642Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-19T07:50:40.270147Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"commonEnvironmentSettings\":[],\"poolInfo\":{\r\n \"poolId\":\"ljq\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2023-05-19T07:50:40.270147Z\",\"poolId\":\"ljq\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n },{\r\n \"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"eTag\":\"0x8DB5B3D74887719\",\"lastModified\":\"2023-05-23T03:26:10.9290265Z\",\"creationTime\":\"2023-05-23T03:26:10.9160587Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2023-05-23T03:26:12.103485Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:26:10.9290265Z\",\"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\":\"2023-05-23T03:26:10.9290265Z\",\"endTime\":\"2023-05-23T03:26:12.103485Z\",\"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://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:01 GMT", + "date" : "Tue, 23 May 2023 03:28:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD", "retry-after" : "0", - "request-id" : "97091541-bb27-46d4-ba57-1581ddd3d08e", + "request-id" : "0fcb485b-4e4a-40f4-997c-0ba712a89d78", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:01 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:51 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e9a3bcb3-b42d-4227-9743-61e0d2244530", - "etag" : "0x8DAC6B98A510F28", + "client-request-id" : "e4086120-8ebf-49ef-ba18-67ff4f75cc99", + "etag" : "0x8DB5B3DD47AD624", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:01 GMT", + "date" : "Tue, 23 May 2023 03:28:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "adffcf1f-caf9-4b34-9b07-1995d05c8356", + "request-id" : "19bba410-d80b-4f7f-af20-881e61912ef2", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:01 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:51 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "dba67e7d-826f-4b71-ab3d-bdea7ec1d8db", + "client-request-id" : "a80f8c84-05bc-4a99-b21e-5d0a1aede3b7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98A510F28", + "etag" : "0x8DB5B3DD47AD624", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8DAC6B98A510F28\",\"lastModified\":\"2022-11-15T03:29:01.8164008Z\",\"creationTime\":\"2022-11-15T03:29:01.355602Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:29:01.3716057Z\",\"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-11-15T03:29:01.3716057Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8DB5B3DD47AD624\",\"lastModified\":\"2023-05-23T03:28:51.9009828Z\",\"creationTime\":\"2023-05-23T03:28:51.219443Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:28:51.2324447Z\",\"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\":\"2023-05-23T03:28:51.2324447Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:01 GMT", + "date" : "Tue, 23 May 2023 03:28:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "6df05409-f498-4096-83c4-eac533492111", + "client-request-id" : "a549c418-c4ce-4447-abd9-8d1d06c68ebb", "retry-after" : "0", - "request-id" : "55a7c2df-9087-49ba-943f-3d83326563bb", + "request-id" : "cddae2f3-74ca-404f-8b5c-b56de7028b46", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -135,46 +129,45 @@ } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:01 GMT", + "date" : "Tue, 23 May 2023 03:28:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "933d57f6-7c16-4b0d-ad91-7bf86d554945", + "request-id" : "0c41c11b-14d4-4280-95a9-d07ead3c96e8", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:01 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:51 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "25b2a8df-31ec-4b1d-b053-9cd8fd99794f", + "client-request-id" : "d2171986-1098-4c20-9dd1-df50ab43b440", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98A510F28", + "etag" : "0x8DB5B3DD47AD624", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8DAC6B98A510F28\",\"lastModified\":\"2022-11-15T03:29:01.8164008Z\",\"creationTime\":\"2022-11-15T03:29:01.355602Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T03:29:02.0347366Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:29:01.3716057Z\",\"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-11-15T03:29:01.3716057Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUD\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD\",\"eTag\":\"0x8DB5B3DD47AD624\",\"lastModified\":\"2023-05-23T03:28:51.9009828Z\",\"creationTime\":\"2023-05-23T03:28:51.219443Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T03:28:52.314393Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:28:51.2324447Z\",\"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\":\"2023-05-23T03:28:51.2324447Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:02 GMT", - "content-length" : "375", + "date" : "Tue, 23 May 2023 03:28:53 GMT", + "content-length" : "390", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "619e3e03-dff1-4ed0-88eb-3bfee74ad883", + "client-request-id" : "13fa6cc2-466c-4f94-aa0a-a5cfee086d22", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "be5ea43f-db40-457b-af6f-dfccc9318888", + "request-id" : "5b6344a9-f49d-47d0-a34a-688a56cd31d1", "StatusCode" : "409", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:be5ea43f-db40-457b-af6f-dfccc9318888\\nTime:2022-11-15T03:29:03.2656688Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:5b6344a9-f49d-47d0-a34a-688a56cd31d1\\nTime:2023-05-23T03:28:53.7684183Z\"\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 b5a60a60b4ae..0610a981ed4d 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,155 +1,148 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:55 GMT", + "date" : "Tue, 23 May 2023 03:26:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", "retry-after" : "0", - "request-id" : "cb4e2bc9-0689-41b8-b8f4-53e3b991100d", + "request-id" : "696ccbf6-4791-457b-b5f2-4114cbbb46e9", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:56 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:16 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "7deff016-fd40-4c36-8719-a2cdf42599a2", - "etag" : "0x8DAC6B9871613B1", - "location" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", + "client-request-id" : "ad483e23-cbfd-4e64-95c2-2bf4be0b8545", + "etag" : "0x8DB5B3D77CA4743", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:55 GMT", + "date" : "Tue, 23 May 2023 03:26:16 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", + "x-content-type-options" : "nosniff", + "client-request-id" : "1361e358-a6bf-4f46-98c1-c7b1c64f350e", + "etag" : "0x8DB5B3D77CA4743", "retry-after" : "0", - "request-id" : "c6a1ad33-c4e5-4aed-93a2-5bf1f8ceaf9e", + "request-id" : "920374e4-8ed1-4152-8763-32ddc3127ddc", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:56 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "69a76519-9c1f-4136-8e0d-bc1ab05d69d7", - "etag" : "0x8DAC6B9871613B1", "dataserviceversion" : "3.0", - "Body" : "" + "Body" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:56 GMT", + "date" : "Tue, 23 May 2023 03:26:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "17a17533-41bd-47d5-a192-7df44ef0953d", + "request-id" : "6c54bd0b-e17c-4b89-b36f-c0b25985846c", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:56 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:16 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a942b0bb-adc3-483d-b57c-71fb1a8d3851", + "client-request-id" : "09c3ab46-45ec-4906-adec-a7c373e1a363", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B9871613B1", + "etag" : "0x8DB5B3D77CA4743", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8DAC6B9871613B1\",\"lastModified\":\"2022-11-15T03:28:56.3966897Z\",\"creationTime\":\"2022-11-15T03:28:56.3966897Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:28:56.3966897Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-11-15T03:28:55.625Z\",\"doNotRunAfter\":\"2022-11-15T08:28:55.625Z\",\"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://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8DB5B3D77CA4743\",\"lastModified\":\"2023-05-23T03:26:16.3935043Z\",\"creationTime\":\"2023-05-23T03:26:16.3935043Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:26:16.3935043Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2023-05-23T03:26:15.055Z\",\"doNotRunAfter\":\"2023-05-23T08:26:15.055Z\",\"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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobschedules?api-version=2022-10-01.16.0&%24filter=id%20eq%20%27BatchUser-JobSchedule-canCRUD%27", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules?api-version=2023-05-01.17.0&%24filter=id%20eq%20%27BatchUser-JobSchedule-canCRUD%27", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:56 GMT", + "date" : "Tue, 23 May 2023 03:26:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "71a3e358-5b5b-4b7c-9e2b-7827602d7bd4", + "client-request-id" : "3c8bebc0-7a91-4ffe-9e30-7e6dd349d8d8", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "ae993559-d237-4cea-a633-c0fa05356715", + "request-id" : "4da0e806-0817-444d-aed4-58f4f62da43b", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobschedules\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8DAC6B9871613B1\",\"lastModified\":\"2022-11-15T03:28:56.3966897Z\",\"creationTime\":\"2022-11-15T03:28:56.3966897Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:28:56.3966897Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-11-15T03:28:55.625Z\",\"doNotRunAfter\":\"2022-11-15T08:28:55.625Z\",\"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://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobschedules\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8DB5B3D77CA4743\",\"lastModified\":\"2023-05-23T03:26:16.3935043Z\",\"creationTime\":\"2023-05-23T03:26:16.3935043Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:26:16.3935043Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2023-05-23T03:26:15.055Z\",\"doNotRunAfter\":\"2023-05-23T08:26:15.055Z\",\"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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:56 GMT", + "date" : "Tue, 23 May 2023 03:26:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD", "retry-after" : "0", - "request-id" : "56afbf0a-9714-441e-9f61-f8a4f02a077b", + "request-id" : "57105ddf-19c0-470c-bd8b-eab61cb1ae69", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:56 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ca063c33-8efc-49f0-afb4-fdfd126ea474", - "etag" : "0x8DAC6B9876CB784", + "client-request-id" : "35097572-fcb9-4375-9529-103708ff3abf", + "etag" : "0x8DB5B3D784072C3", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:56 GMT", + "date" : "Tue, 23 May 2023 03:26:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "f5523565-7268-4377-a519-a42935559511", + "request-id" : "4303e960-11bd-464f-bc03-0e38889a2144", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:56 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a2da7c0a-7608-49aa-91df-6564c256b6d3", + "client-request-id" : "7b6635d5-024f-43b9-b082-ad72fe99f866", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B9876CB784", + "etag" : "0x8DB5B3D784072C3", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8DAC6B9876CB784\",\"lastModified\":\"2022-11-15T03:28:56.9644932Z\",\"creationTime\":\"2022-11-15T03:28:56.3966897Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:28:56.3966897Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-11-15T03:28:55.625Z\",\"doNotRunAfter\":\"2022-11-15T08:28:55.625Z\",\"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://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8DB5B3D784072C3\",\"lastModified\":\"2023-05-23T03:26:17.1679427Z\",\"creationTime\":\"2023-05-23T03:26:16.3935043Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:26:16.3935043Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2023-05-23T03:26:15.055Z\",\"doNotRunAfter\":\"2023-05-23T08:26:15.055Z\",\"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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:56 GMT", + "date" : "Tue, 23 May 2023 03:26:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "205b8fbf-aa6a-493f-a17b-5ef8d9f3a5c4", + "client-request-id" : "04cc2ca4-c47c-45e4-974c-f2da3cee2e92", "retry-after" : "0", - "request-id" : "1a6cf75f-05c4-4e8e-8e88-a728ed3d7596", + "request-id" : "7ab97546-fc77-4dfe-8542-d515183ff622", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -157,46 +150,45 @@ } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:56 GMT", + "date" : "Tue, 23 May 2023 03:26:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "ffa472a1-4e7d-405a-805a-32ca941a44a4", + "request-id" : "3e4c2437-63ce-4d02-9903-ea5636fb795a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:56 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "1487aaa4-077e-47f0-b41d-21bd80682843", + "client-request-id" : "61aefb10-0f66-4ffc-8250-3f5a0dcb83c7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B9876CB784", + "etag" : "0x8DB5B3D784072C3", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8DAC6B9876CB784\",\"lastModified\":\"2022-11-15T03:28:56.9644932Z\",\"creationTime\":\"2022-11-15T03:28:56.3966897Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T03:28:57.2063406Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:28:56.3966897Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-11-15T03:28:55.625Z\",\"doNotRunAfter\":\"2022-11-15T08:28:55.625Z\",\"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://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-canCRUD\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD\",\"eTag\":\"0x8DB5B3D784072C3\",\"lastModified\":\"2023-05-23T03:26:17.1679427Z\",\"creationTime\":\"2023-05-23T03:26:16.3935043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T03:26:17.5470266Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:26:16.3935043Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2023-05-23T03:26:15.055Z\",\"doNotRunAfter\":\"2023-05-23T08:26:15.055Z\",\"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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-canCRUD?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:57 GMT", - "content-length" : "384", + "date" : "Tue, 23 May 2023 03:26:18 GMT", + "content-length" : "399", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "480829bf-6ad8-4c5c-b7a9-82dc1f479f7d", + "client-request-id" : "353e0af7-e31d-486a-844a-e3314ade6f78", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "3ef0ec9b-4eff-4c2a-9a97-dc51113cbb9d", + "request-id" : "b550c14e-6ed5-4914-aa9a-9630d36106c7", "StatusCode" : "409", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:3ef0ec9b-4eff-4c2a-9a97-dc51113cbb9d\\nTime:2022-11-15T03:28:58.4267820Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:b550c14e-6ed5-4914-aa9a-9630d36106c7\\nTime:2023-05-23T03:26:18.9088488Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } } ], diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJobWithPoolNodeCommunicationMode.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJobWithPoolNodeCommunicationMode.json index 0a0503e436b3..3d8632a230ff 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJobWithPoolNodeCommunicationMode.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCRUDJobWithPoolNodeCommunicationMode.json @@ -1,66 +1,63 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:14 GMT", + "date" : "Tue, 23 May 2023 03:29:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "bfb70b34-1b73-4a7b-991b-ca86cac2a9b5", + "request-id" : "cae27a17-97a0-4fc8-a2a6-11309d5698b1", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:14 GMT", + "last-modified" : "Tue, 23 May 2023 03:29:06 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "33e74bb2-c01a-4ac5-828a-ce99a55bce73", - "etag" : "0x8DAC6B992130EFD", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "dc32bbd5-c52d-46e3-82bf-cebed68112e4", + "etag" : "0x8DB5B3DDD2997DA", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:14 GMT", + "date" : "Tue, 23 May 2023 03:29:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "1afe59d3-b2c9-40de-ae8f-89e0490864f7", + "request-id" : "214d7a7a-350a-40eb-987c-5998c8a55bbe", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:14 GMT", + "last-modified" : "Tue, 23 May 2023 03:29:06 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "455cd97f-7a59-40b6-abea-6907fc20cd80", + "client-request-id" : "58b1796c-a362-440c-aa2d-71807e78b43d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B992130EFD", + "etag" : "0x8DB5B3DDD2997DA", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUDWithPoolNodeComm\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm\",\"eTag\":\"0x8DAC6B992130EFD\",\"lastModified\":\"2022-11-15T03:29:14.8318461Z\",\"creationTime\":\"2022-11-15T03:29:14.7808463Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:29:14.8318461Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"autoPoolSpecification\":{\r\n \"poolLifetimeOption\":\"job\",\"keepAlive\":false,\"pool\":{\r\n \"vmSize\":\"standard_d1_v2\",\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"resizeTimeout\":\"PT15M\",\"targetDedicatedNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"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 },\"targetNodeCommunicationMode\":\"simplified\"\r\n }\r\n }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-11-15T03:29:14.8318461Z\",\"poolId\":\"C15D0760-3E08-435B-970B-135FC2678EDC\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUDWithPoolNodeComm\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm\",\"eTag\":\"0x8DB5B3DDD2997DA\",\"lastModified\":\"2023-05-23T03:29:06.468041Z\",\"creationTime\":\"2023-05-23T03:29:06.4550439Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:29:06.468041Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"autoPoolSpecification\":{\r\n \"poolLifetimeOption\":\"job\",\"keepAlive\":false,\"pool\":{\r\n \"vmSize\":\"standard_d1_v2\",\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"resizeTimeout\":\"PT15M\",\"targetDedicatedNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"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 },\"targetNodeCommunicationMode\":\"simplified\"\r\n }\r\n }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2023-05-23T03:29:06.468041Z\",\"poolId\":\"A1697F8D-8A0C-4CBD-9D15-C8AC61E1A730\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:14 GMT", + "date" : "Tue, 23 May 2023 03:29:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "ecfe84d5-4750-412e-a738-9462e00a9af4", + "client-request-id" : "1c714591-188e-4131-8042-5ab1f4920ced", "retry-after" : "0", - "request-id" : "f353ba34-ab94-4e87-8ef5-8f2ba1a47cc5", + "request-id" : "90594e04-8e5d-4d3a-aee1-83c02c44ba5e", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -68,44 +65,45 @@ } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:14 GMT", - "content-length" : "326", + "date" : "Tue, 23 May 2023 03:29:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "121677c0-4b42-4e04-9eef-7cb6a6de79ac", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 03:29:06 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9df5997f-ddfa-43ac-b159-7e3b62edcc81", + "client-request-id" : "012c9fa1-0c75-4108-8f22-bf483b0788f5", "content-type" : "application/json;odata=minimalmetadata", - "retry-after" : "0", - "request-id" : "d4ac4967-9af6-41cf-89d3-6fd3e570662b", - "StatusCode" : "404", + "etag" : "0x8DB5B3DDD2997DA", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"JobNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified job does not exist.\\nRequestId:d4ac4967-9af6-41cf-89d3-6fd3e570662b\\nTime:2022-11-15T03:29:15.2167571Z\"\r\n }\r\n}", - "strict-transport-security" : "max-age=31536000; includeSubDomains" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-canCRUDWithPoolNodeComm\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm\",\"eTag\":\"0x8DB5B3DDD2997DA\",\"lastModified\":\"2023-05-23T03:29:06.468041Z\",\"creationTime\":\"2023-05-23T03:29:06.4550439Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T03:29:06.8414942Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:29:06.468041Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":0\r\n },\"poolInfo\":{\r\n \"autoPoolSpecification\":{\r\n \"poolLifetimeOption\":\"job\",\"keepAlive\":false,\"pool\":{\r\n \"vmSize\":\"standard_d1_v2\",\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"resizeTimeout\":\"PT15M\",\"targetDedicatedNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"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 },\"targetNodeCommunicationMode\":\"simplified\"\r\n }\r\n }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2023-05-23T03:29:06.468041Z\",\"poolId\":\"A1697F8D-8A0C-4CBD-9D15-C8AC61E1A730\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canCRUDWithPoolNodeComm?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:15 GMT", - "content-length" : "326", + "date" : "Tue, 23 May 2023 03:29:08 GMT", + "content-length" : "390", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "9fe224d3-c6da-4e43-87df-8c3934ddbf8b", + "client-request-id" : "dae40f27-b4e6-4af2-8078-319f0ba24708", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "66ed4661-295c-4777-ab86-529c989461dc", - "StatusCode" : "404", + "request-id" : "a911a593-31f0-426d-b272-9431efc9d067", + "StatusCode" : "409", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"JobNotFound\",\"message\":{\r\n \"lang\":\"en-US\",\"value\":\"The specified job does not exist.\\nRequestId:66ed4661-295c-4777-ab86-529c989461dc\\nTime:2022-11-15T03:29:16.3479337Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:a911a593-31f0-426d-b272-9431efc9d067\\nTime:2023-05-23T03:29:08.2084408Z\"\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 bbc4c182f155..d39af8af0038 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,19 +1,18 @@ { "networkCallRecords" : [ { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:23:44 GMT", + "date" : "Tue, 23 May 2023 04:39:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "ef61daad-1c1a-47c6-adb7-9ee30fbd74db", + "client-request-id" : "a7bd289e-e2c4-440c-a632-2726f00a03a2", "retry-after" : "0", - "request-id" : "f3b53b04-085a-47ca-ab83-9d888ef91242", + "request-id" : "9a361dea-64b5-413e-ae80-664ecea93915", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", @@ -21,337 +20,301 @@ } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:23:46 GMT", + "date" : "Tue, 23 May 2023 04:39:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool", "retry-after" : "0", - "request-id" : "69f323f8-25a5-4757-b04f-2652a2c66a38", + "request-id" : "a163b698-b3ea-4437-8d31-40a29cc551cc", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:23:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:39:40 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "8400ccec-9e2f-4e40-92bd-940126571d04", - "etag" : "0x8DAC8D13F8FDD8A", - "location" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool", + "client-request-id" : "14957ea6-352c-493a-83b0-373a94804c0c", + "etag" : "0x8DB5B47B8D1DC99", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:23:46 GMT", + "date" : "Tue, 23 May 2023 04:39:40 GMT", + "last-modified" : "Tue, 23 May 2023 04:39:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "retry-after" : "0", - "request-id" : "e3506522-715c-4f00-b11c-07dd2ec0d7b5", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:23:46 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "08a3bbc9-229d-4535-958d-05df692686ac", - "etag" : "0x8DAC8D13F8FDD8A", - "dataserviceversion" : "3.0", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Nov 2022 19:23:46 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", + "client-request-id" : "fe28a141-e2d1-4570-b870-bd1c03a9a3fd", + "etag" : "0x8DB5B47B8D1DC99", "retry-after" : "0", - "request-id" : "28961335-d7ab-47a7-882c-69fd94685151", + "request-id" : "e151225b-3fe2-4c59-b5f1-eda2e8967457", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:23:46 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "bbcb02dd-f80c-4f2e-a76c-6991b54d83e6", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D13F8FDD8A", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D13F8FDD8A\",\"lastModified\":\"2022-11-17T19:23:46.645953Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-17T19:23:46.645953Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:23:46.645953Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"default\"\r\n}" + "Body" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:24:17 GMT", + "date" : "Tue, 23 May 2023 04:39:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "ecd5b2d3-820d-4fd0-8a99-79e239874230", + "request-id" : "479695df-4324-4205-a9b4-db7cd4cd4039", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:23:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:39:40 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6bec4837-aa10-4707-b012-40d3beebd482", + "client-request-id" : "abedd295-06ec-4ff3-aca3-c065346c9528", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D13F8FDD8A", + "etag" : "0x8DB5B47B8D1DC99", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D13F8FDD8A\",\"lastModified\":\"2022-11-17T19:23:46.645953Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-17T19:23:46.645953Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:23:46.645953Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"default\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47B8D1DC99\",\"lastModified\":\"2023-05-23T04:39:40.4624025Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:39:40.4624025Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:39:40.4624025Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"default\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:24:47 GMT", + "date" : "Tue, 23 May 2023 04:40:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "119c3243-6b37-41a5-a729-7782f7278056", + "request-id" : "46d39b88-abaa-474a-aa4e-edf4bf9a2750", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:23:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:39:40 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f3df744e-c495-48fd-b513-548a1c06fdd9", + "client-request-id" : "e9b00300-ad1a-4474-a670-7670b28c30b0", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D13F8FDD8A", + "etag" : "0x8DB5B47B8D1DC99", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D13F8FDD8A\",\"lastModified\":\"2022-11-17T19:23:46.645953Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-17T19:23:46.645953Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:23:46.645953Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"default\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47B8D1DC99\",\"lastModified\":\"2023-05-23T04:39:40.4624025Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:39:40.4624025Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:39:40.4624025Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"default\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:16 GMT", + "date" : "Tue, 23 May 2023 04:40:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "8660f8f6-97ab-4a49-8390-f1df9931d494", + "request-id" : "b3eb092e-b5e3-4ea1-a469-6cf8dbf4d755", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:23:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:39:40 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "66c43469-8f3a-484a-af82-e5e4f25c34be", + "client-request-id" : "074c268b-3c39-4faf-b7d5-719a00bc75e9", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D13F8FDD8A", + "etag" : "0x8DB5B47B8D1DC99", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D13F8FDD8A\",\"lastModified\":\"2022-11-17T19:23:46.645953Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-17T19:23:46.645953Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-17T19:24:59.4559141Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":2,\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47B8D1DC99\",\"lastModified\":\"2023-05-23T04:39:40.4624025Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:39:40.4624025Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:37.7566141Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":2,\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:16 GMT", + "date" : "Tue, 23 May 2023 04:40:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "96dc6dce-6761-4bca-91fb-e32e8ebada10", + "client-request-id" : "9c991162-dafe-460a-b048-d0a48ac105ed", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "e1324861-b48b-490c-9c6d-891c0cacf72c", + "request-id" : "9b960292-5b82-4788-8c65-7d87a0105bec", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_1b6e2e10198194f351e190ec2bb1485281be9c355fcbf2c6eee1831fec5ef4f9_d\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_1b6e2e10198194f351e190ec2bb1485281be9c355fcbf2c6eee1831fec5ef4f9_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-11-17T19:25:04.368823Z\",\"lastBootTime\":\"2022-11-17T19:25:04.277499Z\",\"allocationTime\":\"2022-11-17T19:24:47.9755073Z\",\"ipAddress\":\"10.1.0.8\",\"affinityId\":\"TVM:tvmps_1b6e2e10198194f351e190ec2bb1485281be9c355fcbf2c6eee1831fec5ef4f9_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"testinbound.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.66.98.77\",\"publicFQDN\":\"dns86ca22cd-0636-4844-a1a1-901fdfb8f639-azurebatch-cloudservice.westus.cloudapp.azure.com\",\"frontendPort\":60000,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.66.98.77\",\"publicFQDN\":\"dns86ca22cd-0636-4844-a1a1-901fdfb8f639-azurebatch-cloudservice.westus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-11-17T19:25:04.277499Z\",\"version\":\"1.9.33\"\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"18.04.202210180\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_485639cbe8778916016f4aa8e5880cbf4899a4f92eb3b8a9b46d7aa3c4afcbc5_p\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_485639cbe8778916016f4aa8e5880cbf4899a4f92eb3b8a9b46d7aa3c4afcbc5_p\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-11-17T19:25:04.511811Z\",\"lastBootTime\":\"2022-11-17T19:25:04.450324Z\",\"allocationTime\":\"2022-11-17T19:24:58.0563031Z\",\"ipAddress\":\"10.1.0.6\",\"affinityId\":\"TVM:tvmps_485639cbe8778916016f4aa8e5880cbf4899a4f92eb3b8a9b46d7aa3c4afcbc5_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.66.98.66\",\"publicFQDN\":\"dns2e22dcae-c094-4b51-b428-178b9e91e40a-azurebatch-cloudservice.westus.cloudapp.azure.com\",\"frontendPort\":60000,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.66.98.66\",\"publicFQDN\":\"dns2e22dcae-c094-4b51-b428-178b9e91e40a-azurebatch-cloudservice.westus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-11-17T19:25:04.450324Z\",\"version\":\"1.9.33\"\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"18.04.202210180\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_d4bbaff58813761d82643eedb70c55a2d9f4eb7011467d1cd9c36bd8117772f4_p\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_d4bbaff58813761d82643eedb70c55a2d9f4eb7011467d1cd9c36bd8117772f4_p\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-11-17T19:25:04.522098Z\",\"lastBootTime\":\"2022-11-17T19:25:04.438086Z\",\"allocationTime\":\"2022-11-17T19:24:58.0563031Z\",\"ipAddress\":\"10.1.0.7\",\"affinityId\":\"TVM:tvmps_d4bbaff58813761d82643eedb70c55a2d9f4eb7011467d1cd9c36bd8117772f4_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.66.98.66\",\"publicFQDN\":\"dns2e22dcae-c094-4b51-b428-178b9e91e40a-azurebatch-cloudservice.westus.cloudapp.azure.com\",\"frontendPort\":60001,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.66.98.66\",\"publicFQDN\":\"dns2e22dcae-c094-4b51-b428-178b9e91e40a-azurebatch-cloudservice.westus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-11-17T19:25:04.438086Z\",\"version\":\"1.9.33\"\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"18.04.202210180\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_f4a03eb211e09d08e92915ee8eddfa29354d60c83fd1bd077a4a715b5f974a30_d\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_f4a03eb211e09d08e92915ee8eddfa29354d60c83fd1bd077a4a715b5f974a30_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-11-17T19:25:10.392905Z\",\"lastBootTime\":\"2022-11-17T19:25:10.300224Z\",\"allocationTime\":\"2022-11-17T19:24:47.9755073Z\",\"ipAddress\":\"10.1.0.9\",\"affinityId\":\"TVM:tvmps_f4a03eb211e09d08e92915ee8eddfa29354d60c83fd1bd077a4a715b5f974a30_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"testinbound.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.66.98.77\",\"publicFQDN\":\"dns86ca22cd-0636-4844-a1a1-901fdfb8f639-azurebatch-cloudservice.westus.cloudapp.azure.com\",\"frontendPort\":60001,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.66.98.77\",\"publicFQDN\":\"dns86ca22cd-0636-4844-a1a1-901fdfb8f639-azurebatch-cloudservice.westus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-11-17T19:25:10.300224Z\",\"version\":\"1.9.33\"\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"18.04.202210180\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_16648d7689cb220a91711ddad0b7ce95c161c5cb102fceb6ebe7fe722a827d82_p\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_16648d7689cb220a91711ddad0b7ce95c161c5cb102fceb6ebe7fe722a827d82_p\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2023-05-23T04:40:37.2105035Z\",\"allocationTime\":\"2023-05-23T04:40:37.072134Z\",\"ipAddress\":\"10.0.0.8\",\"affinityId\":\"TVM:tvmps_16648d7689cb220a91711ddad0b7ce95c161c5cb102fceb6ebe7fe722a827d82_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\":\"4.255.188.166\",\"publicFQDN\":\"dnsbdf03bc1-4974-4679-9691-cf9d64159ec6-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":60000,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"4.255.188.166\",\"publicFQDN\":\"dnsbdf03bc1-4974-4679-9691-cf9d64159ec6-azurebatch-cloudservice.westcentralus.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.202305220\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_77f6f9b62da599f7b1aa804fab384da61b15916782f652d09e28c9b851341878_d\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_77f6f9b62da599f7b1aa804fab384da61b15916782f652d09e28c9b851341878_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2023-05-23T04:40:37.7965158Z\",\"allocationTime\":\"2023-05-23T04:40:37.0571304Z\",\"ipAddress\":\"10.0.0.7\",\"affinityId\":\"TVM:tvmps_77f6f9b62da599f7b1aa804fab384da61b15916782f652d09e28c9b851341878_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"testinbound.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.165.151.77\",\"publicFQDN\":\"dns3c5cfe08-d953-4822-9ace-4bca80cfc1dd-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":60001,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.165.151.77\",\"publicFQDN\":\"dns3c5cfe08-d953-4822-9ace-4bca80cfc1dd-azurebatch-cloudservice.westcentralus.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.202305220\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_7c08c55082dd00efa988788ea2adc5614bf69381dfad4f2b3f04b3404c7ccf14_d\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_7c08c55082dd00efa988788ea2adc5614bf69381dfad4f2b3f04b3404c7ccf14_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2023-05-23T04:40:37.7965158Z\",\"allocationTime\":\"2023-05-23T04:40:37.0571304Z\",\"ipAddress\":\"10.0.0.6\",\"affinityId\":\"TVM:tvmps_7c08c55082dd00efa988788ea2adc5614bf69381dfad4f2b3f04b3404c7ccf14_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"testinbound.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.165.151.77\",\"publicFQDN\":\"dns3c5cfe08-d953-4822-9ace-4bca80cfc1dd-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":60000,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.165.151.77\",\"publicFQDN\":\"dns3c5cfe08-d953-4822-9ace-4bca80cfc1dd-azurebatch-cloudservice.westcentralus.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.202305220\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_ba44a7e7c19d811285029b9736c92189de2032492354437a8cf3225374c9bfe1_p\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/nodes/tvmps_ba44a7e7c19d811285029b9736c92189de2032492354437a8cf3225374c9bfe1_p\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2023-05-23T04:40:37.2294938Z\",\"allocationTime\":\"2023-05-23T04:40:37.072134Z\",\"ipAddress\":\"10.0.0.9\",\"affinityId\":\"TVM:tvmps_ba44a7e7c19d811285029b9736c92189de2032492354437a8cf3225374c9bfe1_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\":\"4.255.188.166\",\"publicFQDN\":\"dnsbdf03bc1-4974-4679-9691-cf9d64159ec6-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":60001,\"backendPort\":5000\r\n },{\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"4.255.188.166\",\"publicFQDN\":\"dnsbdf03bc1-4974-4679-9691-cf9d64159ec6-azurebatch-cloudservice.westcentralus.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.202305220\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/nodecounts?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/nodecounts?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:17 GMT", + "date" : "Tue, 23 May 2023 04:40:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "dc45e227-ed47-4f4a-ba86-2b70a29796ee", + "client-request-id" : "817d7653-4a7d-4386-9b1c-ac432334ddcb", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "0265b9e0-3f6c-4042-bb81-d2dd5d4d57b4", + "request-id" : "8db531c0-d08a-4806-9ef4-2f916b46de48", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#poolnodecounts\",\"value\":[\r\n {\r\n \"poolId\":\"BatchUser-canCRUDLowPri-testPool\",\"dedicated\":{\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 },\"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-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 \"poolId\":\"linuxperfpool\",\"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\":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\":\"nikoudsi-pooltest\",\"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\":\"PersistOutputsSamplePool\",\"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\":\"TopNWordsPool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":3,\"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 ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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\":2,\"startTaskFailed\":0,\"unusable\":0,\"unknown\":0,\"waitingForStartTask\":0,\"total\":2\r\n },\"lowPriority\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":0,\"offline\":0,\"preempted\":0,\"rebooting\":0,\"reimaging\":0,\"running\":0,\"starting\":2,\"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://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/updateproperties?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/updateproperties?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:17 GMT", + "date" : "Tue, 23 May 2023 04:40:41 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/updateproperties", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/updateproperties", "retry-after" : "0", - "request-id" : "d18722e5-1f1f-4b0c-9e9c-7a31fe84f8f9", + "request-id" : "5c860504-0c54-4762-ba56-2ce736c1fdca", "StatusCode" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:17 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:41 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d48f9bb5-906d-4dd9-978c-0df5e1db3e13", - "etag" : "0x8DAC8D175F51D07", + "client-request-id" : "75817ce1-ffca-443b-9920-799cf39793ac", + "etag" : "0x8DB5B47DD5F0F25", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:17 GMT", + "date" : "Tue, 23 May 2023 04:40:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "8d806036-dee9-4dde-bfc7-fab05c669de9", + "request-id" : "5314d9d0-32f2-4a1f-a7c4-7a86f36d07c4", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:17 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:41 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "b5ae01a7-108d-4f9d-a33e-83c636d131a8", + "client-request-id" : "f27303ae-80d2-4ab2-a5cd-b2476187380f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D175F51D07", + "etag" : "0x8DB5B47DD5F0F25", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D175F51D07\",\"lastModified\":\"2022-11-17T19:25:17.9064583Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-17T19:23:46.645953Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-17T19:24:59.4559141Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"simplified\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47DD5F0F25\",\"lastModified\":\"2023-05-23T04:40:41.7857317Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:39:40.4624025Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:37.7566141Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"simplified\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "PATCH", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:17 GMT", + "date" : "Tue, 23 May 2023 04:40:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool", "retry-after" : "0", - "request-id" : "d75bfbb6-2bba-4e26-bd57-b01df6a9c138", + "request-id" : "d99a7221-62b7-4852-b093-6e77062f8821", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "222a7405-ea12-4e64-9a86-665d237da72d", - "etag" : "0x8DAC8D176250850", + "client-request-id" : "5b953b61-e413-4899-8906-ff8aa5908705", + "etag" : "0x8DB5B47DD989D78", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:17 GMT", + "date" : "Tue, 23 May 2023 04:40:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "6fa4c155-a7a1-40e6-b74c-491218cd9bc9", + "request-id" : "7c2267e3-8da5-4177-ac5f-473ed27c1cc6", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f6d9e31e-4c8b-48d2-8f08-665148f4165d", + "client-request-id" : "42e8b75d-6a87-4483-be09-d4ae032e8fa4", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176250850", + "etag" : "0x8DB5B47DD989D78", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176250850\",\"lastModified\":\"2022-11-17T19:25:18.2205008Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-17T19:23:46.645953Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-17T19:24:59.4559141Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47DD989D78\",\"lastModified\":\"2023-05-23T04:40:42.1629304Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:39:40.4624025Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:37.7566141Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/resize?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/resize?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:18 GMT", + "date" : "Tue, 23 May 2023 04:40:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/resize", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool/resize", "retry-after" : "0", - "request-id" : "1f411c9b-8a0f-4af1-9f72-5928deeea974", + "request-id" : "087b6c2d-b41c-40e1-8b31-6fa0703600a7", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ada45115-3e1b-4fc8-8c7e-1a7c732a46dd", - "etag" : "0x8DAC8D1764C3F84", + "client-request-id" : "eec6c6cd-64d0-43ff-9be5-5094c9f934c7", + "etag" : "0x8DB5B47DDD19F93", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:18 GMT", + "date" : "Tue, 23 May 2023 04:40:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "f47ae351-c23d-49d4-b38d-a883e4c3dda7", + "request-id" : "55c4ec3d-40b2-4914-957c-36c04bef6e98", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "dc037db8-3bb1-4d79-8807-5845a36546fa", + "client-request-id" : "cc0c224c-525c-40f4-91bc-e1800a386715", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D1764C3F84", + "etag" : "0x8DB5B47DDD19F93", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D1764C3F84\",\"lastModified\":\"2022-11-17T19:25:18.4775044Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-17T19:23:46.645953Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:18.4775044Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47DDD19F93\",\"lastModified\":\"2023-05-23T04:40:42.5365395Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:39:40.4624025Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:42.5365395Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:18 GMT", + "date" : "Tue, 23 May 2023 04:40:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "53823064-4bb4-4672-ad31-d20ccdf5fcbb", + "client-request-id" : "bce6911b-5da9-4fa6-937b-e8c707ebec4d", "retry-after" : "0", - "request-id" : "d47a907a-806b-4ccf-8df9-658e38690f80", + "request-id" : "878d9b2b-9811-4b50-837f-2fbbe32e6fee", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -359,293 +322,193 @@ } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "retry-after" : "0", - "request-id" : "4b15ab83-6742-4f39-a2af-d641df9868c0", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "eaea5088-350a-424f-8ad7-86032c5a2560", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "retry-after" : "0", - "request-id" : "ab8c1036-402c-4807-9736-b3c7466ab409", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "3c893617-2662-4c61-af9b-030a43de46b3", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:19.4415096Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Nov 2022 19:25:48 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "retry-after" : "0", - "request-id" : "610ff325-3bf7-404e-a436-07723be0b176", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "84149134-a900-4fcb-803b-f9866598b783", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:19.4415096Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Thu, 17 Nov 2022 19:26:04 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "retry-after" : "0", - "request-id" : "2e0e722a-6cd4-4024-a321-e61fbefb6d10", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "0897f3a5-face-466d-80e0-50025eb9c8c9", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:19.4415096Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:26:18 GMT", + "date" : "Tue, 23 May 2023 04:40:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "cb0b72ed-0a5b-44ad-a2ad-6fec54a8d0a9", + "request-id" : "39c84f75-dd83-4d38-af9d-42c26077505e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "708477cc-1c2f-4b48-9f7a-7f5267c2a4d0", + "client-request-id" : "4e7d8e9c-e33c-4dde-97a4-1dfdfeb427f3", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", + "etag" : "0x8DB5B47DE0B31C4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:19.4415096Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47DE0B31C4\",\"lastModified\":\"2023-05-23T04:40:42.9138372Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:40:42.9138372Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:42.9138372Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":1,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:26:34 GMT", + "date" : "Tue, 23 May 2023 04:40:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "4dcd22b8-d81d-4593-bac4-6192f2310e0a", + "request-id" : "bfcf4923-3df1-4f84-ab3f-52e36256b81d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "24fda8ea-109b-4a85-ac83-4b9cc6c1889f", + "client-request-id" : "0ca584a4-56b3-4cb1-9c11-aa5f41d66ffb", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", + "etag" : "0x8DB5B47DE0B31C4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:19.4415096Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47DE0B31C4\",\"lastModified\":\"2023-05-23T04:40:42.9138372Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:40:42.9138372Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:52.9095144Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:26:49 GMT", + "date" : "Tue, 23 May 2023 04:41:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "19d57568-b6b7-4e87-8d0b-313fc3e915c1", + "request-id" : "c56ac633-f1e9-4f70-8e9f-c5e70f99a6c7", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a4708f9d-3fb5-4985-81b2-ba47f05a2179", + "client-request-id" : "78f52171-00d7-4cbd-a53e-aefe8dbdb380", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", + "etag" : "0x8DB5B47DE0B31C4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:19.4415096Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47DE0B31C4\",\"lastModified\":\"2023-05-23T04:40:42.9138372Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:40:42.9138372Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:52.9095144Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:27:04 GMT", + "date" : "Tue, 23 May 2023 04:41:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "720aae4f-c0ec-4ddc-8041-be16a926c8b3", + "request-id" : "2f5eb2be-bc43-4b01-8f54-96144d7c4e9f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2ef4cc13-07d4-4265-b614-507f9c49e756", + "client-request-id" : "b668af04-802a-4b07-8cd0-f30dfc74d400", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", + "etag" : "0x8DB5B47DE0B31C4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:19.4415096Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47DE0B31C4\",\"lastModified\":\"2023-05-23T04:40:42.9138372Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:40:42.9138372Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:52.9095144Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:27:19 GMT", + "date" : "Tue, 23 May 2023 04:41:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "a8615a40-b8a9-44b0-9311-3bc76676c0d9", + "request-id" : "a13403a9-557d-4842-8584-09cb0ff30164", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "73f6c3f5-e21d-4af8-a96b-621b5dc15f21", + "client-request-id" : "11ac0788-2bd7-4c2d-a5ce-bf5bbd5db260", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", + "etag" : "0x8DB5B47DE0B31C4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:19.4415096Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47DE0B31C4\",\"lastModified\":\"2023-05-23T04:40:42.9138372Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:40:42.9138372Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:52.9095144Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:27:34 GMT", + "date" : "Tue, 23 May 2023 04:41:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "1f9a8e32-29b8-4873-afe3-747821083b0c", + "request-id" : "eccf663f-ff7e-4521-9737-2ae4116b6fba", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "382ba41a-d54a-4eb9-a8a1-7e3fad3a8754", + "client-request-id" : "6bdcec5c-445d-474e-a051-38bf006eadb3", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", + "etag" : "0x8DB5B47DE0B31C4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:19.4415096Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47DE0B31C4\",\"lastModified\":\"2023-05-23T04:40:42.9138372Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:40:42.9138372Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:52.9095144Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:27:49 GMT", + "date" : "Tue, 23 May 2023 04:42:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "26c6906b-205c-4029-bc95-e55c5737d531", + "request-id" : "0db4d53e-015d-4648-b4c9-a13301a56c4c", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:25:18 GMT", + "last-modified" : "Tue, 23 May 2023 04:40:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "3d1feaaf-4f45-4ed6-910d-1ba35d2cc36d", + "client-request-id" : "53fcc830-0999-4282-b4e1-120b04731521", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D176922208", + "etag" : "0x8DB5B47DE0B31C4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DAC8D176922208\",\"lastModified\":\"2022-11-17T19:25:18.9355016Z\",\"creationTime\":\"2022-11-17T19:23:46.645953Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-17T19:25:18.9355016Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-17T19:25:19.4415096Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":2,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-canCRUDLowPri-testPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool\",\"eTag\":\"0x8DB5B47DE0B31C4\",\"lastModified\":\"2023-05-23T04:40:42.9138372Z\",\"creationTime\":\"2023-05-23T04:39:40.4624025Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:40:42.9138372Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:40:52.9095144Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":-1,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/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 },\"enableAcceleratedNetworking\":true\r\n },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:28:05 GMT", - "content-length" : "328", + "date" : "Tue, 23 May 2023 04:42:28 GMT", + "content-length" : "343", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "ef979e89-a73b-4153-b5ca-fb07e5a449f4", + "client-request-id" : "85e7850e-b7b4-432e-9200-cff3cc3bf575", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "25d3714d-4bb5-4144-b956-1eb2688c281f", + "request-id" : "4b6dba88-c303-4c34-9ed7-74905ed09d18", "StatusCode" : "404", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:25d3714d-4bb5-4144-b956-1eb2688c281f\\nTime:2022-11-17T19:28:05.4335149Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:4b6dba88-c303-4c34-9ed7-74905ed09d18\\nTime:2023-05-23T04:42:29.4233628Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-canCRUDLowPri-testPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:28:05 GMT", + "date" : "Tue, 23 May 2023 04:42:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "9213b65e-7a62-4172-80f7-3bdc60ba2629", + "client-request-id" : "13ed02ed-feeb-4900-ae44-7f9bc19ce406", "retry-after" : "0", - "request-id" : "8a2d53cb-3c61-4aa2-b74d-3e5ee01bf00a", + "request-id" : "e905e95c-407c-4be1-9d59-87a28012c32c", "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 2a873862b5ec..4200c31158ea 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,19 +1,18 @@ { "networkCallRecords" : [ { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:19:16 GMT", + "date" : "Tue, 23 May 2023 04:53:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "a6001785-2ff8-4a34-9cf7-78fb3634c971", + "client-request-id" : "3d9b025d-8aad-4342-a9e0-79e34413a030", "retry-after" : "0", - "request-id" : "f608cf3d-b6fe-42f6-a720-89dd976a7069", + "request-id" : "4864c35b-f5d8-497d-a8b4-17ba93f449da", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", @@ -21,203 +20,194 @@ } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:19:16 GMT", + "date" : "Tue, 23 May 2023 04:53:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4", "retry-after" : "0", - "request-id" : "ab7ab231-5af0-49b4-95be-0a9b33fe604e", + "request-id" : "e99318f1-134a-4b19-a251-ff94cea2145b", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:19:16 GMT", + "last-modified" : "Tue, 23 May 2023 04:53:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f0d96009-2aa9-4f19-8f2b-c16cb5332787", - "etag" : "0x8DAC72524B135BD", - "location" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4", + "client-request-id" : "a107168e-37c5-470f-8d65-50ab38d4a315", + "etag" : "0x8DB5B49B09751EC", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:19:17 GMT", + "date" : "Tue, 23 May 2023 04:53:45 GMT", + "last-modified" : "Tue, 23 May 2023 04:53:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", + "x-content-type-options" : "nosniff", + "client-request-id" : "da8b5ede-16c2-4a5c-85a6-f95fe442c2a4", + "etag" : "0x8DB5B49B09751EC", "retry-after" : "0", - "request-id" : "f04331ca-5492-4d62-b8d4-569dd516f9e6", + "request-id" : "f8ee8cb1-3681-4ebc-a848-a53e8d7918fb", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:19:16 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "9d8989d5-8ded-4379-96e5-7325884834e4", - "etag" : "0x8DAC72524B135BD", "dataserviceversion" : "3.0", - "Body" : "" + "Body" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:19:17 GMT", + "date" : "Tue, 23 May 2023 04:53:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "54a339c7-5238-4b31-8524-4fcf44fc2b98", + "request-id" : "a1968387-469b-46af-9b73-616d6bb27117", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:19:16 GMT", + "last-modified" : "Tue, 23 May 2023 04:53:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "68064cd1-87fe-4ee0-ade7-0f8f6f23e247", + "client-request-id" : "50e5ef09-c620-412c-b8d6-e45ab023ebf3", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC72524B135BD", + "etag" : "0x8DB5B49B09751EC", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC72524B135BD\",\"lastModified\":\"2022-11-15T16:19:16.9657277Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:19:16.9657277Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:19:16.9657277Z\",\"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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49B09751EC\",\"lastModified\":\"2023-05-23T04:53:45.65043Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:53:45.65043Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:53:45.65043Z\",\"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://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:19:46 GMT", + "date" : "Tue, 23 May 2023 04:54:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "fa227a51-0bfd-4595-87b0-dc55db8376cf", + "request-id" : "f42a37fb-3dba-4269-a7e4-a33be520c74b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:19:16 GMT", + "last-modified" : "Tue, 23 May 2023 04:53:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "3842151f-d725-48aa-a7a5-8e8357816c76", + "client-request-id" : "5b8a2fbe-b3e8-4b75-a97d-b82e6046cc3c", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC72524B135BD", + "etag" : "0x8DB5B49B09751EC", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC72524B135BD\",\"lastModified\":\"2022-11-15T16:19:16.9657277Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:19:16.9657277Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:19:16.9657277Z\",\"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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49B09751EC\",\"lastModified\":\"2023-05-23T04:53:45.65043Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:53:45.65043Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:53:45.65043Z\",\"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://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:20:16 GMT", + "date" : "Tue, 23 May 2023 04:54:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "9682ab29-7fa7-4c58-8a32-5e53c6789d2b", + "request-id" : "33bf013e-4241-40a9-badf-270ca8046006", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:19:16 GMT", + "last-modified" : "Tue, 23 May 2023 04:53:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6518b241-6855-4def-97a8-87380d568362", + "client-request-id" : "959d7d38-fb9f-4741-9690-a2bf5da10fae", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC72524B135BD", + "etag" : "0x8DB5B49B09751EC", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC72524B135BD\",\"lastModified\":\"2022-11-15T16:19:16.9657277Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:19:16.9657277Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:19:16.9657277Z\",\"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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49B09751EC\",\"lastModified\":\"2023-05-23T04:53:45.65043Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:53:45.65043Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:53:45.65043Z\",\"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://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:20:47 GMT", + "date" : "Tue, 23 May 2023 04:55:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "315e8803-8916-44d9-b69e-1db69c8958eb", + "request-id" : "62e7d559-db6c-4b8a-999d-bb2535594aa9", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:19:16 GMT", + "last-modified" : "Tue, 23 May 2023 04:53:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "253c96f1-f92b-4221-b98d-a5db079e437b", + "client-request-id" : "475a9b39-fa4a-40c0-92b7-e36a8dc43dc8", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC72524B135BD", + "etag" : "0x8DB5B49B09751EC", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC72524B135BD\",\"lastModified\":\"2022-11-15T16:19:16.9657277Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:19:16.9657277Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:30.0395358Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49B09751EC\",\"lastModified\":\"2023-05-23T04:53:45.65043Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:53:45.65043Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:13.2030155Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4/resize?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4/resize?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:20:47 GMT", + "date" : "Tue, 23 May 2023 04:55:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4/resize", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4/resize", "retry-after" : "0", - "request-id" : "7f4de781-24a3-44fd-ba7e-8545c5d8a402", + "request-id" : "5a90d69a-c2f6-4b1e-aed5-9fa444b596f6", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:47 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:16 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "5e1b250d-f927-4e7f-a705-e25cfbc71b85", - "etag" : "0x8DAC7255ACD9CDD", + "client-request-id" : "06ebf941-c734-40cd-8743-fa00e4ca88ce", + "etag" : "0x8DB5B49E6E4F7A0", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:20:47 GMT", + "date" : "Tue, 23 May 2023 04:55:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "04a181d6-e414-4aca-9aab-1bea69c2d2f3", + "request-id" : "6b44b1dd-2827-4336-8a7f-c1fe20b32150", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:47 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:16 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0e7a947b-2c86-42bc-a84b-e0086b453f5a", + "client-request-id" : "1cfc5b43-8a69-48c5-81ea-02543d32f9e1", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255ACD9CDD", + "etag" : "0x8DB5B49E6E4F7A0", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255ACD9CDD\",\"lastModified\":\"2022-11-15T16:20:47.7488349Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:19:16.9657277Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:47.7488349Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E6E4F7A0\",\"lastModified\":\"2023-05-23T04:55:16.7562656Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:53:45.65043Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:16.7562656Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:20:47 GMT", + "date" : "Tue, 23 May 2023 04:55:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "14d2c43b-3beb-496c-acbf-69f9154f604b", + "client-request-id" : "b37d0249-0fdd-4aa8-bf59-6121da82f82f", "retry-after" : "0", - "request-id" : "487cccc5-0821-4df7-b9d4-cbc5b0251b1a", + "request-id" : "41e34f36-887c-47f5-ae4a-8cfbe0a15cc0", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -225,500 +215,457 @@ } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 15 Nov 2022 16:20:48 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "retry-after" : "0", - "request-id" : "0b57febb-31d2-4405-bf7b-c113781b01ca", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "52e4880f-a5e0-464e-bfcd-c1d5e6ce718c", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:21:02 GMT", + "date" : "Tue, 23 May 2023 04:55:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "88381848-227b-4ff0-9200-a56bc29fad1c", + "request-id" : "18063353-552a-4b5a-a4fc-f0bdedd63739", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "21cb0eaf-d38b-4aed-8965-6acce0744057", + "client-request-id" : "857d4301-a0ea-4b8a-b112-1aca3abd6233", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:21:17 GMT", + "date" : "Tue, 23 May 2023 04:55:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "b22d88b5-83da-4efa-948b-0d852362afec", + "request-id" : "7dd1a984-f1f5-4902-a696-f7f2546c66b9", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6c0920cc-9c01-4253-a5f9-999096739141", + "client-request-id" : "ad1b1bc0-aecf-46e1-9b96-3c7efc44b4ce", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:21:33 GMT", + "date" : "Tue, 23 May 2023 04:55:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "d6562871-2c39-4607-abea-aa3740a03f53", + "request-id" : "1d792ed3-166a-444c-918f-5b31a25650ae", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e31e8b36-75d3-483d-be56-f30bb6356400", + "client-request-id" : "bd0b0ab3-aadb-446c-82e1-8dec86d6fb15", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:21:48 GMT", + "date" : "Tue, 23 May 2023 04:56:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "facd0d28-5753-4235-9a84-277eecf2058c", + "request-id" : "1efb384a-e9fe-4304-8bb1-307aacd45b38", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0009bf65-5662-4dd6-bd15-035e86243428", + "client-request-id" : "3d27abf8-6b1d-4c4b-810a-33894827c6de", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:22:03 GMT", + "date" : "Tue, 23 May 2023 04:56:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "a83c637e-2bb1-4f68-9b8a-18bb7eda4948", + "request-id" : "a154afe7-e46f-4c56-bdfe-194342c117df", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6b2b4462-8859-43c7-990e-4d1c6d8df84c", + "client-request-id" : "15b548a7-ec45-4d76-be99-0a0075ecbdfd", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:22:18 GMT", + "date" : "Tue, 23 May 2023 04:56:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "2acdb3f0-6303-4785-8ccf-35f7c2bfc5c7", + "request-id" : "a1d89b1b-6eb3-45d2-b644-9101140d4217", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "fa7f3a32-13fc-4423-9025-edf3a7c7b48b", + "client-request-id" : "c15a0cb3-01ed-4e0b-a9b2-ebc686bf11c0", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:22:33 GMT", + "date" : "Tue, 23 May 2023 04:56:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "dc44353a-404f-45ac-8958-b7c3e3883449", + "request-id" : "e8200d6a-9e43-472b-a028-ff0a8844d9a6", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9ab965f0-51cb-430d-9794-0e24b952c544", + "client-request-id" : "6c07d855-1b39-4e95-a24b-39d08e65f950", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:22:48 GMT", + "date" : "Tue, 23 May 2023 04:57:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "4c97aa77-84df-4fcf-8891-ea71e36b8277", + "request-id" : "de53bdaa-0361-40c2-bf1c-849dfb351f66", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "885c32f4-2514-49ef-b464-b7c5302499b6", + "client-request-id" : "6bc9d9db-1ded-4814-a5d4-a42b38b89fe4", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:23:03 GMT", + "date" : "Tue, 23 May 2023 04:57:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "30243066-7016-4444-9e06-1ab90b36c7de", + "request-id" : "2f2c8ebd-acf0-48ad-9b63-5ae7c192ba82", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c053ba3d-2754-4c88-a7c7-a31c1711c1d5", + "client-request-id" : "738144de-d99b-43ff-afa9-4c9d33c1c099", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:23:19 GMT", + "date" : "Tue, 23 May 2023 04:57:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "abcf8865-d092-4a55-b448-6e369394ed8f", + "request-id" : "bbbffb0e-7d85-4c66-a8c3-e89f141bf98e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "3172751d-c76d-41f0-926d-c3bb9c488f81", + "client-request-id" : "0e2c85e9-5ffd-4c4c-a4b5-693b974d76cb", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:23:33 GMT", + "date" : "Tue, 23 May 2023 04:57:48 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "81b8e798-18ce-43ae-8824-459e8c1b1aa2", + "request-id" : "b81cc444-dff0-48d0-8c4b-fa274f7e9c8b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "dd476008-f4de-440a-8d7a-c2052600798b", + "client-request-id" : "dbfe2957-e742-4729-b3cd-545f4008ef10", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:23:48 GMT", + "date" : "Tue, 23 May 2023 04:58:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "96d57651-08ef-42fc-9c56-9c77385a9308", + "request-id" : "e47ba8c9-04d8-4ec5-b7d1-3c1bb6289721", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "13bf7766-0827-47a1-9a98-5d500c009acd", + "client-request-id" : "fa4223ae-64c7-4d59-92a1-b79423d1af67", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:24:03 GMT", + "date" : "Tue, 23 May 2023 04:58:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "5105f1d9-07f1-46a5-a204-9cf816f9b4ed", + "request-id" : "8e57c3e8-901f-4549-b287-821edcf19e24", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "fec5b2b5-29ae-4668-aa14-49cb3b7a91b9", + "client-request-id" : "3be5ee8f-32e8-48f6-9b4e-929df58d0210", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:24:19 GMT", + "date" : "Tue, 23 May 2023 04:58:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "619f23f8-3902-4ff0-a186-de424db8b247", + "request-id" : "ceebb99f-c77c-4093-ade7-919dbb7151d3", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "23e14350-2d3c-4e12-80ac-a56e3f2f61db", + "client-request-id" : "c3e216e3-eac8-44c6-a20a-1aed61ce4159", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:24:35 GMT", + "date" : "Tue, 23 May 2023 04:58:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "6bebb76a-b38e-4cb3-abcc-6c01099c1dfd", + "request-id" : "15db8b3f-5e01-4172-a631-f8ba2ac4156b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "fca990d0-448d-4a00-9224-03808626bc9f", + "client-request-id" : "a768f0a5-e35c-4879-8b8a-5fe799b3f063", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:24:49 GMT", + "date" : "Tue, 23 May 2023 04:59:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "dc4361cf-8884-4e8b-96ad-2fa80b8f3e65", + "request-id" : "27dc9c8f-509e-4806-ac99-0a2914f95d50", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "4874fa85-18cd-4fcd-9b6f-4cedb694dbc3", + "client-request-id" : "f21d9a62-a8a8-456c-bf21-b54d914e9c18", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:25:04 GMT", + "date" : "Tue, 23 May 2023 04:59:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "22fc3e4c-ce7e-4825-bb94-88a4b465b789", + "request-id" : "e0649e84-662c-493a-a600-6b8dd5c9ed36", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0521d748-fa57-4e05-a087-906458a743ce", + "client-request-id" : "c812b6eb-a10b-4bfc-bd87-a82e57a27a80", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:25:19 GMT", + "date" : "Tue, 23 May 2023 04:59:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "11c93762-fe3b-4aa9-ab17-aaa04805145b", + "request-id" : "9acef577-1b7b-4a78-b2a9-0fdcd8654de7", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "411e4156-cca1-4b36-bec9-d3fa05c279e6", + "client-request-id" : "c9796e67-5739-454f-aa4a-c25497f0d362", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:25:35 GMT", + "date" : "Tue, 23 May 2023 04:59:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "e3fc9bb5-de69-4090-b5ec-3a24c165fde2", + "request-id" : "aaa14367-ad06-49f2-a7cb-fcf9e9faf0c1", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:20:48 GMT", + "last-modified" : "Tue, 23 May 2023 04:55:17 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e57c9d2e-7576-4a78-99ff-e5aa5261a4a2", + "client-request-id" : "5c99bc85-5141-4cef-814d-b0ef35289e8d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7255AF5FDB3", + "etag" : "0x8DB5B49E71CF798", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DAC7255AF5FDB3\",\"lastModified\":\"2022-11-15T16:20:48.0134579Z\",\"creationTime\":\"2022-11-15T16:19:16.9657277Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:20:48.0134579Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:20:58.4231742Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool4\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4\",\"eTag\":\"0x8DB5B49E71CF798\",\"lastModified\":\"2023-05-23T04:55:17.1232664Z\",\"creationTime\":\"2023-05-23T04:53:45.65043Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:55:17.1232664Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:55:27.2047156Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:25:49 GMT", - "content-length" : "328", + "date" : "Tue, 23 May 2023 05:00:04 GMT", + "content-length" : "343", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "4843ba44-bd05-4255-a857-caebfef09e64", + "client-request-id" : "2fc8583b-28c1-4a9e-9f1d-ba183a12b4bc", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "89662857-abed-4b7a-b1c6-5f2576eb059c", + "request-id" : "1c4c946a-87ac-4b84-8431-4e1849209830", "StatusCode" : "404", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:89662857-abed-4b7a-b1c6-5f2576eb059c\\nTime:2022-11-15T16:25:50.6844989Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:1c4c946a-87ac-4b84-8431-4e1849209830\\nTime:2023-05-23T05:00:05.8575138Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool4?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool4?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:25:50 GMT", + "date" : "Tue, 23 May 2023 05:00:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "cf6eeff8-a933-44cd-b6ff-5c6a17947ac1", + "client-request-id" : "1bda4e63-2bbe-49bc-a6b2-6eb7ef70f443", "retry-after" : "0", - "request-id" : "630c4115-272f-4197-83ff-c820a13981a9", + "request-id" : "db94a2db-aa9b-48cf-9397-8341d065e8ed", "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 f2f70924bdc1..41389146f06c 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,19 +1,18 @@ { "networkCallRecords" : [ { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:43 GMT", + "date" : "Tue, 23 May 2023 04:45:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "9e8bfab6-a9ff-44bc-888c-2c2096761021", + "client-request-id" : "2a13f379-a593-4e37-a63e-b7d4b9fa5834", "retry-after" : "0", - "request-id" : "107d4d80-2825-472c-b861-7264316ca4d2", + "request-id" : "f9b460c9-c44f-48d9-b3e7-2c8534fc59f3", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", @@ -21,314 +20,279 @@ } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:44 GMT", + "date" : "Tue, 23 May 2023 04:45:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS", "retry-after" : "0", - "request-id" : "f8a700d9-00b8-47bb-ba6b-bc7b46af4534", + "request-id" : "81fb7623-3843-4e29-82a0-7e96019a8c87", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:10:44 GMT", + "last-modified" : "Tue, 23 May 2023 04:45:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f7a48cee-f616-40c5-8115-a8465906a328", - "etag" : "0x8DAC723F34D0092", - "location" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS", + "client-request-id" : "77ee8a14-e098-4cd8-bd03-c34f63b7f78a", + "etag" : "0x8DB5B488A5C6B3E", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:44 GMT", + "date" : "Tue, 23 May 2023 04:45:31 GMT", + "last-modified" : "Tue, 23 May 2023 04:45:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "retry-after" : "0", - "request-id" : "2a4e82eb-d5da-4dd8-83ac-c9aea266adfa", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:10:44 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e9dde822-56e1-4bd4-a297-e66c9ef7b036", - "etag" : "0x8DAC723F34D0092", - "dataserviceversion" : "3.0", - "Body" : "" - } - }, { - "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", + "client-request-id" : "a3a7edc4-826f-4dd1-a54d-ea0ab6f80aa5", + "etag" : "0x8DB5B488A5C6B3E", "retry-after" : "0", - "request-id" : "eb4c4a85-dd31-4a87-83dc-af8d4ed3aa4b", + "request-id" : "647218b6-3da5-4085-bd1a-1beb71390792", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:10:44 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "c249f821-346d-4011-bfeb-6f766db54105", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC723F34D0092", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC723F34D0092\",\"lastModified\":\"2022-11-15T16:10:44.6039186Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"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" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:11:14 GMT", + "date" : "Tue, 23 May 2023 04:45:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "7b353ef4-ba95-411a-a041-204ee9f56622", + "request-id" : "4bbbe265-4faf-41e6-960d-07baa77c7556", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:10:44 GMT", + "last-modified" : "Tue, 23 May 2023 04:45:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "fd57a1fa-d32a-4949-993c-e4638fcd59a5", + "client-request-id" : "4e9fd47d-7786-4c1a-b289-369d27f111b4", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC723F34D0092", + "etag" : "0x8DB5B488A5C6B3E", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC723F34D0092\",\"lastModified\":\"2022-11-15T16:10:44.6039186Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B488A5C6B3E\",\"lastModified\":\"2023-05-23T04:45:32.0142654Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:45:32.0142654Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:45:32.0142654Z\",\"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://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:11:44 GMT", + "date" : "Tue, 23 May 2023 04:46:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "e11530d8-cfb6-41ba-bfd5-84be171f08a4", + "request-id" : "21d72f38-068e-4da2-809f-5a1c9ad94d21", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:10:44 GMT", + "last-modified" : "Tue, 23 May 2023 04:45:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "494cbea1-49de-4d85-a083-361e2485c2aa", + "client-request-id" : "8ae782b4-0b82-4902-acc2-2fb542cad458", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC723F34D0092", + "etag" : "0x8DB5B488A5C6B3E", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC723F34D0092\",\"lastModified\":\"2022-11-15T16:10:44.6039186Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B488A5C6B3E\",\"lastModified\":\"2023-05-23T04:45:32.0142654Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:45:32.0142654Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:45:32.0142654Z\",\"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://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:15 GMT", + "date" : "Tue, 23 May 2023 04:46:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "ef25cd03-88b9-40f0-84ac-186069334825", + "request-id" : "163ac055-e2cc-4a92-afd4-44283fe3c3ab", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:10:44 GMT", + "last-modified" : "Tue, 23 May 2023 04:45:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "b315d5b8-3f65-40d4-863a-0d63e17c8f4d", + "client-request-id" : "39e1b937-50ab-4dcf-84a6-3f4a99bbd15e", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC723F34D0092", + "etag" : "0x8DB5B488A5C6B3E", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC723F34D0092\",\"lastModified\":\"2022-11-15T16:10:44.6039186Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B488A5C6B3E\",\"lastModified\":\"2023-05-23T04:45:32.0142654Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:45:32.0142654Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:45:32.0142654Z\",\"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://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:44 GMT", + "date" : "Tue, 23 May 2023 04:47:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "f819779f-ace7-4b7b-a0d3-f623a00fc54f", + "request-id" : "351073e3-ba7f-413a-b2d1-d5f926918eab", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:10:44 GMT", + "last-modified" : "Tue, 23 May 2023 04:45:32 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "7fcad063-96d2-4bf5-a7aa-86b21939d479", + "client-request-id" : "29ef1e8d-cdc2-47a7-b722-d9261158a052", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC723F34D0092", + "etag" : "0x8DB5B488A5C6B3E", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC723F34D0092\",\"lastModified\":\"2022-11-15T16:10:44.6039186Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:16.7586892Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B488A5C6B3E\",\"lastModified\":\"2023-05-23T04:45:32.0142654Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:45:32.0142654Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-23T04:46:34.7805868Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:45 GMT", + "date" : "Tue, 23 May 2023 04:47:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "f49c5a6c-8ec7-474b-b32a-cd8789a23fcc", + "client-request-id" : "2e7e8ed7-dcdd-4ea1-9ff3-c6cc06156642", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "60aebacc-7f20-4b7a-afc7-eb6f4cd93926", + "request-id" : "4888e3a2-d2c0-4e87-ba12-1eb0ead53956", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC723F34D0092\",\"lastModified\":\"2022-11-15T16:10:44.6039186Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:16.7586892Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n },{\r\n \"id\":\"BatchUser-nodeCommunicationMode-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-nodeCommunicationMode-testPool\",\"eTag\":\"0x8DAC723EECBB074\",\"lastModified\":\"2022-11-15T16:10:37.0455668Z\",\"creationTime\":\"2022-11-15T16:09:35.7325016Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:10:37.0455668Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:10:37.0615622Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n },{\r\n \"id\":\"BatchUser-testIaaSpool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool\",\"eTag\":\"0x8DAC6604F8AFFB4\",\"lastModified\":\"2022-11-14T16:50:18.0016052Z\",\"creationTime\":\"2022-11-14T16:50:18.0016052Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-14T16:50:18.0016052Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-14T16:51:15.2976599Z\",\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"dynamicVNetAssignmentScope\":\"none\"\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n },{\r\n \"id\":\"BatchUser-testpool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool\",\"eTag\":\"0x8DAC45052EE8723\",\"lastModified\":\"2022-11-12T01:50:49.4138147Z\",\"creationTime\":\"2022-11-12T01:50:49.4138147Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-12T01:50:49.4138147Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-12T01:51:50.0098849Z\",\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"dynamicVNetAssignmentScope\":\"none\"\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n },{\r\n \"id\":\"C15D0760-3E08-435B-970B-135FC2678EDC\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/C15D0760-3E08-435B-970B-135FC2678EDC\",\"eTag\":\"0x8DAC6B99243C1FD\",\"lastModified\":\"2022-11-15T03:29:15.1510013Z\",\"creationTime\":\"2022-11-15T03:29:15.1510013Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:29:15.1510013Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-15T03:29:16.4950132Z\",\"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\"\r\n },\"targetNodeCommunicationMode\":\"simplified\"\r\n },{\r\n \"id\":\"linuxperfpool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/linuxperfpool\",\"eTag\":\"0x8DAB07E7D993C85\",\"lastModified\":\"2022-10-17T20:30:54.5908869Z\",\"creationTime\":\"2022-10-17T20:30:54.5908869Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-10-17T20:30:54.5908869Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-10-17T20:30:55.7489023Z\",\"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\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"dataDisks\":[\r\n {\r\n \"lun\":1,\"caching\":\"none\",\"diskSizeGB\":1,\"storageAccountType\":\"premium_lrs\"\r\n }\r\n ],\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerRegistries\":[\r\n {\r\n \"registryServer\":\"u2zpars1adcr001.azurecr.io\",\"identityReference\":{\r\n \"resourceId\":\"dummyUserId\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n },{\r\n \"id\":\"nikoudsi-pooltest\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/nikoudsi-pooltest\",\"eTag\":\"0x8DA9671C1A761BB\",\"lastModified\":\"2022-09-14T16:54:15.0789563Z\",\"creationTime\":\"2022-09-14T16:54:15.0789563Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-09-14T16:54:15.0789563Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-09-14T16:55:28.4171484Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"startTask\":{\r\n \"commandLine\":\"cmd /c hostname\",\"environmentSettings\":[\r\n {\r\n \"name\":\"key\",\"value\":\"value\"\r\n }\r\n ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"maxTaskRetryCount\":0,\"waitForSuccess\":true\r\n },\"userAccounts\":[\r\n {\r\n \"name\":\"BatchTestAdmin\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \"loginMode\":\"interactive\"\r\n }\r\n },{\r\n \"name\":\"BatchTestNonAdmin\",\"elevationLevel\":\"nonadmin\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n },{\r\n \"id\":\"PersistOutputsSamplePool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/PersistOutputsSamplePool\",\"eTag\":\"0x8DA7B27D3C8F570\",\"lastModified\":\"2022-08-10T23:27:01.3450096Z\",\"creationTime\":\"2022-08-10T23:27:01.3450096Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-08-10T23:27:01.3450096Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-08-10T23:28:31.1120417Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"applicationPackageReferences\":[\r\n {\r\n \"applicationId\":\"persistoutputstask\",\"version\":\"1.0\"\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"5\",\"osVersion\":\"*\"\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n },{\r\n \"id\":\"TopNWordsPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/TopNWordsPool\",\"eTag\":\"0x8DA8BD9D0CB2777\",\"lastModified\":\"2022-09-01T05:21:25.3485431Z\",\"creationTime\":\"2022-09-01T05:21:25.3485431Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-09-01T05:21:25.3485431Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-09-01T05:22:32.584416Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":3,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"5\",\"osVersion\":\"*\"\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B488A5C6B3E\",\"lastModified\":\"2023-05-23T04:45:32.0142654Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:45:32.0142654Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-23T04:46:34.7805868Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n },{\r\n \"id\":\"BatchUser-testIaaSpool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool\",\"eTag\":\"0x8DB5A9ECB08231C\",\"lastModified\":\"2023-05-22T08:30:26.0697884Z\",\"creationTime\":\"2023-05-22T08:30:26.0697884Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-22T08:30:26.0697884Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-22T08:31:17.8694181Z\",\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n },{\r\n \"id\":\"BatchUser-testpool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool\",\"eTag\":\"0x8DB583E289D3448\",\"lastModified\":\"2023-05-19T07:53:39.5664968Z\",\"creationTime\":\"2023-05-19T07:53:39.5664968Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-19T07:53:39.5664968Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-19T07:54:32.2100715Z\",\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/nodecounts?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/nodecounts?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:45 GMT", + "date" : "Tue, 23 May 2023 04:47:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "cc162f1e-1db5-4925-983b-f04ad4a5fef9", + "client-request-id" : "be4a2897-335f-488c-973d-75a39cd2db68", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "f094fc32-3fb7-4c79-b48e-7dd90b23554a", + "request-id" : "32f7741d-52a5-43c5-b54d-a8c7e6bd8a3f", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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-nodeCommunicationMode-testPool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":0,\"leavingPool\":3,\"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 \"poolId\":\"C15D0760-3E08-435B-970B-135FC2678EDC\",\"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\":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\":\"linuxperfpool\",\"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\":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\":\"nikoudsi-pooltest\",\"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\":\"PersistOutputsSamplePool\",\"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\":\"TopNWordsPool\",\"dedicated\":{\r\n \"creating\":0,\"idle\":3,\"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 ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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-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://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:45 GMT", + "date" : "Tue, 23 May 2023 04:47:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS", "retry-after" : "0", - "request-id" : "8f846de4-2478-4534-be0a-72889a0e0382", + "request-id" : "8dcfdada-7384-43c1-9265-f94b1a78f2e4", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:45 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:03 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2686a9c4-7987-4995-ba5a-241282164249", - "etag" : "0x8DAC7243B8E37E7", + "client-request-id" : "7204386e-b285-4c75-8792-be67d1bc0dc5", + "etag" : "0x8DB5B48C0E859F2", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:45 GMT", + "date" : "Tue, 23 May 2023 04:47:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "a76c03bb-d9de-4426-8fc4-ecde55973065", + "request-id" : "8014c0ee-5622-4573-bb5d-28e60cc99eec", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:45 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:03 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "00230df2-11cb-4bae-937e-8cc1f3d2acae", + "client-request-id" : "9ba323a0-0140-432f-a376-df73b9a740dc", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243B8E37E7", + "etag" : "0x8DB5B48C0E859F2", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243B8E37E7\",\"lastModified\":\"2022-11-15T16:12:45.8272743Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:16.7586892Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C0E859F2\",\"lastModified\":\"2023-05-23T04:47:03.528293Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:45:32.0142654Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-23T04:46:34.7805868Z\",\"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 },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS/updateproperties?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS/updateproperties?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:45 GMT", + "date" : "Tue, 23 May 2023 04:47:02 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS/updateproperties", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS/updateproperties", "retry-after" : "0", - "request-id" : "b9c3b069-2d32-4701-8cc0-b92c8ab661af", + "request-id" : "80c8b5bc-e04e-440c-9876-97e60b135a2a", "StatusCode" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:03 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "75042b93-a5f1-4063-a5ae-3624a6226b81", - "etag" : "0x8DAC7243BB45DA0", + "client-request-id" : "aca9a72c-165e-4f5e-8ad6-0716f3cbe955", + "etag" : "0x8DB5B48C11FBB3B", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:45 GMT", + "date" : "Tue, 23 May 2023 04:47:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "dfb7992a-da99-4c34-8e37-5f885a057442", + "request-id" : "3a5e76aa-af72-47ed-a4b9-ceecef6f8bd1", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:03 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c7506bef-38b5-41aa-aa2a-ca96066194d1", + "client-request-id" : "fd156a7c-e091-487a-a3ab-a67430f9383d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BB45DA0", + "etag" : "0x8DB5B48C11FBB3B", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BB45DA0\",\"lastModified\":\"2022-11-15T16:12:46.0772768Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:10:44.6039186Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:16.7586892Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C11FBB3B\",\"lastModified\":\"2023-05-23T04:47:03.8912315Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:45:32.0142654Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-23T04:46:34.7805868Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:45 GMT", + "date" : "Tue, 23 May 2023 04:47:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "6207840b-72bc-41e8-be0f-36214afdf065", + "client-request-id" : "621cf331-3fa1-4f92-8a59-0c1bf5a76e46", "retry-after" : "0", - "request-id" : "8b59073d-63f0-4431-902c-4f97d9dc97a3", + "request-id" : "14f44ccb-c69d-45e2-a201-855ede70177d", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -336,1788 +300,1733 @@ } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:47:04 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "d4bbe5a8-6f61-4ebd-b094-26eb1ac040b2", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "8aa61623-0dd5-4ab2-8202-a774d7016b21", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B48C15E0065", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:45 GMT", + "date" : "Tue, 23 May 2023 04:47:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "b40f4086-3cd1-44aa-8b9e-5075f165de94", + "request-id" : "d80ea212-3151-4b0d-8dc1-81103e07cd8e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "488bcdef-ecb4-4cae-bd54-14e3e268d274", + "client-request-id" : "34003ec8-14d9-4c0d-a222-2a5b3c82b7f2", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:51 GMT", + "date" : "Tue, 23 May 2023 04:47:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "c87e0bfc-b33d-4244-b568-05ff8b20005e", + "request-id" : "741ead28-520c-442f-a181-53a479c160a0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6755daa0-9278-4238-92c1-b07f31ae8ea4", + "client-request-id" : "40d08426-ae03-4ee3-b6e1-7fca787daf43", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:12:56 GMT", + "date" : "Tue, 23 May 2023 04:47:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "0fb6728b-b558-4eea-9a20-7c949549ea40", + "request-id" : "e0dbe8ae-4bc9-4c0d-ae51-a467c2476772", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "41086508-9bac-4950-a005-1d4a52ba41b7", + "client-request-id" : "053aff41-90ed-40fd-9304-bc5609964069", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:00 GMT", + "date" : "Tue, 23 May 2023 04:47:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "e1924b53-b315-4f30-9c0e-0bac9bc15923", + "request-id" : "ea27b622-06f7-4b9f-aa0f-5cfffbae2f08", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "3d092c48-af93-46cc-a33f-d16cdebdc381", + "client-request-id" : "2eed0369-4306-4e28-8f1c-ec57c0705d3c", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:05 GMT", + "date" : "Tue, 23 May 2023 04:47:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "58b4a306-8aee-4ac4-aa8c-7b9bc9e0459b", + "request-id" : "2767462c-040e-48e4-842e-039871b1959b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c4807d4c-ad7f-4e61-bdae-3a4d0c119ce0", + "client-request-id" : "7408d612-9ec3-44f3-8dc3-49cf94d32af7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:10 GMT", + "date" : "Tue, 23 May 2023 04:47:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "fb92134f-63aa-40f6-90c3-10b03875c2b5", + "request-id" : "bda99122-762b-49bb-8353-8e43cee16d17", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e218e27d-9bac-436a-8d04-a39cc3b4aec0", + "client-request-id" : "1b97bd77-d313-4196-b615-e3d6f5317033", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:17 GMT", + "date" : "Tue, 23 May 2023 04:47:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "e02d562a-95b6-4b6a-aed9-277a3aec143e", + "request-id" : "13a84f55-c34b-4815-ae7c-0500aaec1c99", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a7af6fe4-6de7-48e5-90a8-0d04859ce9bf", + "client-request-id" : "bcc5e99d-5c66-4546-bf8c-54d20598f6fc", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:22 GMT", + "date" : "Tue, 23 May 2023 04:47:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "95bae440-161c-420f-a04b-dcd18a189bc8", + "request-id" : "bd8b4fcc-e80f-4655-bc8b-5b92ae94dc0f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a59cedec-807f-4e7d-8e7e-b340f39c2da4", + "client-request-id" : "72dcb7f8-2fdb-4bcb-be4d-04a77b2f5531", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:27 GMT", + "date" : "Tue, 23 May 2023 04:47:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "6526ec5e-2faf-4444-9538-c46698eebccd", + "request-id" : "9d243253-aa6f-4f52-a0dc-e7ed318fa4f4", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "18814c6b-5d49-44d0-a2cb-f37e806c2647", + "client-request-id" : "d6a023eb-64d6-4ffd-ba36-688510513384", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:32 GMT", + "date" : "Tue, 23 May 2023 04:47:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "0e25d51f-105f-4d16-b34c-cbe578e253fa", + "request-id" : "be6f2185-bcce-490c-b536-5fbbb86e79e8", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "573cda20-8dca-43a2-aba6-1dae03b0ef8d", + "client-request-id" : "1e8fb815-742d-43f5-ac28-aef83b63e725", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:37 GMT", + "date" : "Tue, 23 May 2023 04:48:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "0848e131-1934-40df-bd9c-18c7e3246388", + "request-id" : "3243bc66-3a88-4808-856c-3306f58193fe", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ef953113-378b-423f-917f-90035fe6f481", + "client-request-id" : "a6c21ad1-a1be-4295-b623-23733ab73c1d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:42 GMT", + "date" : "Tue, 23 May 2023 04:48:06 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "dbec9228-eb5a-470a-8660-44f6e99477e5", + "request-id" : "e0a31290-2e9e-4fef-8b72-beb415335c68", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "300cb3d2-fe06-456f-a6f7-29caa1df03ad", + "client-request-id" : "2687a459-8eb6-418e-8dd6-eb1557530635", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:47 GMT", + "date" : "Tue, 23 May 2023 04:48:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "72cc4985-cff8-4766-80c8-b3828b1cf6b6", + "request-id" : "089cb139-7fc5-4f29-8fed-47c3d83bbcf6", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0f465bea-98db-4f9b-a22e-528604857d09", + "client-request-id" : "2c451586-974a-4ef0-a101-9f87fb2c124f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:52 GMT", + "date" : "Tue, 23 May 2023 04:48:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "e87b559a-d6d3-409b-8ead-36e1f27daaf9", + "request-id" : "f3f76a29-6bb0-481e-9642-145e55277396", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f7f8c266-6a1f-4cdf-89f6-56358d638c38", + "client-request-id" : "0161ce81-27b1-4ed8-a1cb-20631949e477", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:13:57 GMT", + "date" : "Tue, 23 May 2023 04:48:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "bfd7fd0e-959b-4fab-b6c3-8dcf427ffc5d", + "request-id" : "7e424809-4663-47e2-b509-2b654a6a15ba", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "b9216d1e-b226-41f6-9219-3c0810706fdb", + "client-request-id" : "e7081d6c-43f0-4b32-bc21-fdaefef4b683", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:02 GMT", + "date" : "Tue, 23 May 2023 04:48:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "46a851f5-306a-424f-931b-614ae677cea8", + "request-id" : "3dccc11a-2853-4e4f-ab37-07c18fec0936", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2d74005f-0582-4cd6-9208-22752e03735a", + "client-request-id" : "f9e5d111-83cc-48fe-bf2d-2ebe15dd9fb3", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:08 GMT", + "date" : "Tue, 23 May 2023 04:48:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "74becd4c-a577-47f6-8fde-fc86322555fe", + "request-id" : "242b336f-9c1e-46eb-a1f3-7a06da595d99", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "91a7b624-5369-47a3-b78d-3d423a6c2544", + "client-request-id" : "2b0b2260-dcfc-4c7b-9ba9-9b1232d8eb33", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:13 GMT", + "date" : "Tue, 23 May 2023 04:48:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "847c3fec-ecf8-4217-95c1-068976f26e7c", + "request-id" : "8abb0492-a3f9-450b-a864-9488b08f68a0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6e943942-71d8-4c5d-9431-d2225ae420d5", + "client-request-id" : "48339c7b-2c1c-44d0-b39f-8783f7d614f1", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:18 GMT", + "date" : "Tue, 23 May 2023 04:48:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "853f0f52-5b1a-4e1f-a9d5-92f6eab64775", + "request-id" : "1fbf7c48-c28b-4928-8f59-c829ec68959b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "8f02e536-cd43-4a83-97b9-ce2efb23bf04", + "client-request-id" : "b99a1a15-fd13-4b23-a3cc-86615b6e845f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:23 GMT", + "date" : "Tue, 23 May 2023 04:48:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "56ba370b-68a1-469f-a8d7-cc95f7472b0e", + "request-id" : "75e960eb-8155-428f-8725-6f282d58b18a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0a2c5653-65a0-49bc-822c-86a5c57767fb", + "client-request-id" : "3d447c8b-498d-453c-8046-1896bf0de154", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:28 GMT", + "date" : "Tue, 23 May 2023 04:48:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "b5f56c91-a772-4e0c-b96d-2d2666bf27b0", + "request-id" : "57c319cb-6676-46c5-99ea-9337f1b17426", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d56611ed-2f11-412f-8151-a8b13a4c9971", + "client-request-id" : "d3545fd3-2056-4eef-a502-3fe14bc32309", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:33 GMT", + "date" : "Tue, 23 May 2023 04:48:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "a9d84f8d-7a04-48ec-8aed-8c36546d9801", + "request-id" : "1930894e-c2ab-40e2-a0a3-b0940b51e070", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6d0c70ed-a831-4c8d-a101-98661a2fdbde", + "client-request-id" : "86148639-bd01-4f82-abfe-547113790e4b", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:38 GMT", + "date" : "Tue, 23 May 2023 04:49:03 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "fcafcb46-6229-4d97-97d8-15d4060e0070", + "request-id" : "17d5ab27-21a8-4669-9446-986e5ede7914", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2267042a-e75a-4ccf-84bf-d38367ec18d1", + "client-request-id" : "08a6993d-f788-4401-ba38-0877d23b9463", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:43 GMT", + "date" : "Tue, 23 May 2023 04:49:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "ed332692-bb9c-44f4-ae48-49795d1dae3f", + "request-id" : "841fde99-15b2-406b-a5b9-a6889606f47a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "8708031f-acbf-4b46-8ce5-3d6aa3169822", + "client-request-id" : "16365096-f03b-442b-9406-488ea1419703", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:48 GMT", + "date" : "Tue, 23 May 2023 04:49:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "3d1cdda0-7987-4bf2-b504-0ffeded2736e", + "request-id" : "bbfbc414-e83d-4db5-8fd7-99b1e4d392b1", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0c9273e3-5a4e-4150-aca2-2486a6b588d2", + "client-request-id" : "42507d0e-4c11-47dc-9bc7-54da05d80b2d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:53 GMT", + "date" : "Tue, 23 May 2023 04:49:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "35f125c2-65e2-4de2-a05e-e15304af7e96", + "request-id" : "46ac8884-3395-4eef-ad4f-c180f313ad98", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f119f49f-87fb-4290-a28e-525a05266adb", + "client-request-id" : "1a43c82f-f9fc-4146-97e8-d974f3669547", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:14:59 GMT", + "date" : "Tue, 23 May 2023 04:49:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "9b97dca5-8bdb-4a82-936c-7cb6fa3cdff2", + "request-id" : "3d6511f5-2221-49da-8729-2942a9035f56", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6d048948-66c5-4de7-828f-7b2b878cd040", + "client-request-id" : "053cad92-b165-4b1f-b826-cb6a36252b4d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:04 GMT", + "date" : "Tue, 23 May 2023 04:49:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "49035340-08b0-486e-bc43-6ee6e1a4fd12", + "request-id" : "a29f971c-8b73-4abf-821f-8737ac595896", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "5d95db64-bb92-4a38-8273-b46b7f6d23e5", + "client-request-id" : "084d9dfe-9316-49f3-a089-0adb40b0e7b1", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:09 GMT", + "date" : "Tue, 23 May 2023 04:49:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "40850afb-30d2-453d-ad4f-7120159565ba", + "request-id" : "10d206cb-16f6-4fe5-93f3-09e9fa929e8d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "1ddf4587-ba5a-44aa-a96f-e6a2fa6ad2d5", + "client-request-id" : "76265a7a-a7a2-43a6-afaf-eb95a5d6051c", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:14 GMT", + "date" : "Tue, 23 May 2023 04:49:39 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "b5e74892-59a2-448a-a41a-a7a24f422694", + "request-id" : "e56dcac0-0960-48f5-b2fb-dbc8133e5075", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ba011da2-13b9-422e-bc93-84f5952a52e1", + "client-request-id" : "98da83d9-4460-42d8-9644-3f07aabca9e3", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:19 GMT", + "date" : "Tue, 23 May 2023 04:49:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "736ebd99-a40a-4bcb-b975-29ee440dfd68", + "request-id" : "ed4f295c-45c7-4e5a-ad20-a7d1f744fb0d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "4af5272e-f59a-4cd2-90cf-5f3581ede2a3", + "client-request-id" : "3566e2c9-6fed-4417-b79a-a3cf7d1ac2da", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:24 GMT", + "date" : "Tue, 23 May 2023 04:49:50 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "b717e609-8e8e-42d4-a5ac-ce16d4280538", + "request-id" : "212cc74f-4e03-4800-a525-ff90da4120d7", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e7bf04e5-abc6-4cce-860a-839b54f4dfa0", + "client-request-id" : "416ae6c7-3c85-4196-9f08-068ea189e712", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:29 GMT", + "date" : "Tue, 23 May 2023 04:49:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "47a26b4d-7f23-4434-8d80-8a5be419618f", + "request-id" : "88540c9f-1d75-46ba-88ca-e4703206a362", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "dc838eaf-5aa8-4f34-ae78-6935ba6ee539", + "client-request-id" : "fca6e4f8-0186-49e5-a86e-f51e1fa22db1", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:35 GMT", + "date" : "Tue, 23 May 2023 04:50:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "418e37f4-4a51-4d52-aa5e-92894ff1ec47", + "request-id" : "806cdd69-ed06-48b9-96c2-25d71e3ccf10", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "779f53ae-a61f-4e06-a591-7db3ae6b6354", + "client-request-id" : "53b101bb-9212-4850-8116-4db545ac320a", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:39 GMT", + "date" : "Tue, 23 May 2023 04:50:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "984c4449-3be8-405d-a982-35a662fa2324", + "request-id" : "8c266a28-8e33-4c88-be95-d7537058175a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "8218519e-3177-454c-8a1e-b6651f4e874a", + "client-request-id" : "51ef7791-4d0d-422e-8f51-b810a7d01197", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:45 GMT", + "date" : "Tue, 23 May 2023 04:50:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "d7e0cef0-bdc0-40e3-9b59-4e09e615ac86", + "request-id" : "5f7ee535-21b2-4ccc-a62b-b389c29c1081", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "1a8d302f-4840-4084-85a6-51792949f951", + "client-request-id" : "2f228458-2f12-4eec-93a5-23e794fd7a02", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:50 GMT", + "date" : "Tue, 23 May 2023 04:50:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "a4200c26-8be4-46f7-a0ea-6b0c92754707", + "request-id" : "4ded249c-df94-4ad9-9f41-e8d53ba4abbf", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e3e070e6-f4ef-4a67-9761-d80acb9d38c8", + "client-request-id" : "ef5082e1-f159-4112-a1d3-9b943aace754", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:15:55 GMT", + "date" : "Tue, 23 May 2023 04:50:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "0d50c95a-afd8-4881-a465-25251ab91563", + "request-id" : "16d8a404-09ce-4fa2-a490-fe104a2dedf6", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "be5ecce0-4f1b-497f-beb4-ddb0ac82176d", + "client-request-id" : "6523de57-bf20-4036-8330-f3e060a19584", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:00 GMT", + "date" : "Tue, 23 May 2023 04:50:26 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "7f21a383-2fb2-44dd-8f4f-21a672e63143", + "request-id" : "655c77eb-fee3-4245-b5f7-f4afb0daae33", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "4a37f955-3cd1-4192-8e64-aeb4c5b5d7ef", + "client-request-id" : "35950220-94ca-44ae-989a-0f293d9f12f7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:05 GMT", + "date" : "Tue, 23 May 2023 04:50:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "3b724251-8a9e-4eaf-8730-b1025e9f9b9b", + "request-id" : "68b74bff-e498-4ead-877c-7d248531c07f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c9384ddc-8575-44ad-83e5-f786026b33f7", + "client-request-id" : "e61c90c0-0028-4d53-b658-e33a61d55af8", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:10 GMT", + "date" : "Tue, 23 May 2023 04:50:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "4b4ae983-6c24-4c31-b530-8395bc13600b", + "request-id" : "46b857c5-ee80-43ed-9d0a-b3dc551beda6", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "e464d956-c08a-4a75-8d44-bde8de41eb5b", + "client-request-id" : "36306405-626e-4f89-b478-6ffbeeb40b12", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:15 GMT", + "date" : "Tue, 23 May 2023 04:50:42 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "8220d796-4888-4b86-80a4-b44d50a4ae65", + "request-id" : "4c0c39dd-a2bf-4969-a011-7b06cb7e04fe", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "65fdc6ce-79f4-4565-b868-c179a7f559a9", + "client-request-id" : "174c9b59-87ab-4ce7-a23c-58cbe9a52c86", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:20 GMT", + "date" : "Tue, 23 May 2023 04:50:47 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "62fdd312-b61d-418b-9048-83055017ff2e", + "request-id" : "7554e2f9-2027-41e7-8270-a5c2aebab8b6", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "aed10e65-8452-4f39-a67e-16c3a6ea4e06", + "client-request-id" : "16df7788-0536-454d-82e6-8ff71b17c1ce", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:25 GMT", + "date" : "Tue, 23 May 2023 04:50:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "6d7ca1f5-3f29-4405-93e4-35c1c14d9874", + "request-id" : "05ac3fd3-bdd0-4a05-b539-d4b31a5c5fa9", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "8a963fc0-612f-4cdd-bcf7-763240203638", + "client-request-id" : "a99670c4-438d-4ca3-b61d-e332a1c4fb6d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:31 GMT", + "date" : "Tue, 23 May 2023 04:50:57 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "cbde7f64-62f9-4857-af5c-721cb990e7cd", + "request-id" : "9a129bf5-129d-4785-969a-6a91b1219d38", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f5655cef-65a0-40fc-9963-6a9023415543", + "client-request-id" : "e0ca72f2-89f9-4eee-ba53-732e0499856d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:36 GMT", + "date" : "Tue, 23 May 2023 04:51:02 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "6226adde-3097-4b94-9422-84d13e111ddc", + "request-id" : "87714de9-21ed-456c-a682-d8c3e4fbd15a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0b3e14fd-595a-4fc3-8909-2a7c8a930913", + "client-request-id" : "17d8b2f9-86ee-4954-b770-8f67761f3c33", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:41 GMT", + "date" : "Tue, 23 May 2023 04:51:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "550d3964-26da-4076-9ff6-537184d947b2", + "request-id" : "ab426f2c-118b-42b0-9cfb-64b6cbfc1c3a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d5c4a5a2-68c3-4880-9ab3-7c02830eaaf4", + "client-request-id" : "81d6a911-3c7a-47b8-b872-a6d5516f4e1f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:46 GMT", + "date" : "Tue, 23 May 2023 04:51:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "767cb02d-a1f4-498d-9ee5-55c0b3b46f55", + "request-id" : "748c9a2c-2a57-405e-bb05-373d47f0b4a5", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "40684ff6-21c9-4e34-8647-f269189c4106", + "client-request-id" : "b4b9aa41-cf2b-488f-9ea2-3d77cd29d70c", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:51 GMT", + "date" : "Tue, 23 May 2023 04:51:18 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "9bac90f6-86a5-4824-9f28-b2eb7b810230", + "request-id" : "992be8b3-7668-442b-9842-09a0c5a7844d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "23c2545a-26ef-4b75-b40e-33b69658c18a", + "client-request-id" : "9988bbd0-efdd-45bd-a294-89cb337494ea", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:16:56 GMT", + "date" : "Tue, 23 May 2023 04:51:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "ddb69ce2-4320-4a72-a87e-2d3a14d39db6", + "request-id" : "01c69d0c-24ee-4576-8f80-2e171bd3c392", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "5626fad8-f944-4764-a6d1-2a8503a039a0", + "client-request-id" : "da7267dd-5ca6-4e5e-a414-f719c16b39aa", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:01 GMT", + "date" : "Tue, 23 May 2023 04:51:28 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "7421b6c2-6d38-45a1-acd3-3c664cd95fcd", + "request-id" : "783fe0cb-1196-458d-8f67-280b7a2effb3", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ececbb77-86d7-449f-b4a9-b9bbbd613113", + "client-request-id" : "ee6ceaf0-c97f-4eeb-9886-1a257b15585a", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:06 GMT", + "date" : "Tue, 23 May 2023 04:51:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "78396c95-e1f8-4e7e-91b6-553e5b84ef91", + "request-id" : "009112ff-b8d5-4aa9-8514-d6a1eb693ce9", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "7ff8790d-6d9b-475e-a64d-6c6467b09fb3", + "client-request-id" : "d6aab393-986b-4884-8a97-348d8b8b112d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:11 GMT", + "date" : "Tue, 23 May 2023 04:51:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "479b8f87-59b7-4b8a-b21b-5f537384fe7f", + "request-id" : "9cf15947-7e07-4600-87d9-33ceeb059006", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "8b78b696-b136-44d7-8fc0-e34e75ca59e5", + "client-request-id" : "23f16907-e313-48c6-a4bc-72577328f1fd", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:16 GMT", + "date" : "Tue, 23 May 2023 04:51:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "18ae59ae-35d1-4895-904a-b906fa5e6e96", + "request-id" : "57040b9e-a0f1-4e21-b0c5-d70ebb550a8d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "276e2b4c-a15c-48b8-9fe6-b20981f63828", + "client-request-id" : "7e7eeb9f-baf5-4bc7-9297-1ef27bca1923", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:21 GMT", + "date" : "Tue, 23 May 2023 04:51:49 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "a89c0985-bc41-4e07-9020-061d6a6f6949", + "request-id" : "3dac1a8c-65c2-4cc1-896a-a6ef8979dedc", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9e3db764-b910-4e34-9357-0d5de247d68a", + "client-request-id" : "a0afdd23-3ec2-4006-9832-c05c4431525a", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:26 GMT", + "date" : "Tue, 23 May 2023 04:51:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "e8a5f1f0-68b0-4da1-b63d-d09f2ca20c0d", + "request-id" : "ee7833c4-b0f8-4b00-ae4c-f6cd0a5fb612", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "539d3469-b882-416b-a9e7-5addc5367319", + "client-request-id" : "5418dd0a-a595-41e2-915e-3c799f589478", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:31 GMT", + "date" : "Tue, 23 May 2023 04:51:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "661ab501-654e-4a80-b4f5-bdc0293306be", + "request-id" : "b5d4f167-dfd4-40f5-8f21-af8d0f6eeed6", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "5f0f4fd2-52ce-40dd-a519-74353cfc43c6", + "client-request-id" : "5f803ddd-9304-4373-9d03-7bcfca22c387", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:38 GMT", + "date" : "Tue, 23 May 2023 04:52:05 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "96e47801-bfe1-4a6b-b0d4-344010496182", + "request-id" : "0b6f8842-5569-4c2b-9480-8a50bde21226", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ebe616aa-5d52-42a1-bedb-20a9efd854be", + "client-request-id" : "ca9524f4-4b09-466e-a1b8-d6076ff7fdc6", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:42 GMT", + "date" : "Tue, 23 May 2023 04:52:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "68170a59-9abf-42a9-adfd-4cb405a5ac7f", + "request-id" : "93f51e8f-4a2f-46f9-b98a-de319949c716", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "b5d68c01-4d24-44e1-9694-2824dea4ec3f", + "client-request-id" : "c5868ebe-3c92-4e81-8141-9eb32cd7f59f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:47 GMT", + "date" : "Tue, 23 May 2023 04:52:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "a7cf6ec8-45f9-4e82-ab31-e79cab8fe05e", + "request-id" : "92d539fb-e03e-4d3c-8f6f-64d8daff0689", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6780a67b-d6d8-4e99-b175-fdfd4b2e278c", + "client-request-id" : "2e18fc96-d695-4242-9f77-426caa8d7e86", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:52 GMT", + "date" : "Tue, 23 May 2023 04:52:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "95d91e9d-2642-4961-8de0-2e03dab0bd3d", + "request-id" : "6f22416a-3440-48dd-bea3-63c6e30a5315", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "16ece414-8604-4d52-bc94-f89f63c2824a", + "client-request-id" : "3bd96a28-c17e-48b5-8811-9c6884d18d25", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:17:57 GMT", + "date" : "Tue, 23 May 2023 04:52:25 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "381cf971-22da-4246-b4d7-09846439f81c", + "request-id" : "09d4d259-0785-4346-96ff-d9d8eee1ac9c", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "882aa08c-a03d-4575-b3e5-283ebc921628", + "client-request-id" : "e0bad1af-3b77-43df-91a3-c4cff020da2d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:02 GMT", + "date" : "Tue, 23 May 2023 04:52:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "3928c093-9285-477c-a40e-9effa3bd8e75", + "request-id" : "f1948eba-ec94-4b1c-94f3-84ac41b4e9f4", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0c5f870e-f740-4755-96e0-99e17f0927d7", + "client-request-id" : "f135f727-c5ee-4e16-803d-afcb05e5799e", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:07 GMT", + "date" : "Tue, 23 May 2023 04:52:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "f12a8f7b-3063-4e6f-aef9-b40f29dead88", + "request-id" : "af529371-7284-40e6-915e-49ed5ce2cfac", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a80f9676-dfd3-4eb8-b9f6-05f89d77c2e9", + "client-request-id" : "46da9c99-9d75-4903-8f1f-7834b12a8bb5", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:13 GMT", + "date" : "Tue, 23 May 2023 04:52:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "8fb59304-ad49-4783-b0e9-3604224f6cfd", + "request-id" : "dd5a82ee-54d1-4491-a86f-a7a31461fd40", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "4b419f64-4876-4bf4-9509-c48cbef47399", + "client-request-id" : "d2b8e5f8-d890-43c0-ab49-815d811856df", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:18 GMT", + "date" : "Tue, 23 May 2023 04:52:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "e61a9503-ca99-4ede-b6f6-71822fc18c8a", + "request-id" : "a3a8fb3b-7ced-4e49-ba7d-89f777908215", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ab2fe473-d1f1-4411-8757-723ffcb72c2a", + "client-request-id" : "45b83d45-b0db-4554-bf57-b8b34d99f809", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:23 GMT", + "date" : "Tue, 23 May 2023 04:52:51 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "bb19c5f1-ad41-4079-8b17-f7f8ec0e59fc", + "request-id" : "bdc45982-9a12-457f-a217-4e8fda9865f8", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6c06fdc5-eabc-4d8d-8f04-047a0cc05666", + "client-request-id" : "420ab8d6-db96-4df1-bbe5-5ababbe1d5e7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:28 GMT", + "date" : "Tue, 23 May 2023 04:52:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "6efbaa62-943d-4a60-874a-f8eb905eac99", + "request-id" : "3330034b-ecb3-42cf-b134-77359095a535", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d1ce1cf4-afcc-47ae-9458-3426cf23e9fc", + "client-request-id" : "a030b996-e8bd-4887-a3a0-45d1fe3b6d3d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:33 GMT", + "date" : "Tue, 23 May 2023 04:53:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "37258514-48c9-4c77-a64f-4c0a9f0bd28b", + "request-id" : "33b2a2de-9e02-4e7a-b037-e96c0ee3c32f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "045806d4-0cd7-48d9-bfda-f6038bf58fa3", + "client-request-id" : "3d253dd2-2e4f-4441-b3e4-9cc178813f17", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:38 GMT", + "date" : "Tue, 23 May 2023 04:53:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "72672140-9b24-446b-ac39-195ca6123793", + "request-id" : "e40d2f67-cc06-4a74-a796-43cb8a465bda", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "84a17cb2-baf6-4bb2-b140-fd1e89871a19", + "client-request-id" : "6345adcd-5950-47d0-a0ef-b6e24f6bb8ca", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:44 GMT", + "date" : "Tue, 23 May 2023 04:53:12 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "b706b047-8d61-460b-9ee1-a205a4e40a87", + "request-id" : "657f923d-9c87-4a6b-b114-ea6e85ef0c42", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "682bc24f-0962-4aba-a27b-e91bbf9b0187", + "client-request-id" : "58bfc22d-7138-488a-b462-63115f4da422", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:49 GMT", + "date" : "Tue, 23 May 2023 04:53:17 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "52e9638b-3c50-40ea-82c3-28e411e96507", + "request-id" : "466b9fbb-4a98-42f2-b9d1-66b1844b2881", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "b80b0472-8597-4191-a522-54985ad2d3d5", + "client-request-id" : "ef6de61d-6cd1-420e-8cd7-098fb1410b94", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:54 GMT", + "date" : "Tue, 23 May 2023 04:53:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "ca2d7c7a-dcc5-4524-9948-11e776c22a2a", + "request-id" : "a5b03471-4295-4253-b908-4c3a913430a0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "52f06085-3b0a-4d7d-9cb0-71f294a8ce3c", + "client-request-id" : "efd49722-1e8b-4434-a8fc-987f8b42dd12", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:18:59 GMT", + "date" : "Tue, 23 May 2023 04:53:27 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "dbb7459c-ec44-476d-aed8-4029a4d43fe1", + "request-id" : "2dcf6b59-aa10-4e9d-b007-5194af528e9b", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9f9d34e8-e05c-4d67-af3e-bbd9cfb7546b", + "client-request-id" : "4c623cf2-ceeb-47ee-b454-70fb630f18f9", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:19:04 GMT", + "date" : "Tue, 23 May 2023 04:53:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "db1d1246-b9ff-443c-8802-905536878fa7", + "request-id" : "892671aa-f287-49b1-ac36-d343bf614cae", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "73afb908-d50b-47fb-8005-23dac8ca21a3", + "client-request-id" : "244bbf4d-c0ab-4ee4-baf7-7b63793ed218", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:19:09 GMT", + "date" : "Tue, 23 May 2023 04:53:38 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "208ad363-fc29-453a-91e9-f6c8b63c5ff8", + "request-id" : "5ded682f-9ff7-4dce-98d8-5fd8e5fdc644", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:12:46 GMT", + "last-modified" : "Tue, 23 May 2023 04:47:04 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "27e8a4dc-ef90-4c77-b80f-017688fbe687", + "client-request-id" : "ccfa6aab-0dd2-4d3c-8da5-7f6dfe4a8e13", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC7243BD8395E", + "etag" : "0x8DB5B48C15E0065", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DAC7243BD8395E\",\"lastModified\":\"2022-11-15T16:12:46.3122782Z\",\"creationTime\":\"2022-11-15T16:10:44.6039186Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:12:46.3122782Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:12:46.3599988Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-CRUDPaaS\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS\",\"eTag\":\"0x8DB5B48C15E0065\",\"lastModified\":\"2023-05-23T04:47:04.2993253Z\",\"creationTime\":\"2023-05-23T04:45:32.0142654Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:47:04.2993253Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:47:04.3133259Z\",\"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 },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:19:15 GMT", - "content-length" : "328", + "date" : "Tue, 23 May 2023 04:53:43 GMT", + "content-length" : "343", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "ffa946b8-19e8-4979-a5c7-b43b324d0674", + "client-request-id" : "8ab522d5-fa1d-47d6-a5a4-487080eab8d1", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "f88f084d-cb48-4d15-ae3b-67152c84ac40", + "request-id" : "7b24daf9-7eb4-4272-a494-b91365f2acd3", "StatusCode" : "404", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:f88f084d-cb48-4d15-ae3b-67152c84ac40\\nTime:2022-11-15T16:19:15.3133345Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:7b24daf9-7eb4-4272-a494-b91365f2acd3\\nTime:2023-05-23T04:53:43.8556985Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-CRUDPaaS?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:19:15 GMT", + "date" : "Tue, 23 May 2023 04:53:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "8c9abd7f-7c21-4128-b22e-65ed820bab73", + "client-request-id" : "08eb1dca-61e5-4706-820f-f1163e5ff9da", "retry-after" : "0", - "request-id" : "b00fe658-6b74-4a41-aa92-3b2a9705d1a7", + "request-id" : "6ba4bfb9-c74b-4a8a-98c4-c83c8273020f", "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 496d2e1d3e9d..7ca1a200070e 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,247 +1,256 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:33:58 GMT", + "date" : "Tue, 23 May 2023 05:05:40 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "8ef69383-2075-4320-b4ad-31ec31683205", + "request-id" : "d9ef2c3e-9599-4c56-ac32-1b8d2b2f851c", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:33:59 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:40 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d236fd61-039d-4c53-a1ff-4ec1a952060e", - "etag" : "0x8DAC8D2ACB93A83", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "2eed979e-7565-4368-9034-5b41c02cdeac", + "etag" : "0x8DB5B4B5AA77004", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:33:59 GMT", + "date" : "Tue, 23 May 2023 05:05:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", "retry-after" : "0", - "request-id" : "db42ccb8-bd76-4a2c-bffc-f562e6fa8f61", + "request-id" : "b6138aaa-1d55-470c-9073-ad4f6106ad92", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:00 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:41 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "b26701ea-3057-4265-9e99-1b6e0f467b9d", - "etag" : "0x8DAC8D2AD4CA483", - "location" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", + "client-request-id" : "0f7adc4e-3f4d-422c-a750-59ad9462d728", + "etag" : "0x8DB5B4B5B56CEC4", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:00 GMT", + "date" : "Tue, 23 May 2023 05:05:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "b4f1ef71-d03e-40f3-9cdf-db190c92dc6b", + "request-id" : "085d49bd-be44-4344-8e00-b5dfc4577d77", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:00 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:41 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "bac44609-718a-416b-8164-5ddb15d29d58", + "client-request-id" : "d6a25e3f-24cf-48ec-b933-1b82851a0c3f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D2AD4CA483", + "etag" : "0x8DB5B4B5B56CEC4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DAC8D2AD4CA483\",\"creationTime\":\"2022-11-17T19:34:00.2515075Z\",\"lastModified\":\"2022-11-17T19:34:00.2515075Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-17T19:34:00.2515075Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2022-11-18T19%3A34%3A00Z&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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5B4B5B56CEC4\",\"creationTime\":\"2023-05-23T05:05:41.6147652Z\",\"lastModified\":\"2023-05-23T05:05:41.6147652Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T05:05:41.6147652Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A41Z&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://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:00 GMT", + "date" : "Tue, 23 May 2023 05:05:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", "retry-after" : "0", - "request-id" : "85ba5f4f-3bf9-4774-a52b-7c9215a79b5f", + "request-id" : "98d07b8c-4ad7-493d-bace-829406893af0", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:00 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "33dc967e-6d88-4cb9-807d-8d6784c4c66b", - "etag" : "0x8DAC8D2AD8715B7", + "client-request-id" : "93a908e5-a1d5-4c79-b8d5-cdf1bf21e79b", + "etag" : "0x8DB5B4B5B98A24A", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:00 GMT", + "date" : "Tue, 23 May 2023 05:05:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "2a2d047b-f1df-43d1-909a-767ef8a6fbcd", + "request-id" : "3a1f4d95-b047-4c74-af9f-b0a091e27e34", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:00 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "7ae05097-26a0-4243-9fb8-71354b5e60f4", + "client-request-id" : "f3d88228-cd52-4bec-aac4-6452651ac729", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D2AD8715B7", + "etag" : "0x8DB5B4B5B98A24A", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DAC8D2AD8715B7\",\"creationTime\":\"2022-11-17T19:34:00.2515075Z\",\"lastModified\":\"2022-11-17T19:34:00.6345143Z\",\"state\":\"running\",\"stateTransitionTime\":\"2022-11-17T19:34:00.699505Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-17T19:34:00.696157Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2022-11-18T19%3A34%3A00Z&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-11-17T19:34:00.745464Z\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"nodeUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"taskRootDirectory\":\"workitems/BatchUser-canCRUDTest/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d/files/workitems/BatchUser-canCRUDTest/job-1/mytask\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5B4B5B98A24A\",\"creationTime\":\"2023-05-23T05:05:41.6147652Z\",\"lastModified\":\"2023-05-23T05:05:42.0461642Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T05:05:41.6147652Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A41Z&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://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:00 GMT", + "date" : "Tue, 23 May 2023 05:05:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "2de0f9e5-be23-4494-802c-fb0b9d018505", + "client-request-id" : "2417c03f-c9d6-435f-87b1-5e0f5c3e2e3f", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "d455101d-d955-4d8f-b58c-52b0c52983ff", + "request-id" : "bc23b808-2b10-4f63-98e5-56648710bfbf", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DAC8D2AD8715B7\",\"creationTime\":\"2022-11-17T19:34:00.2515075Z\",\"lastModified\":\"2022-11-17T19:34:00.6345143Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-11-17T19:34:00.838544Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2022-11-17T19:34:00.699505Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2022-11-18T19%3A34%3A00Z&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-11-17T19:34:00.745464Z\",\"endTime\":\"2022-11-17T19:34:00.838544Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"nodeUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"taskRootDirectory\":\"workitems/BatchUser-canCRUDTest/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d/files/workitems/BatchUser-canCRUDTest/job-1/mytask\"\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5B4B5B98A24A\",\"creationTime\":\"2023-05-23T05:05:41.6147652Z\",\"lastModified\":\"2023-05-23T05:05:42.0461642Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T05:05:41.6147652Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A41Z&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://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2022-10-01.16.0&%24select=id%2C%20state", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:00 GMT", + "date" : "Tue, 23 May 2023 05:05:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "3a02ba3c-c24a-4467-be8a-cada4caa5d52", + "client-request-id" : "1d99515b-e50c-4528-8f3d-7f4228e17b51", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "536650c8-f101-40af-a06f-fd187d9d5f2d", + "request-id" : "1b1a68c4-7172-434c-a9ad-93e995ae2dda", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:00 GMT", + "date" : "Tue, 23 May 2023 05:05:52 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "client-request-id" : "925b6db6-2f2b-458a-868b-50634b48f582", + "content-type" : "application/json;odata=minimalmetadata", + "retry-after" : "0", + "request-id" : "2fee51f7-97f0-4745-bec0-3211ca5ee8c3", + "StatusCode" : "200", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 05:05:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "72fcd1bd-38d7-425f-aa72-d08726296ce6", + "request-id" : "f21fe0c1-405b-4731-bcc6-d7d5472a2c54", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:00 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d6e979b3-41c5-4b67-b2b3-959a82003585", + "client-request-id" : "bca63540-7ff3-4081-9e70-1a5edb8457d7", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D2AD8715B7", + "etag" : "0x8DB5B4B5B98A24A", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DAC8D2AD8715B7\",\"creationTime\":\"2022-11-17T19:34:00.2515075Z\",\"lastModified\":\"2022-11-17T19:34:00.6345143Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-11-17T19:34:00.838544Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2022-11-17T19:34:00.699505Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2022-11-18T19%3A34%3A00Z&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-11-17T19:34:00.745464Z\",\"endTime\":\"2022-11-17T19:34:00.838544Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"nodeUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"taskRootDirectory\":\"workitems/BatchUser-canCRUDTest/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d/files/workitems/BatchUser-canCRUDTest/job-1/mytask\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5B4B5B98A24A\",\"creationTime\":\"2023-05-23T05:05:41.6147652Z\",\"lastModified\":\"2023-05-23T05:05:42.0461642Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2023-05-23T05:05:43.493008Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2023-05-23T05:05:43.357366Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A41Z&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\":\"2023-05-23T05:05:43.399362Z\",\"endTime\":\"2023-05-23T05:05:43.493008Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"nodeUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"taskRootDirectory\":\"workitems/BatchUser-canCRUDTest/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d/files/workitems/BatchUser-canCRUDTest/job-1/mytask\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask/files/stdout.txt?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask/files/stdout.txt?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:01 GMT", + "date" : "Tue, 23 May 2023 05:05:52 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", - "transfer-encoding" : "chunked", "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fsdktest.westus.batch.azure.com%2Fjobs%2FBatchUser-canCRUDTest%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fsdkbatchaccount.westcentralus.batch.azure.com%2Fjobs%2FBatchUser-canCRUDTest%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", "retry-after" : "0", - "request-id" : "916f4320-3b02-4a6e-a94e-d8f07e5c4f3e", + "request-id" : "fd1d7dc3-5afe-44b4-8939-0b797303825c", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:00 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:43 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9406bd6c-bcf5-41d1-9395-4333202c97ea", + "client-request-id" : "26163b46-18fe-457b-aafb-770a2fb17395", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "This is an example" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d/uploadbatchservicelogs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d/uploadbatchservicelogs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:01 GMT", + "date" : "Tue, 23 May 2023 05:05:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "a4a7882d-d71a-4354-97c0-08f8554acd8d", + "client-request-id" : "68c9c25e-ef34-4aa0-943e-98468855e32f", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "00e48e30-700d-4243-887e-5aee011af66b", + "request-id" : "c5daaf6a-b8a6-494f-8826-40bc53e60d54", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.UploadBatchServiceLogsResult\",\"virtualDirectoryName\":\"sdktest-22F022FA85183379/batchuser-testiaaspool/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d/00e48e30-700d-4243-887e-5aee011af66b\",\"numberOfFilesUploaded\":1\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.UploadBatchServiceLogsResult\",\"virtualDirectoryName\":\"sdkbatchaccount-22EED04E5AF66D02/batchuser-testiaaspool/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d/c5daaf6a-b8a6-494f-8826-40bc53e60d54\",\"numberOfFilesUploaded\":1\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:01 GMT", + "date" : "Tue, 23 May 2023 05:05:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "a6069ffd-67a9-46e3-ab9f-d6c781b1347b", + "client-request-id" : "7d1f3e53-186f-407c-9ec7-c768f3c33742", "retry-after" : "0", - "request-id" : "dc7b193e-6901-42b7-8eb2-98ac734ccd27", + "request-id" : "d5da534a-f195-4fdb-b829-de69f747d360", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "", @@ -249,40 +258,39 @@ } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:01 GMT", - "content-length" : "328", + "date" : "Tue, 23 May 2023 05:05:53 GMT", + "content-length" : "343", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "8e7d1658-6814-485e-a0c6-04f1715e03a9", + "client-request-id" : "b77da486-06cc-4768-a5a1-d879183d460e", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "9b25caaf-ee5e-4295-8719-fb11ebc4ffad", + "request-id" : "f262a9e5-98ab-47d0-a8c5-588f3214d1b9", "StatusCode" : "404", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:9b25caaf-ee5e-4295-8719-fb11ebc4ffad\\nTime:2022-11-17T19:34:02.0139808Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:f262a9e5-98ab-47d0-a8c5-588f3214d1b9\\nTime:2023-05-23T05:05:54.5606011Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-canCRUDTest?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:01 GMT", + "date" : "Tue, 23 May 2023 05:05:53 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "7eb288b2-0c1f-4df1-b720-408fa92852cc", + "client-request-id" : "3968a189-2a9c-49b6-8031-329d299dc0a7", "retry-after" : "0", - "request-id" : "4d19b6a5-f921-4b95-8522-b5fdb4eec133", + "request-id" : "0886f98c-097b-44dd-9b5c-0d8d788c04ca", "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 5c21a3c28489..4ada0e25bbbb 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,40 +1,39 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:04:58 GMT", - "content-length" : "1054", + "date" : "Tue, 23 May 2023 04:39:36 GMT", + "content-length" : "1069", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "dae045c3-1886-405d-a977-21e61b785659", + "client-request-id" : "51fa1a25-a09f-4453-9e95-e771cb061e19", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "1b3c1e65-d6a9-4366-b4a0-219088b16f26", + "request-id" : "9865a962-0bd4-4fd4-b33e-9794317d03f2", "StatusCode" : "400", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:1b3c1e65-d6a9-4366-b4a0-219088b16f26\\nTime:2022-11-15T16:04:58.0710765Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"PropertyName\",\"value\":\"virtualMachineImageId\"\r\n },{\r\n \"key\":\"PropertyValue\",\"value\":\"/subscriptions/65634139-3762-476b-946d-e221f4cdc2bf/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://sdkbatchaccount.westcentralus.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:9865a962-0bd4-4fd4-b33e-9794317d03f2\\nTime:2023-05-23T04:39:37.0387450Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"PropertyName\",\"value\":\"virtualMachineImageId\"\r\n },{\r\n \"key\":\"PropertyValue\",\"value\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/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://sdktest.westus.batch.azure.com/pools/BatchUser-customImageExpErr?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-customImageExpErr?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:04:58 GMT", + "date" : "Tue, 23 May 2023 04:39:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "53db6cd0-477a-45a5-91df-ecd0b7317da8", + "client-request-id" : "eca8ef8f-0a42-4a20-9866-0ac5a9bfb022", "retry-after" : "0", - "request-id" : "5000912d-1f06-4b55-93fd-6c8b2f9d28de", + "request-id" : "64faedd9-1793-40ac-8cce-7f471a08647b", "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 22079bf588cd..cd16b72ddef4 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,88 +1,84 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:39 GMT", + "date" : "Tue, 23 May 2023 04:42:30 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool3", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool3", "retry-after" : "0", - "request-id" : "876ee0bf-596f-4634-9573-c35da322e4ae", + "request-id" : "81df8663-bce6-4cef-a7c6-6ec2818311c2", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:10:39 GMT", + "last-modified" : "Tue, 23 May 2023 04:42:31 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "22d5d53e-aa82-4a5d-94d8-cd1f9b1fc8bc", - "etag" : "0x8DAC723F01452F5", - "location" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool3", + "client-request-id" : "3256db5e-deb8-441a-9575-ebeea0b4922f", + "etag" : "0x8DB5B481ECF0E38", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool3", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool3?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool3?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:39 GMT", + "date" : "Tue, 23 May 2023 04:42:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "ea86be1d-7355-45ce-906c-f79549563c54", + "request-id" : "d13612bf-0af3-41ae-932b-8372bae7312f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:10:39 GMT", + "last-modified" : "Tue, 23 May 2023 04:42:31 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "4850db60-0397-424b-a1a2-145dc152679f", + "client-request-id" : "03137162-b0d6-486c-8c06-d60c5b6be25f", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC723F01452F5", + "etag" : "0x8DB5B481ECF0E38", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool3\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool3\",\"eTag\":\"0x8DAC723F01452F5\",\"lastModified\":\"2022-11-15T16:10:39.1993077Z\",\"creationTime\":\"2022-11-15T16:10:39.1993077Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T16:10:39.1993077Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:10:39.1993077Z\",\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"dynamicVNetAssignmentScope\":\"none\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool3\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool3\",\"eTag\":\"0x8DB5B481ECF0E38\",\"lastModified\":\"2023-05-23T04:42:31.5716152Z\",\"creationTime\":\"2023-05-23T04:42:31.5716152Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:42:31.5716152Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:42:31.5716152Z\",\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n }\r\n}" } }, { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool3?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool3?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:39 GMT", + "date" : "Tue, 23 May 2023 04:42:31 GMT", + "last-modified" : "Tue, 23 May 2023 04:42:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", + "x-content-type-options" : "nosniff", + "client-request-id" : "9c4119d8-02a6-4d19-8fef-4ad6fea02111", + "etag" : "0x8DB5B481ECF0E38", "retry-after" : "0", - "request-id" : "58782827-f6bd-4d50-8719-cc464e5089d6", + "request-id" : "58b1d2a2-7de7-40a7-930e-3bd79b466ac3", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 16:10:39 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "d1b88f60-4ab0-4630-b6f8-3d3963b1f18f", - "etag" : "0x8DAC723F01452F5", "dataserviceversion" : "3.0", - "Body" : "" + "Body" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool3?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool3?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:40 GMT", + "date" : "Tue, 23 May 2023 04:42:32 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "fb8fd0ff-3638-481e-a555-241ac77fefb7", + "client-request-id" : "b442a0c8-6625-49dd-b53f-6007c76af7cc", "retry-after" : "0", - "request-id" : "3087dbea-9c52-4b2c-a869-3feee98339cd", + "request-id" : "dd4ffe17-8952-47ea-89cf-8be2cd48e1d0", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canInstallVMExtension.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canInstallVMExtension.json new file mode 100644 index 000000000000..e4fa8863364b --- /dev/null +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canInstallVMExtension.json @@ -0,0 +1,364 @@ +{ + "networkCallRecords" : [ { + "Method" : "POST", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:42:36 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension", + "retry-after" : "0", + "request-id" : "7fd0c7bf-ad2a-4a8e-a4fe-80b123378078", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:42:37 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "c734206e-8ae5-4904-b8fc-b58d54c29331", + "etag" : "0x8DB5B48220D94F2", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension", + "dataserviceversion" : "3.0", + "Body" : "" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:42:37 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "1c0ed484-0015-428a-8140-02b3a09d76ea", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:42:37 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "da210bca-9fa0-481a-924a-6b5df9261f40", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B48220D94F2", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B48220D94F2\",\"lastModified\":\"2023-05-23T04:42:37.0145522Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:42:37.0145522Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:42:37.0145522Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"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\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:43:07 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "82fdd577-795c-460e-a5d9-9b515e7a10bc", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:42:37 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "ab4d214f-248c-414d-9752-1d3160894f6b", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B48220D94F2", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B48220D94F2\",\"lastModified\":\"2023-05-23T04:42:37.0145522Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:42:37.0145522Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:42:37.0145522Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"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\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:43:37 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "be6e2dae-3a9a-4cc4-b9d8-15edceb8b9ef", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:42:37 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "eb5aa351-8ac4-48b1-bf84-14f25a812432", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B48220D94F2", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B48220D94F2\",\"lastModified\":\"2023-05-23T04:42:37.0145522Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:42:37.0145522Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:34.5089649Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":1,\"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\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:43:37 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "client-request-id" : "e1797ba5-0de1-4a80-ae3d-a3604ea99741", + "content-type" : "application/json;odata=minimalmetadata", + "retry-after" : "0", + "request-id" : "d56c2062-da18-4c03-971e-92979880a374", + "StatusCode" : "200", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_5d83eb1bd23a5c99890f40b74a29d056fa67d0430c300f796ac03380517fc5c4_p\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_5d83eb1bd23a5c99890f40b74a29d056fa67d0430c300f796ac03380517fc5c4_p\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2023-05-23T04:43:34.5372822Z\",\"allocationTime\":\"2023-05-23T04:43:33.5841201Z\",\"ipAddress\":\"10.0.0.7\",\"affinityId\":\"TVM:tvmps_5d83eb1bd23a5c99890f40b74a29d056fa67d0430c300f796ac03380517fc5c4_p\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":false,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.69.17.78\",\"publicFQDN\":\"dnsd9221449-1fd9-4a4c-a39f-b3ddb10f6498-azurebatch-cloudservice.westcentralus.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.202305220\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_cdae8dde77e87891bf52af307a9a3d1cd04f54e9ef6f4bd60d0e335d9dd77052_d\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_cdae8dde77e87891bf52af307a9a3d1cd04f54e9ef6f4bd60d0e335d9dd77052_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2023-05-23T04:43:29.4587127Z\",\"allocationTime\":\"2023-05-23T04:43:28.561738Z\",\"ipAddress\":\"10.0.0.6\",\"affinityId\":\"TVM:tvmps_cdae8dde77e87891bf52af307a9a3d1cd04f54e9ef6f4bd60d0e335d9dd77052_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.69.17.51\",\"publicFQDN\":\"dns9d6d8128-f762-45cc-bb79-1296d18c3e17-azurebatch-cloudservice.westcentralus.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.202305220\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "strict-transport-security" : "max-age=31536000; includeSubDomains" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_5d83eb1bd23a5c99890f40b74a29d056fa67d0430c300f796ac03380517fc5c4_p/extensions/secretext?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:43:41 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "content-type" : "application/json;odata=minimalmetadata", + "retry-after" : "0", + "request-id" : "e97cb2ed-fa6b-4f9f-9623-403ce46c27cf", + "StatusCode" : "200", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#extensions/@Element\",\"provisioningState\":\"Creating\",\"instanceView\":{},\"vmExtension\":{\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":false,\"enableAutomaticUpgrade\":true\r\n }\r\n}", + "strict-transport-security" : "max-age=31536000; includeSubDomains" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_cdae8dde77e87891bf52af307a9a3d1cd04f54e9ef6f4bd60d0e335d9dd77052_d/extensions/secretext?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:43:41 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "content-type" : "application/json;odata=minimalmetadata", + "retry-after" : "0", + "request-id" : "26fb3bd3-be6b-49fd-88a6-7b8a2c0dd84c", + "StatusCode" : "200", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#extensions/@Element\",\"provisioningState\":\"Creating\",\"instanceView\":{},\"vmExtension\":{\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":false,\"enableAutomaticUpgrade\":true\r\n }\r\n}", + "strict-transport-security" : "max-age=31536000; includeSubDomains" + } + }, { + "Method" : "DELETE", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:43:42 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "client-request-id" : "4a815f56-2214-4fdb-b02d-176c178fdfdd", + "retry-after" : "0", + "request-id" : "03f3bc24-30c3-445c-85ba-d3696044f73a", + "StatusCode" : "202", + "dataserviceversion" : "3.0", + "Body" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:43:42 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "b1b06a6a-fe0c-43a7-b063-2dc90a3532f4", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "4ec96902-8ae1-4eab-8e77-091c831e78e1", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B4848FA761E", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:43:57 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "23966f9c-c4c8-4890-8f14-2702eec8fce5", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "0eec9a60-d3cf-41fa-a1d1-b403138ceacc", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B4848FA761E", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:44:12 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "e3a4da77-2ae7-4e68-9c3a-b7f727351d78", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "b8de2b95-463a-4ec5-9508-96186c31dc0b", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B4848FA761E", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:44:27 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "4eb936b0-000b-44eb-8304-65974b65c65b", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "18f32586-be10-4e13-826d-e5c26aac363e", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B4848FA761E", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:44:43 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "199d6f78-5816-47a4-81cc-99ba31b5ddfd", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "0c3cb1fe-09ab-4414-a955-bad061e32249", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B4848FA761E", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:44:57 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "a075db51-dec8-42b6-a500-5f54a770c19e", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "782a7fa7-833b-4add-b48a-c90efb40e41c", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B4848FA761E", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:45:13 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "eb96d068-c900-44fb-b1d7-4519312a7ca2", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "e96b9718-0e48-4e51-ba2f-61f26de5ffbd", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB5B4848FA761E", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:45:28 GMT", + "content-length" : "343", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "client-request-id" : "62778cde-8d6d-498a-a829-29be9d396a75", + "content-type" : "application/json;odata=minimalmetadata", + "retry-after" : "0", + "request-id" : "d2be7118-b0f3-4f5e-ada6-455428d57a9a", + "StatusCode" : "404", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:d2be7118-b0f3-4f5e-ada6-455428d57a9a\\nTime:2023-05-23T04:45:28.8427600Z\"\r\n }\r\n}", + "strict-transport-security" : "max-age=31536000; includeSubDomains" + } + }, { + "Method" : "HEAD", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Tue, 23 May 2023 04:45:28 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "client-request-id" : "f7b5af62-7c75-4469-848c-2aeb8b084d6e", + "retry-after" : "0", + "request-id" : "34e7267f-3e01-4247-bdf9-bc47c214ea71", + "StatusCode" : "404", + "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/canReadFromNode.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canReadFromNode.json index 73559541eee5..46a83b676b38 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,182 +1,174 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:37 GMT", + "date" : "Tue, 23 May 2023 03:25:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "a8a8503a-43cb-4272-afe5-295454dbd141", + "request-id" : "a8a1214c-caf9-4fcb-8297-a5141066002d", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:37 GMT", + "last-modified" : "Tue, 23 May 2023 03:25:12 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c1f8a2f9-8105-4938-8ca0-f1b593a34f00", - "etag" : "0x8DAC6B97BDD03BE", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "2ddc6a9b-c021-4501-b3ae-78da2a75bf82", + "etag" : "0x8DB5B3D5189112D", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:37 GMT", + "date" : "Tue, 23 May 2023 03:25:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask", "retry-after" : "0", - "request-id" : "ce4956ee-ddcc-4fe4-8b49-f5e61933ced7", + "request-id" : "b3fe7af2-d6ed-4108-98d6-91473827a511", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:37 GMT", + "last-modified" : "Tue, 23 May 2023 03:25:12 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c190d0e1-a752-4cfb-813b-66fe1e524db3", - "etag" : "0x8DAC6B97BF22E99", - "location" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask", + "client-request-id" : "71f26706-5b17-48ce-a957-51e1416a2308", + "etag" : "0x8DB5B3D51A5C7CC", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2022-10-01.16.0&%24select=id%2C%20state", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:37 GMT", + "date" : "Tue, 23 May 2023 03:25:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "6f48dc4e-ec93-442e-8267-c6563b8b9650", + "client-request-id" : "29bf39b6-1e1a-4e06-8527-cb841334b7f3", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "07ab3729-13f8-419f-8181-48acaf6b0a1d", + "request-id" : "fd2fa9b8-e895-4f19-8cf0-ee9e17a17260", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2022-10-01.16.0&%24select=id%2C%20state", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:47 GMT", + "date" : "Tue, 23 May 2023 03:25:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "cd7d7c63-4961-47cb-b93e-fa0c4517ac4d", + "client-request-id" : "0e602088-780e-4dfa-b0e3-aa95cb2c17d9", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "eb048165-44c4-41d2-8557-3ff0a330c7d2", + "request-id" : "a2a9b80c-9e51-41b9-a9a8-bfad864deb33", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:47 GMT", + "date" : "Tue, 23 May 2023 03:25:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "0c10aa38-8f23-4762-90ac-1cb2b4be24bb", + "request-id" : "69edbea1-749f-487b-a352-dab66cd2d0fb", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:37 GMT", + "last-modified" : "Tue, 23 May 2023 03:25:12 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c48ccfd3-8ea4-4163-b602-1427d2126ee1", + "client-request-id" : "c3931c22-d0a6-4279-86f5-20524f8975db", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B97BF22E99", + "etag" : "0x8DB5B3D51A5C7CC", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask\",\"eTag\":\"0x8DAC6B97BF22E99\",\"creationTime\":\"2022-11-15T03:28:37.7065113Z\",\"lastModified\":\"2022-11-15T03:28:37.7065113Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-11-15T03:28:38.390289Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2022-11-15T03:28:38.272751Z\",\"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-11-15T03:28:38.330418Z\",\"endTime\":\"2022-11-15T03:28:38.390289Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d\",\"nodeUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d\",\"poolId\":\"BatchUser-testpool\",\"nodeId\":\"tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d\",\"taskRootDirectory\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode/tasks/mytask\",\"eTag\":\"0x8DB5B3D51A5C7CC\",\"creationTime\":\"2023-05-23T03:25:12.4008908Z\",\"lastModified\":\"2023-05-23T03:25:12.4008908Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2023-05-23T03:25:13.413686Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2023-05-23T03:25:13.271364Z\",\"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\":\"2023-05-23T03:25:13.343618Z\",\"endTime\":\"2023-05-23T03:25:13.413686Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d\",\"nodeUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d\",\"poolId\":\"BatchUser-testpool\",\"nodeId\":\"tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d\",\"taskRootDirectory\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files?recursive=true&api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files?recursive=true&api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:48 GMT", + "date" : "Tue, 23 May 2023 03:25:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "6ef5fcf9-e2b5-41f9-8b95-c55298c55d46", + "client-request-id" : "31ddbfcb-0d79-4e53-b7ce-f47210e039e0", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "86986ca1-60d4-4dbd-842f-7bdbd986f844", + "request-id" : "df82d333-68f2-400e-8bdd-43451039db29", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#files\",\"value\":[\r\n {\r\n \"name\":\"workitems\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems\",\"isDirectory\":true\r\n },{\r\n \"name\":\"applications\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/applications\",\"isDirectory\":true\r\n },{\r\n \"name\":\"shared\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/shared\",\"isDirectory\":true\r\n },{\r\n \"name\":\"startup\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/startup\",\"isDirectory\":true\r\n },{\r\n \"name\":\"fsmounts\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/fsmounts\",\"isDirectory\":true\r\n },{\r\n \"name\":\"volatile\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/volatile\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems/BatchUser-Job-canReadFromNode\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromTaskFile\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems/BatchUser-Job-canReadFromTaskFile\",\"isDirectory\":true\r\n },{\r\n \"name\":\"volatile/startup\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/volatile/startup\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems/BatchUser-Job-canReadFromNode/job-1\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_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://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2022-11-15T03:28:38.342991Z\",\"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://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2022-11-15T03:28:38.370992Z\",\"contentLength\":\"6\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/certs\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_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://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/wd\",\"isDirectory\":true\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#files\",\"value\":[\r\n {\r\n \"name\":\"applications\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/applications\",\"isDirectory\":true\r\n },{\r\n \"name\":\"fsmounts\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/fsmounts\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems\",\"isDirectory\":true\r\n },{\r\n \"name\":\"shared\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/shared\",\"isDirectory\":true\r\n },{\r\n \"name\":\"startup\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/startup\",\"isDirectory\":true\r\n },{\r\n \"name\":\"volatile\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/volatile\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems/BatchUser-Job-canReadFromNode\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromTaskFile\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems/BatchUser-Job-canReadFromTaskFile\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-testGetTaskCounts\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems/BatchUser-testGetTaskCounts\",\"isDirectory\":true\r\n },{\r\n \"name\":\"volatile/startup\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/volatile/startup\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems/BatchUser-Job-canReadFromNode/job-1\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_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://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/wd\",\"isDirectory\":true\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stderr.txt\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2023-05-23T03:25:13.355962Z\",\"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://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2023-05-23T03:25:13.391963Z\",\"contentLength\":\"6\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"workitems/BatchUser-Job-canReadFromNode/job-1/mytask/certs\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems/BatchUser-Job-canReadFromNode/job-1/mytask/certs\",\"isDirectory\":true\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:48 GMT", + "date" : "Tue, 23 May 2023 03:25:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", - "transfer-encoding" : "chunked", "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fsdktest.westus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fsdkbatchaccount.westcentralus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", "retry-after" : "0", - "request-id" : "e7ce3b22-0d3d-4294-8441-5f57c1c897d7", + "request-id" : "754f6789-744d-4918-88f3-9926aa3a5446", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:38 GMT", + "last-modified" : "Tue, 23 May 2023 03:25:13 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6619ba2c-5919-42a4-9e60-80c3a8433752", + "client-request-id" : "4734c820-b26b-4025-815f-6c48eb3b5f22", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "hello\n" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:48 GMT", + "date" : "Tue, 23 May 2023 03:25:23 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", - "transfer-encoding" : "chunked", "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fsdktest.westus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fsdkbatchaccount.westcentralus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", "retry-after" : "0", - "request-id" : "f09e429d-5763-4ec9-98ba-a2f94256b55a", + "request-id" : "5b9b2bfd-6cd2-49a3-afcb-6ae69c835183", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:38 GMT", + "last-modified" : "Tue, 23 May 2023 03:25:13 GMT", "x-content-type-options" : "nosniff", "content-type" : "text/plain", "dataserviceversion" : "3.0", @@ -184,44 +176,43 @@ } }, { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool/nodes/tvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d/files/workitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:48 GMT", + "date" : "Tue, 23 May 2023 03:25:23 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%2Fsdktest.westus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_2c5c93e2b1709d5e4b33f9322216c36e2aceb4adb3246039273fcd66865e98a4_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fsdkbatchaccount.westcentralus.batch.azure.com%2Fpools%2FBatchUser-testpool%2Fnodes%2Ftvmps_07b83b51035f628eb95b2da923c9589b3c58e0e90b3bd7d97fbdc24bf45cd0d9_d%2Ffiles%2Fworkitems%2FBatchUser-Job-canReadFromNode%2Fjob-1%2Fmytask%2Fstdout.txt", "retry-after" : "0", - "request-id" : "4de370cb-b77f-4847-92d4-ea0769e25bc0", + "request-id" : "a5d075ee-0c33-4c44-8665-abc5d90a1bd1", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:38 GMT", + "last-modified" : "Tue, 23 May 2023 03:25:13 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "042f88d8-2e9f-42bd-8666-b9193b72b882", + "client-request-id" : "024c97ce-ae1f-4eec-bfcc-c047a00c750c", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromNode?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:48 GMT", + "date" : "Tue, 23 May 2023 03:25:24 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "b19eccce-90ad-4831-9de7-ff35de726a47", + "client-request-id" : "046512a6-a576-4df6-8717-19089ebde2c4", "retry-after" : "0", - "request-id" : "81482795-ee99-442f-bc89-21a368617ee3", + "request-id" : "f5361c63-f72e-4efe-91b5-17ef749c06d0", "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 878b9f1d259d..ff8a0c91d65c 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,159 +1,152 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:23 GMT", + "date" : "Tue, 23 May 2023 03:24:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "0f31ebcc-a91a-44b3-9d32-6655f4e1b804", + "request-id" : "e1086fff-7680-4719-93ca-ab01c37f9fbf", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:24 GMT", + "last-modified" : "Tue, 23 May 2023 03:24:58 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "953e2630-05d8-4c1b-b69c-fcf2d21bda9f", - "etag" : "0x8DAC6B97448A44B", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "6a753fc9-2463-4842-9084-790845589cd9", + "etag" : "0x8DB5B3D4991567C", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:24 GMT", + "date" : "Tue, 23 May 2023 03:24:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask", "retry-after" : "0", - "request-id" : "3c9fa5cb-45b6-47e8-87c3-e6be5dcd7c33", + "request-id" : "d737075f-bca0-474b-8949-0efb284dfc3d", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:25 GMT", + "last-modified" : "Tue, 23 May 2023 03:24:59 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "73deeb7c-5271-4fbf-859e-5da9005b88b4", - "etag" : "0x8DAC6B974627504", - "location" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask", + "client-request-id" : "08701e98-9b90-4c1b-ac52-c4ee61bf4032", + "etag" : "0x8DB5B3D49B0096D", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2022-10-01.16.0&%24select=id%2C%20state", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:24 GMT", + "date" : "Tue, 23 May 2023 03:24:59 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "584f15ab-123f-4806-920b-0dcf6cc307ed", + "client-request-id" : "693e854b-60a4-4906-8874-719a9a91143a", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "769d3158-ce92-42c7-9849-b5859250979c", + "request-id" : "faf5ba45-858e-4115-8c76-9609aa076b27", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2022-10-01.16.0&%24select=id%2C%20state", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:35 GMT", + "date" : "Tue, 23 May 2023 03:25:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "1a98f40f-d62b-471b-966a-e3241fb88a1d", + "client-request-id" : "01934e4b-0473-4f33-a131-068b66273de5", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "2cb19277-49da-4def-9c73-80c362eb753e", + "request-id" : "738f627d-c71c-46f7-a4e8-66f8c24af5d5", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:35 GMT", + "date" : "Tue, 23 May 2023 03:25:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "e79bad0c-a4d0-4025-9d55-cb1fedced3a8", + "client-request-id" : "b94e18a7-ef0c-45d8-8085-15a9d2611410", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "0af17825-5df1-472b-adc9-1efde5ee8dbe", + "request-id" : "f114134c-1160-4705-8bf0-4d2c4ebc85a7", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#files\",\"value\":[\r\n {\r\n \"name\":\"stderr.txt\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2022-11-15T03:28:26.178545Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"stdout.txt\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2022-11-15T03:28:26.206546Z\",\"contentLength\":\"6\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"certs\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/certs\",\"isDirectory\":true\r\n },{\r\n \"name\":\"wd\",\"url\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#files\",\"value\":[\r\n {\r\n \"name\":\"wd\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/wd\",\"isDirectory\":true\r\n },{\r\n \"name\":\"stderr.txt\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2023-05-23T03:24:59.291629Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"stdout.txt\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n \"lastModified\":\"2023-05-23T03:24:59.319629Z\",\"contentLength\":\"6\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n }\r\n },{\r\n \"name\":\"certs\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/certs\",\"isDirectory\":true\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:35 GMT", + "date" : "Tue, 23 May 2023 03:25:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", - "transfer-encoding" : "chunked", "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fsdktest.westus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fsdkbatchaccount.westcentralus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", "retry-after" : "0", - "request-id" : "bca2d9ef-2c50-422a-831d-22d83ec6ffff", + "request-id" : "f25df0df-5ffd-492c-a14a-72f11e11be26", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:26 GMT", + "last-modified" : "Tue, 23 May 2023 03:24:59 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "fef65a6c-9594-41cd-beec-2081f0534d22", + "client-request-id" : "c528e07d-7946-4c0d-b21f-1cd62ab9fad6", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "hello\n" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:35 GMT", + "date" : "Tue, 23 May 2023 03:25:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", - "transfer-encoding" : "chunked", "ocp-batch-file-isdirectory" : "False", - "ocp-batch-file-url" : "https%3A%2F%2Fsdktest.westus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fsdkbatchaccount.westcentralus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", "retry-after" : "0", - "request-id" : "9db0439e-3cb2-45d9-95ca-405973b935d5", + "request-id" : "acb007e3-84fa-41c7-bc73-fc730ccf10fb", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:26 GMT", + "last-modified" : "Tue, 23 May 2023 03:24:59 GMT", "x-content-type-options" : "nosniff", "content-type" : "text/plain", "dataserviceversion" : "3.0", @@ -161,44 +154,43 @@ } }, { "Method" : "HEAD", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile/tasks/mytask/files/stdout.txt?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:35 GMT", + "date" : "Tue, 23 May 2023 03:25:09 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%2Fsdktest.westus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", + "ocp-batch-file-url" : "https%3A%2F%2Fsdkbatchaccount.westcentralus.batch.azure.com%2Fjobs%2FBatchUser-Job-canReadFromTaskFile%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", "retry-after" : "0", - "request-id" : "5c986fbb-3c37-4826-9c9f-ead6b34e5e17", + "request-id" : "bbb4d8ba-2ed4-45bb-a924-0e98dcde341d", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:26 GMT", + "last-modified" : "Tue, 23 May 2023 03:24:59 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ed1453d1-48ad-447c-aab8-5d7f6728afa5", + "client-request-id" : "7dc1f1ca-c300-4248-afcd-e899ebee78bf", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-canReadFromTaskFile?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:36 GMT", + "date" : "Tue, 23 May 2023 03:25:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "c66bf630-9fdf-4423-bded-eded60eaadd9", + "client-request-id" : "50472f12-1458-4ba8-bfd1-baa6faf1f961", "retry-after" : "0", - "request-id" : "a93da27f-8c2e-47a5-a469-1c3a67c3b670", + "request-id" : "262cf8c0-a310-4dc9-bf61-3592251c215a", "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 0ec4f68fd19f..ae8dd8b3d501 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,227 +1,219 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:51 GMT", + "date" : "Tue, 23 May 2023 03:26:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState", "retry-after" : "0", - "request-id" : "c5f387b0-673f-4a33-8072-1411284fe0e8", + "request-id" : "47bc70db-405b-4f97-b660-0e56e8919761", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:51 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:10 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "49cb5b10-8752-498d-89b3-ef76e2b1fd34", - "etag" : "0x8DAC6B984766567", - "location" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState", + "client-request-id" : "ecdb61cb-088e-4b16-af57-b0dfc9959d72", + "etag" : "0x8DB5B3D7483ABAE", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:51 GMT", + "date" : "Tue, 23 May 2023 03:26:10 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "3676afac-04ae-4f78-8788-a87874ccc64b", + "request-id" : "477d6f29-9c72-4dbe-8eed-c0dbe68a72cc", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:51 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:10 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "50103d94-b075-4993-9cf2-b4e7e0b5b225", + "client-request-id" : "3763391b-adba-4900-9027-33e476a38ba0", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B984766567", + "etag" : "0x8DB5B3D7483ABAE", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DAC6B984766567\",\"lastModified\":\"2022-11-15T03:28:51.9947623Z\",\"creationTime\":\"2022-11-15T03:28:51.9947623Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:28:51.9947623Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-11-15T03:28:51.201Z\",\"doNotRunAfter\":\"2022-11-15T08:28:51.201Z\",\"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://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DB5B3D7483ABAE\",\"lastModified\":\"2023-05-23T03:26:10.8976046Z\",\"creationTime\":\"2023-05-23T03:26:10.8976046Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:26:10.8976046Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2023-05-23T03:26:09.699Z\",\"doNotRunAfter\":\"2023-05-23T08:26:09.699Z\",\"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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/disable?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/disable?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:51 GMT", + "date" : "Tue, 23 May 2023 03:26:10 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/disable", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/disable", "retry-after" : "0", - "request-id" : "453e7571-4f15-4457-81f2-5a09ffb3b1ee", + "request-id" : "0f0613b8-3046-4190-904a-34bc65d15464", "StatusCode" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:52 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:11 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a0e6947c-61ae-4be9-a4c4-0ae8127a7506", - "etag" : "0x8DAC6B984A6A9A8", + "client-request-id" : "b8efd0a2-11c0-4d23-825b-df4f62ebccf0", + "etag" : "0x8DB5B3D74C4004E", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:51 GMT", + "date" : "Tue, 23 May 2023 03:26:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "45f93d92-7a97-42ba-b354-374bdf23bbf8", + "request-id" : "e82d0dd9-b330-4f83-8cfe-37e9bdeb968e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:52 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:11 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c71e492d-1cd7-4c9a-b039-42c4836fe859", + "client-request-id" : "81783b7f-61d6-45b4-8326-8efaae7c9355", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B984A6A9A8", + "etag" : "0x8DB5B3D74C4004E", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DAC6B984A6A9A8\",\"lastModified\":\"2022-11-15T03:28:52.3110824Z\",\"creationTime\":\"2022-11-15T03:28:51.9947623Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2022-11-15T03:28:52.3110824Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:28:51.9947623Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-11-15T03:28:51.201Z\",\"doNotRunAfter\":\"2022-11-15T08:28:51.201Z\",\"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://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DB5B3D74C4004E\",\"lastModified\":\"2023-05-23T03:26:11.3192014Z\",\"creationTime\":\"2023-05-23T03:26:10.8976046Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2023-05-23T03:26:11.3192014Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:26:10.8976046Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2023-05-23T03:26:09.699Z\",\"doNotRunAfter\":\"2023-05-23T08:26:09.699Z\",\"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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/enable?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/enable?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:51 GMT", + "date" : "Tue, 23 May 2023 03:26:11 GMT", "content-length" : "0", "server" : "Microsoft-HTTPAPI/2.0", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/enable", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/enable", "retry-after" : "0", - "request-id" : "c4e09a6c-d244-43dc-9b48-28b955e1132b", + "request-id" : "0ca9efd8-057a-4290-a3b2-e66c55ec0f3e", "StatusCode" : "204", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:52 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:11 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2a57ab9b-dbdc-4965-850d-7ea6b712b6b2", - "etag" : "0x8DAC6B984D28CFD", + "client-request-id" : "c30d0ad3-f3d9-4318-a8cb-cbdf48ec538c", + "etag" : "0x8DB5B3D74FB39CF", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:52 GMT", + "date" : "Tue, 23 May 2023 03:26:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "beca2b6a-e5a3-4c38-b1d6-bd66901ca25a", + "request-id" : "70a265d9-0774-4786-b7ab-0dd6dc857dbf", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:52 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:11 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "311ee6a6-0032-47f9-8c24-fde315a28eb9", + "client-request-id" : "04c6fd35-c815-4815-9c8f-2fa4f752d512", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B984D28CFD", + "etag" : "0x8DB5B3D74FB39CF", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DAC6B984D28CFD\",\"lastModified\":\"2022-11-15T03:28:52.5987069Z\",\"creationTime\":\"2022-11-15T03:28:51.9947623Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:28:52.5987069Z\",\"previousState\":\"disabled\",\"previousStateTransitionTime\":\"2022-11-15T03:28:52.3110824Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-11-15T03:28:51.201Z\",\"doNotRunAfter\":\"2022-11-15T08:28:51.201Z\",\"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://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DB5B3D74FB39CF\",\"lastModified\":\"2023-05-23T03:26:11.6811215Z\",\"creationTime\":\"2023-05-23T03:26:10.8976046Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:26:11.6811215Z\",\"previousState\":\"disabled\",\"previousStateTransitionTime\":\"2023-05-23T03:26:11.3192014Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2023-05-23T03:26:09.699Z\",\"doNotRunAfter\":\"2023-05-23T08:26:09.699Z\",\"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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/terminate?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/terminate?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:52 GMT", + "date" : "Tue, 23 May 2023 03:26:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/terminate", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState/terminate", "retry-after" : "0", - "request-id" : "31eb3c79-0327-409c-b884-bdd14ffde16c", + "request-id" : "87ad1ef7-3105-4b32-97ba-d51f652963e5", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:52 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:12 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9e7b4969-af36-4d91-8786-d7b4c6c24a96", - "etag" : "0x8DAC6B984F5CCD2", + "client-request-id" : "af0c68d2-7f4b-442e-ba44-69099bdc2546", + "etag" : "0x8DB5B3D75322C36", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:52 GMT", + "date" : "Tue, 23 May 2023 03:26:11 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "37890783-7883-42ae-86bb-6dc6b22bb58b", + "request-id" : "9a09bbb1-1e3e-41f7-bad1-150f4e7bfa62", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:52 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:12 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "44090af0-b09d-468a-991d-1218e714da87", + "client-request-id" : "0ced93b7-74a1-4957-b093-f649b8f5d591", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B984F5CCD2", + "etag" : "0x8DB5B3D75322C36", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DAC6B984F5CCD2\",\"lastModified\":\"2022-11-15T03:28:52.829717Z\",\"creationTime\":\"2022-11-15T03:28:51.9947623Z\",\"state\":\"terminating\",\"stateTransitionTime\":\"2022-11-15T03:28:52.829717Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:28:52.5987069Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-11-15T03:28:51.201Z\",\"doNotRunAfter\":\"2022-11-15T08:28:51.201Z\",\"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://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DB5B3D75322C36\",\"lastModified\":\"2023-05-23T03:26:12.0412214Z\",\"creationTime\":\"2023-05-23T03:26:10.8976046Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2023-05-23T03:26:12.1307029Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:26:11.6811215Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2023-05-23T03:26:09.699Z\",\"doNotRunAfter\":\"2023-05-23T08:26:09.699Z\",\"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://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n },\"endTime\":\"2023-05-23T03:26:12.1307029Z\"\r\n }\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:54 GMT", + "date" : "Tue, 23 May 2023 03:26:13 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "29a1af71-1ee7-4ba2-a742-b68fba5caba4", + "request-id" : "50fc66cb-0018-4cdb-bc76-c21fd1e4f2d5", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:52 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:12 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "86ffceb0-efeb-440b-a7a9-decbf80da2fa", + "client-request-id" : "342699fa-5c52-4498-a7d5-8e167dc6e53d", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B984F5CCD2", + "etag" : "0x8DB5B3D75322C36", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DAC6B984F5CCD2\",\"lastModified\":\"2022-11-15T03:28:52.829717Z\",\"creationTime\":\"2022-11-15T03:28:51.9947623Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-11-15T03:28:54.0487705Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:28:52.5987069Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-11-15T03:28:51.201Z\",\"doNotRunAfter\":\"2022-11-15T08:28:51.201Z\",\"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://sdktest.westus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n },\"endTime\":\"2022-11-15T03:28:54.0487705Z\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DB5B3D75322C36\",\"lastModified\":\"2023-05-23T03:26:12.0412214Z\",\"creationTime\":\"2023-05-23T03:26:10.8976046Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2023-05-23T03:26:12.1307029Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:26:11.6811215Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2023-05-23T03:26:09.699Z\",\"doNotRunAfter\":\"2023-05-23T08:26:09.699Z\",\"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://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-JobSchedule-updateJobScheduleState:job-1\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState:job-1\"\r\n },\"endTime\":\"2023-05-23T03:26:12.1307029Z\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:54 GMT", + "date" : "Tue, 23 May 2023 03:26:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "4c91452c-a71e-4106-acf9-b97d979de63c", + "client-request-id" : "71380c89-41ef-4c50-8327-5495945ec2e5", "retry-after" : "0", - "request-id" : "1059c215-c42e-460d-8b51-a688939346e5", + "request-id" : "61c6da44-fe74-4190-963e-7f41918411fd", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -229,46 +221,45 @@ } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:54 GMT", + "date" : "Tue, 23 May 2023 03:26:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "7cac93a8-e7e4-414c-bec1-34abb2ef7112", + "request-id" : "282436db-9478-42a4-bde5-c84d6b58c892", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:28:52 GMT", + "last-modified" : "Tue, 23 May 2023 03:26:12 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c8f126e4-e888-47de-8b74-ed1a4941606e", + "client-request-id" : "5bab3a95-ed40-4b72-a7d0-7772b5f9f522", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B984F5CCD2", + "etag" : "0x8DB5B3D75322C36", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DAC6B984F5CCD2\",\"lastModified\":\"2022-11-15T03:28:52.829717Z\",\"creationTime\":\"2022-11-15T03:28:51.9947623Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T03:28:55.2058814Z\",\"previousState\":\"completed\",\"previousStateTransitionTime\":\"2022-11-15T03:28:54.0487705Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2022-11-15T03:28:51.201Z\",\"doNotRunAfter\":\"2022-11-15T08:28:51.201Z\",\"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://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"BatchUser-JobSchedule-updateJobScheduleState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState\",\"eTag\":\"0x8DB5B3D75322C36\",\"lastModified\":\"2023-05-23T03:26:12.0412214Z\",\"creationTime\":\"2023-05-23T03:26:10.8976046Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T03:26:14.6019048Z\",\"previousState\":\"completed\",\"previousStateTransitionTime\":\"2023-05-23T03:26:12.1307029Z\",\"schedule\":{\r\n \"doNotRunUntil\":\"2023-05-23T03:26:09.699Z\",\"doNotRunAfter\":\"2023-05-23T08:26:09.699Z\",\"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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobschedules/BatchUser-JobSchedule-updateJobScheduleState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:28:54 GMT", - "content-length" : "384", + "date" : "Tue, 23 May 2023 03:26:14 GMT", + "content-length" : "399", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "b6e6e691-b2c5-4040-9b37-2c40e4033dd8", + "client-request-id" : "a939d7f6-b863-4c0e-96ef-2ef6392fde39", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "90d32dbd-5c4f-4b06-83fe-e454deb9ecbf", + "request-id" : "72ad6e8c-13ca-4b03-a541-b356fda069be", "StatusCode" : "409", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:90d32dbd-5c4f-4b06-83fe-e454deb9ecbf\\nTime:2022-11-15T03:28:55.4639253Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:72ad6e8c-13ca-4b03-a541-b356fda069be\\nTime:2023-05-23T03:26:14.9599141Z\"\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 7058659132f1..09e01e6c694e 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,342 +1,327 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:03 GMT", + "date" : "Tue, 23 May 2023 03:28:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "f3247c65-846c-4cb1-8199-96ca3b8c3de0", + "request-id" : "3787305e-ed3b-4138-9f1e-0878091ae686", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:04 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:54 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9e4e1553-fb34-43a2-9384-6cec582fe93b", - "etag" : "0x8DAC6B98BF5F892", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "29d62584-b604-4d73-8369-1aea7e332a46", + "etag" : "0x8DB5B3DD64A96FE", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:03 GMT", + "date" : "Tue, 23 May 2023 03:28:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "6b60a494-ad02-4cd0-b99f-17d4a6983483", + "request-id" : "6671e745-c7c7-4d10-8904-9cfe40ce718f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:04 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:54 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "55750ed4-1406-4457-90c3-75502fc513db", + "client-request-id" : "41f7ac2e-dce7-4fb8-8ed1-1e8455f228bb", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98BF5F892", + "etag" : "0x8DB5B3DD64A96FE", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DAC6B98BF5F892\",\"lastModified\":\"2022-11-15T03:29:04.5748882Z\",\"creationTime\":\"2022-11-15T03:29:04.5288885Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:29:04.5748882Z\",\"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-11-15T03:29:04.5748882Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DB5B3DD64A96FE\",\"lastModified\":\"2023-05-23T03:28:54.9402366Z\",\"creationTime\":\"2023-05-23T03:28:54.926235Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:28:54.9402366Z\",\"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\":\"2023-05-23T03:28:54.9402366Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "PUT", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:04 GMT", + "date" : "Tue, 23 May 2023 03:28:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState", "retry-after" : "0", - "request-id" : "beb86dd6-9b38-4a26-82dc-a150bf987995", + "request-id" : "86acbf49-2213-4236-8191-049b1773826e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:04 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:55 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "feaf0b28-ddd9-4f54-8aa7-299ea54f37bf", - "etag" : "0x8DAC6B98C1BF759", + "client-request-id" : "1bda828f-4829-4a4a-87df-33c83233752e", + "etag" : "0x8DB5B3DD68A99E4", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:04 GMT", + "date" : "Tue, 23 May 2023 03:28:54 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "eaeb8727-e7bc-4344-8f07-3e62bc64bd23", + "request-id" : "edb0332e-1afd-48cf-9a5e-e2edc9cb2f09", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:04 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:55 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "1ae99183-5ce2-42d8-b7b5-b7e1b09e0c5a", + "client-request-id" : "25207c37-803e-47bc-9922-6950b2b3fb52", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98C1BF759", + "etag" : "0x8DB5B3DD68A99E4", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DAC6B98C1BF759\",\"lastModified\":\"2022-11-15T03:29:04.8238937Z\",\"creationTime\":\"2022-11-15T03:29:04.5288885Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:29:04.5748882Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-11-15T03:29:04.5748882Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DB5B3DD68A99E4\",\"lastModified\":\"2023-05-23T03:28:55.3597412Z\",\"creationTime\":\"2023-05-23T03:28:54.926235Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:28:54.9402366Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2023-05-23T03:28:54.9402366Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/disable?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/disable?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:04 GMT", + "date" : "Tue, 23 May 2023 03:28:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/disable", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/disable", "retry-after" : "0", - "request-id" : "77ff89fc-5e50-4711-84b3-60600d6bf531", + "request-id" : "f57ef56d-74ca-48dd-9569-1063366c823c", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:05 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:55 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a5136254-1b28-42b1-a55f-e5716dcd68b8", - "etag" : "0x8DAC6B98C4689F1", + "client-request-id" : "188adc28-cc4a-43e9-9ea6-551c5a447d03", + "etag" : "0x8DB5B3DD6C9D3FF", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:04 GMT", + "date" : "Tue, 23 May 2023 03:28:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "afdfc318-55bf-4a21-8001-c3a1b712e2c2", + "request-id" : "dc51df38-7acd-4814-9c9f-11c600433b89", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:05 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:55 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9436a7d9-6601-4427-b2fe-7e518d9a94cf", + "client-request-id" : "5f3b2b6b-618c-4ecc-b53b-d0a8f431aeac", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98C4689F1", + "etag" : "0x8DB5B3DD6C9D3FF", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DAC6B98C4689F1\",\"lastModified\":\"2022-11-15T03:29:05.1028977Z\",\"creationTime\":\"2022-11-15T03:29:04.5288885Z\",\"state\":\"disabling\",\"stateTransitionTime\":\"2022-11-15T03:29:05.1028977Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:29:04.5748882Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-11-15T03:29:04.5748882Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DB5B3DD6C9D3FF\",\"lastModified\":\"2023-05-23T03:28:55.7741055Z\",\"creationTime\":\"2023-05-23T03:28:54.926235Z\",\"state\":\"disabling\",\"stateTransitionTime\":\"2023-05-23T03:28:55.7741055Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:28:54.9402366Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2023-05-23T03:28:54.9402366Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:09 GMT", + "date" : "Tue, 23 May 2023 03:29:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "8868bcd0-f888-474c-bd06-c08ea5ef4270", + "request-id" : "bb9d9e15-7150-4ea0-817e-b24953e2a5ab", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:05 GMT", + "last-modified" : "Tue, 23 May 2023 03:28:55 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c40d0ac7-0371-4f65-9eea-3ac135b8db4d", + "client-request-id" : "f36f3e6f-3213-4483-a802-7049ed2953ef", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98C4689F1", + "etag" : "0x8DB5B3DD6C9D3FF", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DAC6B98C4689F1\",\"lastModified\":\"2022-11-15T03:29:05.1028977Z\",\"creationTime\":\"2022-11-15T03:29:04.5288885Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2022-11-15T03:29:05.9521352Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:29:04.5748882Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-11-15T03:29:04.5748882Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DB5B3DD6C9D3FF\",\"lastModified\":\"2023-05-23T03:28:55.7741055Z\",\"creationTime\":\"2023-05-23T03:28:54.926235Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2023-05-23T03:28:57.4330845Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:28:54.9402366Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2023-05-23T03:28:54.9402366Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "PATCH", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:09 GMT", + "date" : "Tue, 23 May 2023 03:29:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState", "retry-after" : "0", - "request-id" : "1ce25cc6-79e1-4833-a2e3-0d36d5559242", + "request-id" : "2b5846ca-b7b3-4019-ada6-3552a3910af7", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:10 GMT", + "last-modified" : "Tue, 23 May 2023 03:29:01 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "60177255-5bd1-43c5-aafb-0a70decc9500", - "etag" : "0x8DAC6B98F7FA53F", + "client-request-id" : "70582d8e-0145-489b-a4b9-c021e433d0b2", + "etag" : "0x8DB5B3DDA2DCCCB", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:09 GMT", + "date" : "Tue, 23 May 2023 03:29:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "f5aad9e0-69d4-4dbf-9527-e97e64173def", + "request-id" : "b77681ff-3381-40ed-8f4a-517afa0f3465", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:10 GMT", + "last-modified" : "Tue, 23 May 2023 03:29:01 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0ceb5829-be45-4c0c-a4e6-211bb9fae2eb", + "client-request-id" : "64f24aa4-3b2a-4e3a-ad7d-3b06cf331939", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98F7FA53F", + "etag" : "0x8DB5B3DDA2DCCCB", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DAC6B98F7FA53F\",\"lastModified\":\"2022-11-15T03:29:10.5103167Z\",\"creationTime\":\"2022-11-15T03:29:04.5288885Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2022-11-15T03:29:05.9521352Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:29:04.5748882Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-11-15T03:29:04.5748882Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DB5B3DDA2DCCCB\",\"lastModified\":\"2023-05-23T03:29:01.4624459Z\",\"creationTime\":\"2023-05-23T03:28:54.926235Z\",\"state\":\"disabled\",\"stateTransitionTime\":\"2023-05-23T03:28:57.4330845Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:28:54.9402366Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2023-05-23T03:28:54.9402366Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/enable?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/enable?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:10 GMT", + "date" : "Tue, 23 May 2023 03:29:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/enable", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/enable", "retry-after" : "0", - "request-id" : "f5156228-1b15-4e11-8dbb-9db75846a9fb", + "request-id" : "9f6f4400-12a4-47c3-a6bd-ac649ed8ebe1", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:10 GMT", + "last-modified" : "Tue, 23 May 2023 03:29:01 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "636cafb3-3fea-4093-b6f9-9fe22a436a3c", - "etag" : "0x8DAC6B98FAF735C", + "client-request-id" : "570ab43b-6905-4ec4-a2ec-df3574bda740", + "etag" : "0x8DB5B3DDA6D557B", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:10 GMT", + "date" : "Tue, 23 May 2023 03:29:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "d4963139-3900-4d80-99a1-f6871bd93c8a", + "request-id" : "71039ddc-a667-4d6f-9957-1997bcd1a877", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:10 GMT", + "last-modified" : "Tue, 23 May 2023 03:29:01 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "56525492-cd51-4340-9431-e8dea4881f2d", + "client-request-id" : "a52f394e-edf1-4f7e-bdad-35aa0d144e5a", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98FAF735C", + "etag" : "0x8DB5B3DDA6D557B", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DAC6B98FAF735C\",\"lastModified\":\"2022-11-15T03:29:10.8236124Z\",\"creationTime\":\"2022-11-15T03:29:04.5288885Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T03:29:10.8236124Z\",\"previousState\":\"disabled\",\"previousStateTransitionTime\":\"2022-11-15T03:29:05.9521352Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-11-15T03:29:04.5748882Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DB5B3DDA6D557B\",\"lastModified\":\"2023-05-23T03:29:01.8788219Z\",\"creationTime\":\"2023-05-23T03:28:54.926235Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T03:29:01.8788219Z\",\"previousState\":\"disabled\",\"previousStateTransitionTime\":\"2023-05-23T03:28:57.4330845Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2023-05-23T03:28:54.9402366Z\",\"poolId\":\"BatchUser-testpool\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/terminate?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/terminate?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:10 GMT", + "date" : "Tue, 23 May 2023 03:29:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/terminate", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState/terminate", "retry-after" : "0", - "request-id" : "1ea07406-76f9-45db-8c55-8293411c7e70", + "request-id" : "304830fa-a879-4659-b5fa-ca62a5eb933c", "StatusCode" : "202", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:11 GMT", + "last-modified" : "Tue, 23 May 2023 03:29:02 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2f34bb2d-33b3-4415-8532-a4ecebee7672", - "etag" : "0x8DAC6B98FD23D72", + "client-request-id" : "805ae564-dfd5-45b9-90c9-9dc46dccbad9", + "etag" : "0x8DB5B3DDAABECFC", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:10 GMT", + "date" : "Tue, 23 May 2023 03:29:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "041a2375-16bb-48f0-b316-5db3dfe4d81f", + "request-id" : "c3e9339c-3e3b-44ac-a29a-587e46ce402a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:11 GMT", + "last-modified" : "Tue, 23 May 2023 03:29:02 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "99bc1b53-48b7-4ea2-8fd0-1eb52404ca09", + "client-request-id" : "16e17a6f-8b1d-4fdd-88bb-2211475e3d24", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98FD23D72", + "etag" : "0x8DB5B3DDAABECFC", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DAC6B98FD23D72\",\"lastModified\":\"2022-11-15T03:29:11.0516082Z\",\"creationTime\":\"2022-11-15T03:29:04.5288885Z\",\"state\":\"terminating\",\"stateTransitionTime\":\"2022-11-15T03:29:11.0516082Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:29:10.8236124Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-11-15T03:29:04.5748882Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"myreason\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DB5B3DDAABECFC\",\"lastModified\":\"2023-05-23T03:29:02.2890236Z\",\"creationTime\":\"2023-05-23T03:28:54.926235Z\",\"state\":\"terminating\",\"stateTransitionTime\":\"2023-05-23T03:29:02.2890236Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:29:01.8788219Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2023-05-23T03:28:54.9402366Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"myreason\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:12 GMT", + "date" : "Tue, 23 May 2023 03:29:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "0a6e4078-a586-4182-87fd-0b1be83a4022", + "request-id" : "c4768589-6b3c-4890-aa6f-1a889bb5c9c5", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 03:29:11 GMT", + "last-modified" : "Tue, 23 May 2023 03:29:02 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "5acf23cd-d725-4585-8747-2c7e005e10d3", + "client-request-id" : "30c3522c-0b8d-4be5-a0c9-cfeb912aeaa1", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6B98FD23D72", + "etag" : "0x8DB5B3DDAABECFC", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DAC6B98FD23D72\",\"lastModified\":\"2022-11-15T03:29:11.0516082Z\",\"creationTime\":\"2022-11-15T03:29:04.5288885Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-11-15T03:29:11.9678645Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-11-15T03:29:10.8236124Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-11-15T03:29:04.5748882Z\",\"endTime\":\"2022-11-15T03:29:11.9678645Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"myreason\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"BatchUser-Job-CanUpdateState\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState\",\"eTag\":\"0x8DB5B3DDAABECFC\",\"lastModified\":\"2023-05-23T03:29:02.2890236Z\",\"creationTime\":\"2023-05-23T03:28:54.926235Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2023-05-23T03:29:02.92918Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2023-05-23T03:29:01.8788219Z\",\"priority\":500,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n },\"poolInfo\":{\r\n \"poolId\":\"BatchUser-testpool\"\r\n },\"executionInfo\":{\r\n \"startTime\":\"2023-05-23T03:28:54.9402366Z\",\"endTime\":\"2023-05-23T03:29:02.92918Z\",\"poolId\":\"BatchUser-testpool\",\"terminateReason\":\"myreason\"\r\n },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-Job-CanUpdateState?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 03:29:12 GMT", + "date" : "Tue, 23 May 2023 03:29:04 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "0862b351-4232-4c7e-be46-af6aa64de38e", + "client-request-id" : "99b29d21-9190-43b7-a2e9-de113ce271fd", "retry-after" : "0", - "request-id" : "e575ff2e-af22-47d6-9fbd-7a4bc46071f1", + "request-id" : "759ffcdc-ecbf-40de-adb3-2a584823f406", "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 ed3c33a24998..4b0677653c9d 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,67 +1,64 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:35 GMT", + "date" : "Tue, 23 May 2023 05:06:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "e67c4379-6cac-406e-9fc8-64cd9fbb4f3b", + "request-id" : "b10262e2-c88a-482a-b2e6-bb0ea15f0e0a", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 04:05:35 GMT", + "last-modified" : "Tue, 23 May 2023 05:06:33 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6fdf28f4-dcb7-40b1-9d70-8db165f153a2", - "etag" : "0x8DAC6BEA5E5C233", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "25943e07-5a7f-4fed-8726-765e965b2852", + "etag" : "0x8DB5B4B7A7C65CF", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:35 GMT", + "date" : "Tue, 23 May 2023 05:06:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks/mytask", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks/mytask", "retry-after" : "0", - "request-id" : "7aeabd4d-084b-45ef-b528-07fd21223117", + "request-id" : "4f5e4ab1-202c-4c50-bf63-046f682b722a", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 04:05:35 GMT", + "last-modified" : "Tue, 23 May 2023 05:06:34 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "57c22de3-e995-4d4a-ac81-c3444250ca0e", - "etag" : "0x8DAC6BEA5FE00E7", - "location" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks/mytask", + "client-request-id" : "6e2f5dcc-7041-45ae-a092-3248de899241", + "etag" : "0x8DB5B4B7A982716", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-failCreateContainerRegPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:35 GMT", + "date" : "Tue, 23 May 2023 05:06:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "b4032467-bbc0-4376-9fff-4d1635c19458", + "client-request-id" : "7a0628a7-a36e-4ccc-bbc5-b18ce078c2cd", "retry-after" : "0", - "request-id" : "018fcd04-c94b-4829-82dc-a100404a7220", + "request-id" : "a8ce065f-ea26-4ff0-a6ba-c7845b779c62", "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 52b078b9a4af..7628d0aabef7 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,64 +1,62 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:36 GMT", + "date" : "Tue, 23 May 2023 05:07:41 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "7e51b60c-c6a3-4cfe-b30b-90dff3b5a012", + "request-id" : "113edf44-57d6-494b-b258-79fccf01e5f1", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 04:05:36 GMT", + "last-modified" : "Tue, 23 May 2023 05:07:42 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9476c551-9120-4749-967d-9c4c8d268a0a", - "etag" : "0x8DAC6BEA68A04F5", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "767fb555-d233-4a26-81d7-e7dfad5fec02", + "etag" : "0x8DB5B4BA334FB2D", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-failIfPoisonTaskTooLarge/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-failIfPoisonTaskTooLarge/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:37 GMT", - "content-length" : "445", + "date" : "Tue, 23 May 2023 05:07:42 GMT", + "content-length" : "460", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "dc4e9aea-731d-4170-93ad-dabd3a79508d", + "client-request-id" : "f41dca36-89fb-41ce-91e8-278b03749826", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "55b1d6dc-7869-4035-8b16-8f8bef2b9fe0", + "request-id" : "29fb046d-4ada-4e0d-9c5b-893576e180d1", "StatusCode" : "413", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:55b1d6dc-7869-4035-8b16-8f8bef2b9fe0\\nTime:2022-11-15T04:05:37.2803547Z\"\r\n },\"values\":[\r\n {\r\n \"key\":\"MaxLimit\",\"value\":\"1048576\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:29fb046d-4ada-4e0d-9c5b-893576e180d1\\nTime:2023-05-23T05:07:42.5999120Z\"\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://sdktest.westus.batch.azure.com/jobs/BatchUser-failIfPoisonTaskTooLarge?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-failIfPoisonTaskTooLarge?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:38 GMT", + "date" : "Tue, 23 May 2023 05:07:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "a17c39b7-eb29-4675-9b7e-cfa0ca4a70e5", + "client-request-id" : "9c5b7b7f-67ba-4502-b702-38e9d57e904f", "retry-after" : "0", - "request-id" : "780b801f-4e50-4a33-89bf-4a10e749028e", + "request-id" : "4cdd1d66-51a8-4f1e-a86f-57dfe6600df7", "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 c683931c209c..1449b97fd03b 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,40 +1,39 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:42 GMT", - "content-length" : "633", + "date" : "Tue, 23 May 2023 04:45:29 GMT", + "content-length" : "648", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "8b9e8731-07a0-4e4e-ab1d-f11cb4d59c7a", + "client-request-id" : "0e4f29d6-0484-4649-be4e-d96c3587d56f", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "958b3b18-8e38-4841-ab0d-0a23ae4fd844", + "request-id" : "fb2e0f0e-6a71-4490-adba-7b627d19303e", "StatusCode" : "400", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:958b3b18-8e38-4841-ab0d-0a23ae4fd844\\nTime:2022-11-15T16:10:43.3301890Z\"\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}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:fb2e0f0e-6a71-4490-adba-7b627d19303e\\nTime:2023-05-23T04:45:30.3673067Z\"\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://sdktest.westus.batch.azure.com/pools/BatchUser-createContainerRegImage?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerRegImage?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:42 GMT", + "date" : "Tue, 23 May 2023 04:45:29 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "b81a1fcf-8979-41bb-85a7-68531737170e", + "client-request-id" : "72b6733c-c3a9-46c1-82a7-0aa8f547aab7", "retry-after" : "0", - "request-id" : "03ce7c19-abb5-4059-97b4-dc436fb38913", + "request-id" : "b1cb78f6-7238-4f7e-b60e-bc4f9004bf51", "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 7b07fafb77ef..f59366157f0f 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,40 +1,39 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/pools?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:25:51 GMT", - "content-length" : "664", + "date" : "Tue, 23 May 2023 05:00:07 GMT", + "content-length" : "679", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "a87bb3fb-39d8-44ac-9996-27c5cb3a2668", + "client-request-id" : "494e19ed-0b34-4be3-9d64-835fa2046044", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "adabb924-3886-4fe2-954c-5ab8b5b92093", + "request-id" : "340d4ad2-1055-4c26-b1da-88017de554c0", "StatusCode" : "400", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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:adabb924-3886-4fe2-954c-5ab8b5b92093\\nTime:2022-11-15T16:25:52.1639421Z\"\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://sdkbatchaccount.westcentralus.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:340d4ad2-1055-4c26-b1da-88017de554c0\\nTime:2023-05-23T05:00:07.3993092Z\"\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://sdktest.westus.batch.azure.com/pools/BatchUser-createLinuxPool?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createLinuxPool?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:25:51 GMT", + "date" : "Tue, 23 May 2023 05:00:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "ac9676b9-e932-4c1a-a336-980feaaaac2d", + "client-request-id" : "1169cd33-8030-4651-8669-14c617a18e2f", "retry-after" : "0", - "request-id" : "5a82e3b9-96ce-43e0-bda2-0c738cf950e7", + "request-id" : "14341eee-3332-49fc-b43f-6b2e53e5505a", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", 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 dbbac1539ed0..2ac3fb8d23c9 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,505 +1,481 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:39 GMT", + "date" : "Tue, 23 May 2023 05:06:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "00c9f27a-8fdd-4f64-80fa-3b03de4e19ab", + "request-id" : "33453468-41f2-4fe5-b0fa-3010470848e9", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 04:05:39 GMT", + "last-modified" : "Tue, 23 May 2023 05:06:35 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "7f6986b8-0159-40c5-af6c-fd12363307db", - "etag" : "0x8DAC6BEA85A8310", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "bfe6a1c9-7ad3-426e-ae30-17c78e890f2e", + "etag" : "0x8DB5B4B7B711676", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/taskcounts?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/taskcounts?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:39 GMT", + "date" : "Tue, 23 May 2023 05:06:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "3fa9da74-65ab-4a68-8bb9-d4b8167c98d0", + "client-request-id" : "eb06be5f-2275-4adc-8091-2316dbc69dbd", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "81e15ccb-4328-45d8-9d02-bede9197e603", + "request-id" : "c3494e4c-83c0-4fcc-8553-14f7fedca584", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:39 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "eb474810-1e7a-43a8-a0e9-d3d7ba87ada9", + "client-request-id" : "459642da-cda7-48f7-8547-cc0d384c9a77", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "936caf9e-2d9f-486c-ae5f-2dd5c02187a5", + "request-id" : "4e5584b7-1e1f-429e-a01d-dd87c77b190d", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask53\",\"eTag\":\"0x8DAC6BEA88D3184\",\"lastModified\":\"2022-11-15T04:05:40.0257924Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask53\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask52\",\"eTag\":\"0x8DAC6BEA88F0637\",\"lastModified\":\"2022-11-15T04:05:40.0377911Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask52\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask56\",\"eTag\":\"0x8DAC6BEA88F2D90\",\"lastModified\":\"2022-11-15T04:05:40.0387984Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask56\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask54\",\"eTag\":\"0x8DAC6BEA89017B5\",\"lastModified\":\"2022-11-15T04:05:40.0447925Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask54\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask50\",\"eTag\":\"0x8DAC6BEA89065CC\",\"lastModified\":\"2022-11-15T04:05:40.0467916Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask50\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask60\",\"eTag\":\"0x8DAC6BEA891020F\",\"lastModified\":\"2022-11-15T04:05:40.0507919Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask60\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask61\",\"eTag\":\"0x8DAC6BEA8912915\",\"lastModified\":\"2022-11-15T04:05:40.0517909Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask61\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask59\",\"eTag\":\"0x8DAC6BEA8903EC7\",\"lastModified\":\"2022-11-15T04:05:40.0457927Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask59\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask55\",\"eTag\":\"0x8DAC6BEA89017B5\",\"lastModified\":\"2022-11-15T04:05:40.0447925Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask55\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask58\",\"eTag\":\"0x8DAC6BEA891020F\",\"lastModified\":\"2022-11-15T04:05:40.0507919Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask58\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask57\",\"eTag\":\"0x8DAC6BEA8923A76\",\"lastModified\":\"2022-11-15T04:05:40.0587894Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask57\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask75\",\"eTag\":\"0x8DAC6BEA8940F39\",\"lastModified\":\"2022-11-15T04:05:40.0707897Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask75\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask87\",\"eTag\":\"0x8DAC6BEA895BCFD\",\"lastModified\":\"2022-11-15T04:05:40.0817917Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask87\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask85\",\"eTag\":\"0x8DAC6BEA895BCFD\",\"lastModified\":\"2022-11-15T04:05:40.0817917Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask85\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask94\",\"eTag\":\"0x8DAC6BEA895BCFD\",\"lastModified\":\"2022-11-15T04:05:40.0817917Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask94\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask97\",\"eTag\":\"0x8DAC6BEA896CE8B\",\"lastModified\":\"2022-11-15T04:05:40.0887947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask97\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask96\",\"eTag\":\"0x8DAC6BEA896CE8B\",\"lastModified\":\"2022-11-15T04:05:40.0887947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask96\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask86\",\"eTag\":\"0x8DAC6BEA8959602\",\"lastModified\":\"2022-11-15T04:05:40.0807938Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask86\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask93\",\"eTag\":\"0x8DAC6BEA895BCFD\",\"lastModified\":\"2022-11-15T04:05:40.0817917Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask93\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask63\",\"eTag\":\"0x8DAC6BEA89CE903\",\"lastModified\":\"2022-11-15T04:05:40.1287939Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask63\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask64\",\"eTag\":\"0x8DAC6BEA89DD366\",\"lastModified\":\"2022-11-15T04:05:40.1347942Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask64\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask77\",\"eTag\":\"0x8DAC6BEA89DFA73\",\"lastModified\":\"2022-11-15T04:05:40.1357939Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask77\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask67\",\"eTag\":\"0x8DAC6BEA89E218B\",\"lastModified\":\"2022-11-15T04:05:40.1367947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask67\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask65\",\"eTag\":\"0x8DAC6BEA89E218B\",\"lastModified\":\"2022-11-15T04:05:40.1367947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask65\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask74\",\"eTag\":\"0x8DAC6BEA89E218B\",\"lastModified\":\"2022-11-15T04:05:40.1367947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask74\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask78\",\"eTag\":\"0x8DAC6BEA89E4896\",\"lastModified\":\"2022-11-15T04:05:40.1377942Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask78\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask71\",\"eTag\":\"0x8DAC6BEA89DFA73\",\"lastModified\":\"2022-11-15T04:05:40.1357939Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask71\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask81\",\"eTag\":\"0x8DAC6BEA89E96BC\",\"lastModified\":\"2022-11-15T04:05:40.1397948Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask81\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask76\",\"eTag\":\"0x8DAC6BEA89E4896\",\"lastModified\":\"2022-11-15T04:05:40.1377942Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask76\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask62\",\"eTag\":\"0x8DAC6BEA89CE903\",\"lastModified\":\"2022-11-15T04:05:40.1287939Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask62\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask79\",\"eTag\":\"0x8DAC6BEA89E6FAB\",\"lastModified\":\"2022-11-15T04:05:40.1387947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask79\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask69\",\"eTag\":\"0x8DAC6BEA89E218B\",\"lastModified\":\"2022-11-15T04:05:40.1367947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask69\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask92\",\"eTag\":\"0x8DAC6BEA8A01D5F\",\"lastModified\":\"2022-11-15T04:05:40.1497951Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask92\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask80\",\"eTag\":\"0x8DAC6BEA89FF645\",\"lastModified\":\"2022-11-15T04:05:40.1487941Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask80\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask102\",\"eTag\":\"0x8DAC6BEA8A06B79\",\"lastModified\":\"2022-11-15T04:05:40.1517945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask102\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask84\",\"eTag\":\"0x8DAC6BEA8A01D5F\",\"lastModified\":\"2022-11-15T04:05:40.1497951Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask84\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask82\",\"eTag\":\"0x8DAC6BEA8A0446A\",\"lastModified\":\"2022-11-15T04:05:40.1507946Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask82\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask100\",\"eTag\":\"0x8DAC6BEA8A0446A\",\"lastModified\":\"2022-11-15T04:05:40.1507946Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask100\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask98\",\"eTag\":\"0x8DAC6BEA8A06B79\",\"lastModified\":\"2022-11-15T04:05:40.1517945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask98\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask91\",\"eTag\":\"0x8DAC6BEA8A0446A\",\"lastModified\":\"2022-11-15T04:05:40.1507946Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask91\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask90\",\"eTag\":\"0x8DAC6BEA8A01D5F\",\"lastModified\":\"2022-11-15T04:05:40.1497951Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask90\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask83\",\"eTag\":\"0x8DAC6BEA8A06B79\",\"lastModified\":\"2022-11-15T04:05:40.1517945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask83\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask103\",\"eTag\":\"0x8DAC6BEA8A06B79\",\"lastModified\":\"2022-11-15T04:05:40.1517945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask103\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask89\",\"eTag\":\"0x8DAC6BEA8A06B79\",\"lastModified\":\"2022-11-15T04:05:40.1517945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask89\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask88\",\"eTag\":\"0x8DAC6BEA8A0446A\",\"lastModified\":\"2022-11-15T04:05:40.1507946Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask88\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask95\",\"eTag\":\"0x8DAC6BEA8A0446A\",\"lastModified\":\"2022-11-15T04:05:40.1507946Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask95\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask101\",\"eTag\":\"0x8DAC6BEA8A0446A\",\"lastModified\":\"2022-11-15T04:05:40.1507946Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask101\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask72\",\"eTag\":\"0x8DAC6BEA89E4896\",\"lastModified\":\"2022-11-15T04:05:40.1377942Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask72\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask73\",\"eTag\":\"0x8DAC6BEA89E4896\",\"lastModified\":\"2022-11-15T04:05:40.1377942Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask73\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask99\",\"eTag\":\"0x8DAC6BEA8A06B79\",\"lastModified\":\"2022-11-15T04:05:40.1517945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask99\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask151\",\"eTag\":\"0x8DB5B4B7BBC9899\",\"lastModified\":\"2023-05-23T05:06:35.9689369Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask151\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask150\",\"eTag\":\"0x8DB5B4B7BBC9899\",\"lastModified\":\"2023-05-23T05:06:35.9689369Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask150\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask188\",\"eTag\":\"0x8DB5B4B7BEF41AC\",\"lastModified\":\"2023-05-23T05:06:36.3009452Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask188\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask154\",\"eTag\":\"0x8DB5B4B7BEF68D7\",\"lastModified\":\"2023-05-23T05:06:36.3019479Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask154\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask152\",\"eTag\":\"0x8DB5B4B7BEF68D7\",\"lastModified\":\"2023-05-23T05:06:36.3019479Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask152\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask153\",\"eTag\":\"0x8DB5B4B7BF0C866\",\"lastModified\":\"2023-05-23T05:06:36.3109478Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask153\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask158\",\"eTag\":\"0x8DB5B4B7BF0EF79\",\"lastModified\":\"2023-05-23T05:06:36.3119481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask158\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask160\",\"eTag\":\"0x8DB5B4B7BF1169E\",\"lastModified\":\"2023-05-23T05:06:36.3129502Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask160\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask170\",\"eTag\":\"0x8DB5B4B7BF164AA\",\"lastModified\":\"2023-05-23T05:06:36.3149482Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask170\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask163\",\"eTag\":\"0x8DB5B4B7BF1169E\",\"lastModified\":\"2023-05-23T05:06:36.3129502Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask163\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask164\",\"eTag\":\"0x8DB5B4B7BF164AA\",\"lastModified\":\"2023-05-23T05:06:36.3149482Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask164\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask156\",\"eTag\":\"0x8DB5B4B7BF3D5CC\",\"lastModified\":\"2023-05-23T05:06:36.3309516Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask156\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask161\",\"eTag\":\"0x8DB5B4B7BF164AA\",\"lastModified\":\"2023-05-23T05:06:36.3149482Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask161\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask165\",\"eTag\":\"0x8DB5B4B7BF3FCB1\",\"lastModified\":\"2023-05-23T05:06:36.3319473Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask165\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask174\",\"eTag\":\"0x8DB5B4B7BF18BD7\",\"lastModified\":\"2023-05-23T05:06:36.3159511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask174\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask171\",\"eTag\":\"0x8DB5B4B7BF50E2D\",\"lastModified\":\"2023-05-23T05:06:36.3389485Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask171\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask169\",\"eTag\":\"0x8DB5B4B7BF44AD5\",\"lastModified\":\"2023-05-23T05:06:36.3339477Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask169\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask159\",\"eTag\":\"0x8DB5B4B7BF3FCB1\",\"lastModified\":\"2023-05-23T05:06:36.3319473Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask159\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask166\",\"eTag\":\"0x8DB5B4B7BF3FCB1\",\"lastModified\":\"2023-05-23T05:06:36.3319473Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask166\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask172\",\"eTag\":\"0x8DB5B4B7BF50E2D\",\"lastModified\":\"2023-05-23T05:06:36.3389485Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask172\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask155\",\"eTag\":\"0x8DB5B4B7BF3D5CC\",\"lastModified\":\"2023-05-23T05:06:36.3309516Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask155\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask168\",\"eTag\":\"0x8DB5B4B7BF73109\",\"lastModified\":\"2023-05-23T05:06:36.3529481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask168\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask175\",\"eTag\":\"0x8DB5B4B7BF5D178\",\"lastModified\":\"2023-05-23T05:06:36.343948Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask175\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask176\",\"eTag\":\"0x8DB5B4B7BF75825\",\"lastModified\":\"2023-05-23T05:06:36.3539493Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask176\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask167\",\"eTag\":\"0x8DB5B4B7BF164AA\",\"lastModified\":\"2023-05-23T05:06:36.3149482Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask167\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask157\",\"eTag\":\"0x8DB5B4B7BF0EF79\",\"lastModified\":\"2023-05-23T05:06:36.3119481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask157\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask162\",\"eTag\":\"0x8DB5B4B7BF7A63A\",\"lastModified\":\"2023-05-23T05:06:36.3559482Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask162\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask179\",\"eTag\":\"0x8DB5B4B7BF869A0\",\"lastModified\":\"2023-05-23T05:06:36.3609504Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask179\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask177\",\"eTag\":\"0x8DB5B4B7BF8B7AD\",\"lastModified\":\"2023-05-23T05:06:36.3629485Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask177\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask189\",\"eTag\":\"0x8DB5B4B7BF9C936\",\"lastModified\":\"2023-05-23T05:06:36.369951Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask189\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask193\",\"eTag\":\"0x8DB5B4B7BFADAB3\",\"lastModified\":\"2023-05-23T05:06:36.3769523Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask193\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask181\",\"eTag\":\"0x8DB5B4B7BFCAF6F\",\"lastModified\":\"2023-05-23T05:06:36.3889519Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask181\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask183\",\"eTag\":\"0x8DB5B4B7BFC8865\",\"lastModified\":\"2023-05-23T05:06:36.3879525Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask183\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask182\",\"eTag\":\"0x8DB5B4B7BFCAF6F\",\"lastModified\":\"2023-05-23T05:06:36.3889519Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask182\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask192\",\"eTag\":\"0x8DB5B4B7BFC6167\",\"lastModified\":\"2023-05-23T05:06:36.3869543Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask192\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask198\",\"eTag\":\"0x8DB5B4B7BFC1331\",\"lastModified\":\"2023-05-23T05:06:36.3849521Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask198\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask194\",\"eTag\":\"0x8DB5B4B7BFCD684\",\"lastModified\":\"2023-05-23T05:06:36.3899524Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask194\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask187\",\"eTag\":\"0x8DB5B4B7BFAB398\",\"lastModified\":\"2023-05-23T05:06:36.3759512Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask187\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask191\",\"eTag\":\"0x8DB5B4B7BFD72CA\",\"lastModified\":\"2023-05-23T05:06:36.393953Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask191\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask178\",\"eTag\":\"0x8DB5B4B7BFD99C2\",\"lastModified\":\"2023-05-23T05:06:36.3949506Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask178\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask196\",\"eTag\":\"0x8DB5B4B7BFE0EF3\",\"lastModified\":\"2023-05-23T05:06:36.3979507Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask196\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask186\",\"eTag\":\"0x8DB5B4B7C0031F0\",\"lastModified\":\"2023-05-23T05:06:36.4119536Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask186\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask173\",\"eTag\":\"0x8DB5B4B7C005901\",\"lastModified\":\"2023-05-23T05:06:36.4129537Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask173\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask185\",\"eTag\":\"0x8DB5B4B7BFFE3D2\",\"lastModified\":\"2023-05-23T05:06:36.4099538Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask185\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask195\",\"eTag\":\"0x8DB5B4B7BFDE7FC\",\"lastModified\":\"2023-05-23T05:06:36.3969532Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask195\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask184\",\"eTag\":\"0x8DB5B4B7C005901\",\"lastModified\":\"2023-05-23T05:06:36.4129537Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask184\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask197\",\"eTag\":\"0x8DB5B4B7C00F522\",\"lastModified\":\"2023-05-23T05:06:36.4169506Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask197\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask190\",\"eTag\":\"0x8DB5B4B7BFFBCAA\",\"lastModified\":\"2023-05-23T05:06:36.4089514Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask190\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask199\",\"eTag\":\"0x8DB5B4B7BFE35FC\",\"lastModified\":\"2023-05-23T05:06:36.39895Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask199\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask180\",\"eTag\":\"0x8DB5B4B7C00F522\",\"lastModified\":\"2023-05-23T05:06:36.4169506Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask180\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:39 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "ed0ceef6-2166-4598-9135-cf59c10439ef", + "client-request-id" : "8a343402-138b-4bc7-bed8-a6a1d879a447", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "6ec79fe9-0bca-431d-99bd-e07ddf0d95f5", + "request-id" : "4fd8ab82-1053-4d86-b911-6a449897f737", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask502\",\"eTag\":\"0x8DAC6BEA8BAF871\",\"lastModified\":\"2022-11-15T04:05:40.3257969Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask502\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask501\",\"eTag\":\"0x8DAC6BEA8BAF871\",\"lastModified\":\"2022-11-15T04:05:40.3257969Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask501\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask504\",\"eTag\":\"0x8DAC6BEA8BB1F90\",\"lastModified\":\"2022-11-15T04:05:40.3267984Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask504\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask508\",\"eTag\":\"0x8DAC6BEA8BB1F90\",\"lastModified\":\"2022-11-15T04:05:40.3267984Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask508\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask503\",\"eTag\":\"0x8DAC6BEA8BAF871\",\"lastModified\":\"2022-11-15T04:05:40.3257969Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask503\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask507\",\"eTag\":\"0x8DAC6BEA8BB1F90\",\"lastModified\":\"2022-11-15T04:05:40.3267984Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask507\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask506\",\"eTag\":\"0x8DAC6BEA8BAF871\",\"lastModified\":\"2022-11-15T04:05:40.3257969Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask506\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask509\",\"eTag\":\"0x8DAC6BEA8BB4698\",\"lastModified\":\"2022-11-15T04:05:40.3277976Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask509\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask510\",\"eTag\":\"0x8DAC6BEA8BB1F90\",\"lastModified\":\"2022-11-15T04:05:40.3267984Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask510\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask512\",\"eTag\":\"0x8DAC6BEA8BBE2E9\",\"lastModified\":\"2022-11-15T04:05:40.3317993Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask512\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask505\",\"eTag\":\"0x8DAC6BEA8BB4698\",\"lastModified\":\"2022-11-15T04:05:40.3277976Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask505\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask516\",\"eTag\":\"0x8DAC6BEA8BC30F1\",\"lastModified\":\"2022-11-15T04:05:40.3337969Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask516\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask514\",\"eTag\":\"0x8DAC6BEA8BC09F3\",\"lastModified\":\"2022-11-15T04:05:40.3327987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask514\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask517\",\"eTag\":\"0x8DAC6BEA8BC30F1\",\"lastModified\":\"2022-11-15T04:05:40.3337969Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask517\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask513\",\"eTag\":\"0x8DAC6BEA8BC30F1\",\"lastModified\":\"2022-11-15T04:05:40.3337969Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask513\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask520\",\"eTag\":\"0x8DAC6BEA8BC5812\",\"lastModified\":\"2022-11-15T04:05:40.3347986Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask520\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask518\",\"eTag\":\"0x8DAC6BEA8BC5812\",\"lastModified\":\"2022-11-15T04:05:40.3347986Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask518\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask511\",\"eTag\":\"0x8DAC6BEA8BB4698\",\"lastModified\":\"2022-11-15T04:05:40.3277976Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask511\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask519\",\"eTag\":\"0x8DAC6BEA8BC7F25\",\"lastModified\":\"2022-11-15T04:05:40.3357989Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask519\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask522\",\"eTag\":\"0x8DAC6BEA8BC7F25\",\"lastModified\":\"2022-11-15T04:05:40.3357989Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask522\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask523\",\"eTag\":\"0x8DAC6BEA8BC7F25\",\"lastModified\":\"2022-11-15T04:05:40.3357989Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask523\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask521\",\"eTag\":\"0x8DAC6BEA8BC7F25\",\"lastModified\":\"2022-11-15T04:05:40.3357989Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask521\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask532\",\"eTag\":\"0x8DAC6BEA8C1AF4C\",\"lastModified\":\"2022-11-15T04:05:40.3697996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask532\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask528\",\"eTag\":\"0x8DAC6BEA8C1883F\",\"lastModified\":\"2022-11-15T04:05:40.3687999Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask528\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask530\",\"eTag\":\"0x8DAC6BEA8C1883F\",\"lastModified\":\"2022-11-15T04:05:40.3687999Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask530\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask515\",\"eTag\":\"0x8DAC6BEA8C1883F\",\"lastModified\":\"2022-11-15T04:05:40.3687999Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask515\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask525\",\"eTag\":\"0x8DAC6BEA8C16129\",\"lastModified\":\"2022-11-15T04:05:40.3677993Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask525\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask527\",\"eTag\":\"0x8DAC6BEA8C1AF4C\",\"lastModified\":\"2022-11-15T04:05:40.3697996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask527\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask529\",\"eTag\":\"0x8DAC6BEA8C1883F\",\"lastModified\":\"2022-11-15T04:05:40.3687999Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask529\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask531\",\"eTag\":\"0x8DAC6BEA8C1AF4C\",\"lastModified\":\"2022-11-15T04:05:40.3697996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask531\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask536\",\"eTag\":\"0x8DAC6BEA8C1D65A\",\"lastModified\":\"2022-11-15T04:05:40.3707994Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask536\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask533\",\"eTag\":\"0x8DAC6BEA8C1AF4C\",\"lastModified\":\"2022-11-15T04:05:40.3697996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask533\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask524\",\"eTag\":\"0x8DAC6BEA8C1883F\",\"lastModified\":\"2022-11-15T04:05:40.3687999Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask524\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask535\",\"eTag\":\"0x8DAC6BEA8C1AF4C\",\"lastModified\":\"2022-11-15T04:05:40.3697996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask535\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask547\",\"eTag\":\"0x8DAC6BEA8C30ED5\",\"lastModified\":\"2022-11-15T04:05:40.3787989Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask547\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask545\",\"eTag\":\"0x8DAC6BEA8C299AA\",\"lastModified\":\"2022-11-15T04:05:40.3757994Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask545\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask537\",\"eTag\":\"0x8DAC6BEA8C1D65A\",\"lastModified\":\"2022-11-15T04:05:40.3707994Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask537\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask543\",\"eTag\":\"0x8DAC6BEA8C6913F\",\"lastModified\":\"2022-11-15T04:05:40.4017983Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask543\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask538\",\"eTag\":\"0x8DAC6BEA8C1FD66\",\"lastModified\":\"2022-11-15T04:05:40.371799Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask538\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask540\",\"eTag\":\"0x8DAC6BEA8C22471\",\"lastModified\":\"2022-11-15T04:05:40.3727985Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask540\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask541\",\"eTag\":\"0x8DAC6BEA8C299AA\",\"lastModified\":\"2022-11-15T04:05:40.3757994Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask541\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask539\",\"eTag\":\"0x8DAC6BEA8C22471\",\"lastModified\":\"2022-11-15T04:05:40.3727985Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask539\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask544\",\"eTag\":\"0x8DAC6BEA8C299AA\",\"lastModified\":\"2022-11-15T04:05:40.3757994Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask544\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask526\",\"eTag\":\"0x8DAC6BEA8C24B85\",\"lastModified\":\"2022-11-15T04:05:40.3737989Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask526\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask548\",\"eTag\":\"0x8DAC6BEA8C3D21F\",\"lastModified\":\"2022-11-15T04:05:40.3837983Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask548\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask546\",\"eTag\":\"0x8DAC6BEA8C5A6E9\",\"lastModified\":\"2022-11-15T04:05:40.3957993Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask546\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask549\",\"eTag\":\"0x8DAC6BEA8C57FB4\",\"lastModified\":\"2022-11-15T04:05:40.3947956Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask549\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask542\",\"eTag\":\"0x8DAC6BEA8C2C0B4\",\"lastModified\":\"2022-11-15T04:05:40.3767988Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask542\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask500\",\"eTag\":\"0x8DAC6BEA8BB1F90\",\"lastModified\":\"2022-11-15T04:05:40.3267984Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask500\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask534\",\"eTag\":\"0x8DAC6BEA8C1AF4C\",\"lastModified\":\"2022-11-15T04:05:40.3697996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask534\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask51\",\"eTag\":\"0x8DB5B4B7BEF68D7\",\"lastModified\":\"2023-05-23T05:06:36.3019479Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask51\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask58\",\"eTag\":\"0x8DB5B4B7BF1169E\",\"lastModified\":\"2023-05-23T05:06:36.3129502Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask58\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask60\",\"eTag\":\"0x8DB5B4B7BF13D93\",\"lastModified\":\"2023-05-23T05:06:36.3139475Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask60\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask56\",\"eTag\":\"0x8DB5B4B7BF1169E\",\"lastModified\":\"2023-05-23T05:06:36.3129502Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask56\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask53\",\"eTag\":\"0x8DB5B4B7BEF9003\",\"lastModified\":\"2023-05-23T05:06:36.3029507Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask53\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask55\",\"eTag\":\"0x8DB5B4B7BF0EF79\",\"lastModified\":\"2023-05-23T05:06:36.3119481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask55\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask68\",\"eTag\":\"0x8DB5B4B7BF1B2E7\",\"lastModified\":\"2023-05-23T05:06:36.3169511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask68\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask54\",\"eTag\":\"0x8DB5B4B7BF18BD7\",\"lastModified\":\"2023-05-23T05:06:36.3159511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask54\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask59\",\"eTag\":\"0x8DB5B4B7BF3D5CC\",\"lastModified\":\"2023-05-23T05:06:36.3309516Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask59\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask52\",\"eTag\":\"0x8DB5B4B7BF13D93\",\"lastModified\":\"2023-05-23T05:06:36.3139475Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask52\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask70\",\"eTag\":\"0x8DB5B4B7BF423C9\",\"lastModified\":\"2023-05-23T05:06:36.3329481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask70\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask63\",\"eTag\":\"0x8DB5B4B7BF1D9DF\",\"lastModified\":\"2023-05-23T05:06:36.3179487Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask63\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask66\",\"eTag\":\"0x8DB5B4B7BF18BD7\",\"lastModified\":\"2023-05-23T05:06:36.3159511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask66\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask62\",\"eTag\":\"0x8DB5B4B7BF1B2E7\",\"lastModified\":\"2023-05-23T05:06:36.3169511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask62\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask64\",\"eTag\":\"0x8DB5B4B7BF3FCB1\",\"lastModified\":\"2023-05-23T05:06:36.3319473Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask64\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask72\",\"eTag\":\"0x8DB5B4B7BF423C9\",\"lastModified\":\"2023-05-23T05:06:36.3329481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask72\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask65\",\"eTag\":\"0x8DB5B4B7BF5AA84\",\"lastModified\":\"2023-05-23T05:06:36.3429508Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask65\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask61\",\"eTag\":\"0x8DB5B4B7BF18BD7\",\"lastModified\":\"2023-05-23T05:06:36.3159511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask61\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask50\",\"eTag\":\"0x8DB5B4B7BF0EF79\",\"lastModified\":\"2023-05-23T05:06:36.3119481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask50\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask71\",\"eTag\":\"0x8DB5B4B7BF5D178\",\"lastModified\":\"2023-05-23T05:06:36.343948Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask71\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask69\",\"eTag\":\"0x8DB5B4B7BF53556\",\"lastModified\":\"2023-05-23T05:06:36.339951Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask69\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask57\",\"eTag\":\"0x8DB5B4B7BF0EF79\",\"lastModified\":\"2023-05-23T05:06:36.3119481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask57\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask78\",\"eTag\":\"0x8DB5B4B7BF8B7AD\",\"lastModified\":\"2023-05-23T05:06:36.3629485Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask78\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask82\",\"eTag\":\"0x8DB5B4B7BF8DEBB\",\"lastModified\":\"2023-05-23T05:06:36.3639483Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask82\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask74\",\"eTag\":\"0x8DB5B4B7BF869A0\",\"lastModified\":\"2023-05-23T05:06:36.3609504Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask74\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask83\",\"eTag\":\"0x8DB5B4B7BF905FA\",\"lastModified\":\"2023-05-23T05:06:36.364953Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask83\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask67\",\"eTag\":\"0x8DB5B4B7BFADAB3\",\"lastModified\":\"2023-05-23T05:06:36.3769523Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask67\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask86\",\"eTag\":\"0x8DB5B4B7BFA8C7C\",\"lastModified\":\"2023-05-23T05:06:36.37495Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask86\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask76\",\"eTag\":\"0x8DB5B4B7BFBC506\",\"lastModified\":\"2023-05-23T05:06:36.382951Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask76\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask90\",\"eTag\":\"0x8DB5B4B7BFCD684\",\"lastModified\":\"2023-05-23T05:06:36.3899524Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask90\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask85\",\"eTag\":\"0x8DB5B4B7BFC1331\",\"lastModified\":\"2023-05-23T05:06:36.3849521Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask85\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask94\",\"eTag\":\"0x8DB5B4B7BFCD684\",\"lastModified\":\"2023-05-23T05:06:36.3899524Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask94\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask79\",\"eTag\":\"0x8DB5B4B7BFD24A0\",\"lastModified\":\"2023-05-23T05:06:36.391952Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask79\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask98\",\"eTag\":\"0x8DB5B4B7BFC6167\",\"lastModified\":\"2023-05-23T05:06:36.3869543Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask98\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask81\",\"eTag\":\"0x8DB5B4B7BFD4BB9\",\"lastModified\":\"2023-05-23T05:06:36.3929529Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask81\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask93\",\"eTag\":\"0x8DB5B4B7BFC6167\",\"lastModified\":\"2023-05-23T05:06:36.3869543Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask93\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask87\",\"eTag\":\"0x8DB5B4B7BFCAF6F\",\"lastModified\":\"2023-05-23T05:06:36.3889519Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask87\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask80\",\"eTag\":\"0x8DB5B4B7BFD72CA\",\"lastModified\":\"2023-05-23T05:06:36.393953Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask80\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask84\",\"eTag\":\"0x8DB5B4B7BFFBCAA\",\"lastModified\":\"2023-05-23T05:06:36.4089514Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask84\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask95\",\"eTag\":\"0x8DB5B4B7C0031F0\",\"lastModified\":\"2023-05-23T05:06:36.4119536Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask95\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask89\",\"eTag\":\"0x8DB5B4B7C0031F0\",\"lastModified\":\"2023-05-23T05:06:36.4119536Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask89\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask96\",\"eTag\":\"0x8DB5B4B7C00A70F\",\"lastModified\":\"2023-05-23T05:06:36.4149519Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask96\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask97\",\"eTag\":\"0x8DB5B4B7C01435E\",\"lastModified\":\"2023-05-23T05:06:36.4189534Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask97\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask91\",\"eTag\":\"0x8DB5B4B7C00A70F\",\"lastModified\":\"2023-05-23T05:06:36.4149519Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask91\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask99\",\"eTag\":\"0x8DB5B4B7C011C49\",\"lastModified\":\"2023-05-23T05:06:36.4179529Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask99\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask88\",\"eTag\":\"0x8DB5B4B7C011C49\",\"lastModified\":\"2023-05-23T05:06:36.4179529Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask88\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask92\",\"eTag\":\"0x8DB5B4B7C00A70F\",\"lastModified\":\"2023-05-23T05:06:36.4149519Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask92\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask75\",\"eTag\":\"0x8DB5B4B7BFA8C7C\",\"lastModified\":\"2023-05-23T05:06:36.37495Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask75\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask73\",\"eTag\":\"0x8DB5B4B7C022DBB\",\"lastModified\":\"2023-05-23T05:06:36.4249531Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask73\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask77\",\"eTag\":\"0x8DB5B4B7C022DBB\",\"lastModified\":\"2023-05-23T05:06:36.4249531Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask77\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:39 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "cde46d56-c1b9-4a95-bb07-bc89870da7da", + "client-request-id" : "16b44418-23f9-41e4-8dcf-75f57a07385d", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "864041d4-a63b-4914-8424-1fb111c5b333", + "request-id" : "fc619615-bfbf-494e-8285-dc30824e555d", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask150\",\"eTag\":\"0x8DAC6BEA8C8F6DF\",\"lastModified\":\"2022-11-15T04:05:40.4175071Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask150\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask151\",\"eTag\":\"0x8DAC6BEA8C9E12D\",\"lastModified\":\"2022-11-15T04:05:40.4235053Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask151\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask152\",\"eTag\":\"0x8DAC6BEA8C9E12D\",\"lastModified\":\"2022-11-15T04:05:40.4235053Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask152\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask153\",\"eTag\":\"0x8DAC6BEA8C9E12D\",\"lastModified\":\"2022-11-15T04:05:40.4235053Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask153\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask155\",\"eTag\":\"0x8DAC6BEA8CAA493\",\"lastModified\":\"2022-11-15T04:05:40.4285075Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask155\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask154\",\"eTag\":\"0x8DAC6BEA8CA0865\",\"lastModified\":\"2022-11-15T04:05:40.4245093Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask154\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask165\",\"eTag\":\"0x8DAC6BEA8CAF2B1\",\"lastModified\":\"2022-11-15T04:05:40.4305073Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask165\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask179\",\"eTag\":\"0x8DAC6BEA8CDFFD4\",\"lastModified\":\"2022-11-15T04:05:40.4505044Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask179\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask177\",\"eTag\":\"0x8DAC6BEA8CE9C3A\",\"lastModified\":\"2022-11-15T04:05:40.4545082Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask177\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask181\",\"eTag\":\"0x8DAC6BEA8CE9C3A\",\"lastModified\":\"2022-11-15T04:05:40.4545082Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask181\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask190\",\"eTag\":\"0x8DAC6BEA8CEEA70\",\"lastModified\":\"2022-11-15T04:05:40.4565104Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask190\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask178\",\"eTag\":\"0x8DAC6BEA8CE26F3\",\"lastModified\":\"2022-11-15T04:05:40.4515059Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask178\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask196\",\"eTag\":\"0x8DAC6BEA8CF387E\",\"lastModified\":\"2022-11-15T04:05:40.4585086Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask196\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask157\",\"eTag\":\"0x8DAC6BEA8D10D34\",\"lastModified\":\"2022-11-15T04:05:40.4705076Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask157\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask158\",\"eTag\":\"0x8DAC6BEA8D13447\",\"lastModified\":\"2022-11-15T04:05:40.4715079Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask158\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask156\",\"eTag\":\"0x8DAC6BEA8D15BFF\",\"lastModified\":\"2022-11-15T04:05:40.4725247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask156\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask161\",\"eTag\":\"0x8DAC6BEA8D21EA7\",\"lastModified\":\"2022-11-15T04:05:40.4775079Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask161\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask164\",\"eTag\":\"0x8DAC6BEA8D26CD1\",\"lastModified\":\"2022-11-15T04:05:40.4795089Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask164\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask162\",\"eTag\":\"0x8DAC6BEA8D245C8\",\"lastModified\":\"2022-11-15T04:05:40.4785096Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask162\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask167\",\"eTag\":\"0x8DAC6BEA8D245C8\",\"lastModified\":\"2022-11-15T04:05:40.4785096Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask167\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask159\",\"eTag\":\"0x8DAC6BEA8D21EA7\",\"lastModified\":\"2022-11-15T04:05:40.4775079Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask159\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask170\",\"eTag\":\"0x8DAC6BEA8D2BAF0\",\"lastModified\":\"2022-11-15T04:05:40.4815088Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask170\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask166\",\"eTag\":\"0x8DAC6BEA8D245C8\",\"lastModified\":\"2022-11-15T04:05:40.4785096Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask166\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask171\",\"eTag\":\"0x8DAC6BEA8D3090C\",\"lastModified\":\"2022-11-15T04:05:40.4835084Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask171\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask182\",\"eTag\":\"0x8DAC6BEA8D3090C\",\"lastModified\":\"2022-11-15T04:05:40.4835084Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask182\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask176\",\"eTag\":\"0x8DAC6BEA8D3090C\",\"lastModified\":\"2022-11-15T04:05:40.4835084Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask176\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask168\",\"eTag\":\"0x8DAC6BEA8D3090C\",\"lastModified\":\"2022-11-15T04:05:40.4835084Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask168\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask173\",\"eTag\":\"0x8DAC6BEA8D3090C\",\"lastModified\":\"2022-11-15T04:05:40.4835084Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask173\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask180\",\"eTag\":\"0x8DAC6BEA8D2E210\",\"lastModified\":\"2022-11-15T04:05:40.4825104Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask180\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask169\",\"eTag\":\"0x8DAC6BEA8D2BAF0\",\"lastModified\":\"2022-11-15T04:05:40.4815088Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask169\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask160\",\"eTag\":\"0x8DAC6BEA8D10D34\",\"lastModified\":\"2022-11-15T04:05:40.4705076Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask160\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask174\",\"eTag\":\"0x8DAC6BEA8D3F366\",\"lastModified\":\"2022-11-15T04:05:40.4895078Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask174\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask175\",\"eTag\":\"0x8DAC6BEA8D33024\",\"lastModified\":\"2022-11-15T04:05:40.4845092Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask175\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask185\",\"eTag\":\"0x8DAC6BEA8D41A87\",\"lastModified\":\"2022-11-15T04:05:40.4905095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask185\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask186\",\"eTag\":\"0x8DAC6BEA8D4419B\",\"lastModified\":\"2022-11-15T04:05:40.4915099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask186\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask187\",\"eTag\":\"0x8DAC6BEA8D41A87\",\"lastModified\":\"2022-11-15T04:05:40.4905095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask187\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask183\",\"eTag\":\"0x8DAC6BEA8D41A87\",\"lastModified\":\"2022-11-15T04:05:40.4905095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask183\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask188\",\"eTag\":\"0x8DAC6BEA8D4419B\",\"lastModified\":\"2022-11-15T04:05:40.4915099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask188\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask189\",\"eTag\":\"0x8DAC6BEA8D4419B\",\"lastModified\":\"2022-11-15T04:05:40.4915099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask189\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask199\",\"eTag\":\"0x8DAC6BEA8D41A87\",\"lastModified\":\"2022-11-15T04:05:40.4905095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask199\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask163\",\"eTag\":\"0x8DAC6BEA8D41A87\",\"lastModified\":\"2022-11-15T04:05:40.4905095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask163\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask172\",\"eTag\":\"0x8DAC6BEA8D41A87\",\"lastModified\":\"2022-11-15T04:05:40.4905095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask172\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask192\",\"eTag\":\"0x8DAC6BEA8D4419B\",\"lastModified\":\"2022-11-15T04:05:40.4915099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask192\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask195\",\"eTag\":\"0x8DAC6BEA8D4419B\",\"lastModified\":\"2022-11-15T04:05:40.4915099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask195\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask184\",\"eTag\":\"0x8DAC6BEA8D4419B\",\"lastModified\":\"2022-11-15T04:05:40.4915099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask184\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask197\",\"eTag\":\"0x8DAC6BEA8D468AD\",\"lastModified\":\"2022-11-15T04:05:40.4925101Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask197\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask193\",\"eTag\":\"0x8DAC6BEA8D468AD\",\"lastModified\":\"2022-11-15T04:05:40.4925101Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask193\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask191\",\"eTag\":\"0x8DAC6BEA8D468AD\",\"lastModified\":\"2022-11-15T04:05:40.4925101Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask191\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask198\",\"eTag\":\"0x8DAC6BEA8D4419B\",\"lastModified\":\"2022-11-15T04:05:40.4915099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask198\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask194\",\"eTag\":\"0x8DAC6BEA8D5A113\",\"lastModified\":\"2022-11-15T04:05:40.5005075Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask194\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask251\",\"eTag\":\"0x8DB5B4B7BEF68D7\",\"lastModified\":\"2023-05-23T05:06:36.3019479Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask251\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask250\",\"eTag\":\"0x8DB5B4B7BEF68D7\",\"lastModified\":\"2023-05-23T05:06:36.3019479Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask250\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask255\",\"eTag\":\"0x8DB5B4B7BF13D93\",\"lastModified\":\"2023-05-23T05:06:36.3139475Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask255\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask258\",\"eTag\":\"0x8DB5B4B7BF164AA\",\"lastModified\":\"2023-05-23T05:06:36.3149482Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask258\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask257\",\"eTag\":\"0x8DB5B4B7BF3D5CC\",\"lastModified\":\"2023-05-23T05:06:36.3309516Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask257\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask261\",\"eTag\":\"0x8DB5B4B7BF18BD7\",\"lastModified\":\"2023-05-23T05:06:36.3159511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask261\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask254\",\"eTag\":\"0x8DB5B4B7BF164AA\",\"lastModified\":\"2023-05-23T05:06:36.3149482Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask254\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask253\",\"eTag\":\"0x8DB5B4B7BF13D93\",\"lastModified\":\"2023-05-23T05:06:36.3139475Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask253\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask256\",\"eTag\":\"0x8DB5B4B7BF1D9DF\",\"lastModified\":\"2023-05-23T05:06:36.3179487Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask256\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask263\",\"eTag\":\"0x8DB5B4B7BF44AD5\",\"lastModified\":\"2023-05-23T05:06:36.3339477Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask263\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask266\",\"eTag\":\"0x8DB5B4B7BF4C01B\",\"lastModified\":\"2023-05-23T05:06:36.3369499Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask266\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask268\",\"eTag\":\"0x8DB5B4B7BF44AD5\",\"lastModified\":\"2023-05-23T05:06:36.3339477Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask268\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask269\",\"eTag\":\"0x8DB5B4B7BF44AD5\",\"lastModified\":\"2023-05-23T05:06:36.3339477Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask269\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask270\",\"eTag\":\"0x8DB5B4B7BF49906\",\"lastModified\":\"2023-05-23T05:06:36.3359494Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask270\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask267\",\"eTag\":\"0x8DB5B4B7BF4C01B\",\"lastModified\":\"2023-05-23T05:06:36.3369499Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask267\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask262\",\"eTag\":\"0x8DB5B4B7BF5835F\",\"lastModified\":\"2023-05-23T05:06:36.3419487Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask262\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask264\",\"eTag\":\"0x8DB5B4B7BF3AEB0\",\"lastModified\":\"2023-05-23T05:06:36.3299504Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask264\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask265\",\"eTag\":\"0x8DB5B4B7BF3FCB1\",\"lastModified\":\"2023-05-23T05:06:36.3319473Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask265\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask252\",\"eTag\":\"0x8DB5B4B7BF7A63A\",\"lastModified\":\"2023-05-23T05:06:36.3559482Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask252\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask259\",\"eTag\":\"0x8DB5B4B7BF3AEB0\",\"lastModified\":\"2023-05-23T05:06:36.3299504Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask259\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask260\",\"eTag\":\"0x8DB5B4B7BF77F2D\",\"lastModified\":\"2023-05-23T05:06:36.3549485Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask260\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask275\",\"eTag\":\"0x8DB5B4B7BF8DEBB\",\"lastModified\":\"2023-05-23T05:06:36.3639483Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask275\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask294\",\"eTag\":\"0x8DB5B4B7BFADAB3\",\"lastModified\":\"2023-05-23T05:06:36.3769523Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask294\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask274\",\"eTag\":\"0x8DB5B4B7BFBEC55\",\"lastModified\":\"2023-05-23T05:06:36.3839573Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask274\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask292\",\"eTag\":\"0x8DB5B4B7BFCFD99\",\"lastModified\":\"2023-05-23T05:06:36.3909529Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask292\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask276\",\"eTag\":\"0x8DB5B4B7BFC8865\",\"lastModified\":\"2023-05-23T05:06:36.3879525Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask276\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask289\",\"eTag\":\"0x8DB5B4B7BFAB398\",\"lastModified\":\"2023-05-23T05:06:36.3759512Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask289\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask288\",\"eTag\":\"0x8DB5B4B7BFC3A2A\",\"lastModified\":\"2023-05-23T05:06:36.3859498Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask288\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask272\",\"eTag\":\"0x8DB5B4B7C0031F0\",\"lastModified\":\"2023-05-23T05:06:36.4119536Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask272\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask273\",\"eTag\":\"0x8DB5B4B7BFD99C2\",\"lastModified\":\"2023-05-23T05:06:36.3949506Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask273\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask286\",\"eTag\":\"0x8DB5B4B7BFDC0CE\",\"lastModified\":\"2023-05-23T05:06:36.3959502Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask286\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask282\",\"eTag\":\"0x8DB5B4B7C007FED\",\"lastModified\":\"2023-05-23T05:06:36.4139501Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask282\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask287\",\"eTag\":\"0x8DB5B4B7C005901\",\"lastModified\":\"2023-05-23T05:06:36.4129537Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask287\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask281\",\"eTag\":\"0x8DB5B4B7BFE35FC\",\"lastModified\":\"2023-05-23T05:06:36.39895Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask281\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask278\",\"eTag\":\"0x8DB5B4B7C00A70F\",\"lastModified\":\"2023-05-23T05:06:36.4149519Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask278\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask285\",\"eTag\":\"0x8DB5B4B7C00A70F\",\"lastModified\":\"2023-05-23T05:06:36.4149519Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask285\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask277\",\"eTag\":\"0x8DB5B4B7C000ADA\",\"lastModified\":\"2023-05-23T05:06:36.410953Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask277\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask283\",\"eTag\":\"0x8DB5B4B7C01435E\",\"lastModified\":\"2023-05-23T05:06:36.4189534Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask283\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask284\",\"eTag\":\"0x8DB5B4B7C00F522\",\"lastModified\":\"2023-05-23T05:06:36.4169506Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask284\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask290\",\"eTag\":\"0x8DB5B4B7C00CE14\",\"lastModified\":\"2023-05-23T05:06:36.4159508Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask290\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask280\",\"eTag\":\"0x8DB5B4B7C011C49\",\"lastModified\":\"2023-05-23T05:06:36.4179529Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask280\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask293\",\"eTag\":\"0x8DB5B4B7C016A60\",\"lastModified\":\"2023-05-23T05:06:36.419952Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask293\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask271\",\"eTag\":\"0x8DB5B4B7C000ADA\",\"lastModified\":\"2023-05-23T05:06:36.410953Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask271\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask291\",\"eTag\":\"0x8DB5B4B7C000ADA\",\"lastModified\":\"2023-05-23T05:06:36.410953Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask291\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask279\",\"eTag\":\"0x8DB5B4B7C00CE14\",\"lastModified\":\"2023-05-23T05:06:36.4159508Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask279\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask296\",\"eTag\":\"0x8DB5B4B7C02068F\",\"lastModified\":\"2023-05-23T05:06:36.4239503Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask296\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask295\",\"eTag\":\"0x8DB5B4B7C016A60\",\"lastModified\":\"2023-05-23T05:06:36.419952Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask295\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask299\",\"eTag\":\"0x8DB5B4B7C022DBB\",\"lastModified\":\"2023-05-23T05:06:36.4249531Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask299\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask298\",\"eTag\":\"0x8DB5B4B7C016A60\",\"lastModified\":\"2023-05-23T05:06:36.419952Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask298\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask297\",\"eTag\":\"0x8DB5B4B7C027BC1\",\"lastModified\":\"2023-05-23T05:06:36.4269505Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask297\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "74605e19-0c07-441a-88b9-a44cb4bf9b2e", + "client-request-id" : "1361b00b-168c-4ef1-95ee-6b4f4ed177c3", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "51663873-7b26-4845-8494-ca579762ec8f", + "request-id" : "c3ae8ad5-ce69-46ce-be1d-8046590a2c96", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask2\",\"eTag\":\"0x8DAC6BEA8C9B6DA\",\"lastModified\":\"2022-11-15T04:05:40.4224218Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask2\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask6\",\"eTag\":\"0x8DAC6BEA8CA2BE6\",\"lastModified\":\"2022-11-15T04:05:40.4254182Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask6\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask3\",\"eTag\":\"0x8DAC6BEA8CA5309\",\"lastModified\":\"2022-11-15T04:05:40.4264201Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask3\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask11\",\"eTag\":\"0x8DAC6BEA8CA5309\",\"lastModified\":\"2022-11-15T04:05:40.4264201Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask11\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask8\",\"eTag\":\"0x8DAC6BEA8CA5309\",\"lastModified\":\"2022-11-15T04:05:40.4264201Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask8\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask4\",\"eTag\":\"0x8DAC6BEA8CA7A22\",\"lastModified\":\"2022-11-15T04:05:40.427421Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask4\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask0\",\"eTag\":\"0x8DAC6BEA8CA5309\",\"lastModified\":\"2022-11-15T04:05:40.4264201Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask0\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask1\",\"eTag\":\"0x8DAC6BEA8CA5309\",\"lastModified\":\"2022-11-15T04:05:40.4264201Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask1\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask5\",\"eTag\":\"0x8DAC6BEA8CA7A22\",\"lastModified\":\"2022-11-15T04:05:40.427421Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask5\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask7\",\"eTag\":\"0x8DAC6BEA8CA7A22\",\"lastModified\":\"2022-11-15T04:05:40.427421Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask7\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask12\",\"eTag\":\"0x8DAC6BEA8CA7A22\",\"lastModified\":\"2022-11-15T04:05:40.427421Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask12\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask10\",\"eTag\":\"0x8DAC6BEA8CAA142\",\"lastModified\":\"2022-11-15T04:05:40.4284226Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask10\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask9\",\"eTag\":\"0x8DAC6BEA8CAA142\",\"lastModified\":\"2022-11-15T04:05:40.4284226Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask9\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask15\",\"eTag\":\"0x8DAC6BEA8CB8B88\",\"lastModified\":\"2022-11-15T04:05:40.43442Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask15\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask14\",\"eTag\":\"0x8DAC6BEA8CAA142\",\"lastModified\":\"2022-11-15T04:05:40.4284226Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask14\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask23\",\"eTag\":\"0x8DAC6BEA8CC00C2\",\"lastModified\":\"2022-11-15T04:05:40.437421Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask23\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask32\",\"eTag\":\"0x8DAC6BEA8CCEB1B\",\"lastModified\":\"2022-11-15T04:05:40.4434203Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask32\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask19\",\"eTag\":\"0x8DAC6BEA8CC27CB\",\"lastModified\":\"2022-11-15T04:05:40.4384203Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask19\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask30\",\"eTag\":\"0x8DAC6BEA8CC9CE0\",\"lastModified\":\"2022-11-15T04:05:40.4414176Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask30\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask31\",\"eTag\":\"0x8DAC6BEA8CCC41E\",\"lastModified\":\"2022-11-15T04:05:40.4424222Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask31\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask33\",\"eTag\":\"0x8DAC6BEA8CD3938\",\"lastModified\":\"2022-11-15T04:05:40.44542Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask33\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask34\",\"eTag\":\"0x8DAC6BEA8CD6058\",\"lastModified\":\"2022-11-15T04:05:40.4464216Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask34\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask16\",\"eTag\":\"0x8DAC6BEA8CC27CB\",\"lastModified\":\"2022-11-15T04:05:40.4384203Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask16\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask20\",\"eTag\":\"0x8DAC6BEA8CC75EE\",\"lastModified\":\"2022-11-15T04:05:40.4404206Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask20\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask37\",\"eTag\":\"0x8DAC6BEA8CD8765\",\"lastModified\":\"2022-11-15T04:05:40.4474213Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask37\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask29\",\"eTag\":\"0x8DAC6BEA8CC9CE0\",\"lastModified\":\"2022-11-15T04:05:40.4414176Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask29\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask35\",\"eTag\":\"0x8DAC6BEA8CD6058\",\"lastModified\":\"2022-11-15T04:05:40.4464216Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask35\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask38\",\"eTag\":\"0x8DAC6BEA8CD8765\",\"lastModified\":\"2022-11-15T04:05:40.4474213Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask38\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask40\",\"eTag\":\"0x8DAC6BEA8CDFC92\",\"lastModified\":\"2022-11-15T04:05:40.450421Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask40\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask43\",\"eTag\":\"0x8DAC6BEA8CF5C15\",\"lastModified\":\"2022-11-15T04:05:40.4594197Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask43\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask44\",\"eTag\":\"0x8DAC6BEA8CF8349\",\"lastModified\":\"2022-11-15T04:05:40.4604233Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask44\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask22\",\"eTag\":\"0x8DAC6BEA8CC75EE\",\"lastModified\":\"2022-11-15T04:05:40.4404206Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask22\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask48\",\"eTag\":\"0x8DAC6BEA8CF5C15\",\"lastModified\":\"2022-11-15T04:05:40.4594197Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask48\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask45\",\"eTag\":\"0x8DAC6BEA8CF5C15\",\"lastModified\":\"2022-11-15T04:05:40.4594197Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask45\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask47\",\"eTag\":\"0x8DAC6BEA8CF8349\",\"lastModified\":\"2022-11-15T04:05:40.4604233Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask47\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask27\",\"eTag\":\"0x8DAC6BEA8CFF85F\",\"lastModified\":\"2022-11-15T04:05:40.4634207Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask27\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask36\",\"eTag\":\"0x8DAC6BEA8CF8349\",\"lastModified\":\"2022-11-15T04:05:40.4604233Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask36\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask41\",\"eTag\":\"0x8DAC6BEA8CF5C15\",\"lastModified\":\"2022-11-15T04:05:40.4594197Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask41\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask46\",\"eTag\":\"0x8DAC6BEA8CF5C15\",\"lastModified\":\"2022-11-15T04:05:40.4594197Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask46\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask25\",\"eTag\":\"0x8DAC6BEA8D0468F\",\"lastModified\":\"2022-11-15T04:05:40.4654223Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask25\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask26\",\"eTag\":\"0x8DAC6BEA8CF8349\",\"lastModified\":\"2022-11-15T04:05:40.4604233Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask26\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask28\",\"eTag\":\"0x8DAC6BEA8CF8349\",\"lastModified\":\"2022-11-15T04:05:40.4604233Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask28\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask42\",\"eTag\":\"0x8DAC6BEA8CDFC92\",\"lastModified\":\"2022-11-15T04:05:40.450421Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask42\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask13\",\"eTag\":\"0x8DAC6BEA8CBD9BC\",\"lastModified\":\"2022-11-15T04:05:40.436422Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask13\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask17\",\"eTag\":\"0x8DAC6BEA8CBD9BC\",\"lastModified\":\"2022-11-15T04:05:40.436422Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask17\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask21\",\"eTag\":\"0x8DAC6BEA8CC75EE\",\"lastModified\":\"2022-11-15T04:05:40.4404206Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask21\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask18\",\"eTag\":\"0x8DAC6BEA8CC4EE5\",\"lastModified\":\"2022-11-15T04:05:40.4394213Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask18\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask39\",\"eTag\":\"0x8DAC6BEA8CF8349\",\"lastModified\":\"2022-11-15T04:05:40.4604233Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask39\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask24\",\"eTag\":\"0x8DAC6BEA8CC9CE0\",\"lastModified\":\"2022-11-15T04:05:40.4414176Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask24\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask49\",\"eTag\":\"0x8DAC6BEA8D21B58\",\"lastModified\":\"2022-11-15T04:05:40.4774232Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask49\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask116\",\"eTag\":\"0x8DB5B4B7BF3FCB1\",\"lastModified\":\"2023-05-23T05:06:36.3319473Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask116\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask111\",\"eTag\":\"0x8DB5B4B7BF1B2E7\",\"lastModified\":\"2023-05-23T05:06:36.3169511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask111\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask103\",\"eTag\":\"0x8DB5B4B7BF0C866\",\"lastModified\":\"2023-05-23T05:06:36.3109478Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask103\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask110\",\"eTag\":\"0x8DB5B4B7BF18BD7\",\"lastModified\":\"2023-05-23T05:06:36.3159511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask110\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask108\",\"eTag\":\"0x8DB5B4B7BF18BD7\",\"lastModified\":\"2023-05-23T05:06:36.3159511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask108\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask105\",\"eTag\":\"0x8DB5B4B7BF1169E\",\"lastModified\":\"2023-05-23T05:06:36.3129502Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask105\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask106\",\"eTag\":\"0x8DB5B4B7BF1169E\",\"lastModified\":\"2023-05-23T05:06:36.3129502Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask106\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask101\",\"eTag\":\"0x8DB5B4B7BF18BD7\",\"lastModified\":\"2023-05-23T05:06:36.3159511Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask101\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask107\",\"eTag\":\"0x8DB5B4B7BF1169E\",\"lastModified\":\"2023-05-23T05:06:36.3129502Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask107\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask109\",\"eTag\":\"0x8DB5B4B7BF423C9\",\"lastModified\":\"2023-05-23T05:06:36.3329481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask109\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask104\",\"eTag\":\"0x8DB5B4B7BF3AEB0\",\"lastModified\":\"2023-05-23T05:06:36.3299504Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask104\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask112\",\"eTag\":\"0x8DB5B4B7BF3AEB0\",\"lastModified\":\"2023-05-23T05:06:36.3299504Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask112\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask100\",\"eTag\":\"0x8DB5B4B7BF0EF79\",\"lastModified\":\"2023-05-23T05:06:36.3119481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask100\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask119\",\"eTag\":\"0x8DB5B4B7BF423C9\",\"lastModified\":\"2023-05-23T05:06:36.3329481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask119\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask113\",\"eTag\":\"0x8DB5B4B7BF44AD5\",\"lastModified\":\"2023-05-23T05:06:36.3339477Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask113\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask115\",\"eTag\":\"0x8DB5B4B7BF73109\",\"lastModified\":\"2023-05-23T05:06:36.3529481Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask115\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask118\",\"eTag\":\"0x8DB5B4B7BF75825\",\"lastModified\":\"2023-05-23T05:06:36.3539493Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask118\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask117\",\"eTag\":\"0x8DB5B4B7BF1D9DF\",\"lastModified\":\"2023-05-23T05:06:36.3179487Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask117\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask102\",\"eTag\":\"0x8DB5B4B7BF0C866\",\"lastModified\":\"2023-05-23T05:06:36.3109478Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask102\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask123\",\"eTag\":\"0x8DB5B4B7BF7A63A\",\"lastModified\":\"2023-05-23T05:06:36.3559482Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask123\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask121\",\"eTag\":\"0x8DB5B4B7BF8B7AD\",\"lastModified\":\"2023-05-23T05:06:36.3629485Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask121\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask122\",\"eTag\":\"0x8DB5B4B7BF8B7AD\",\"lastModified\":\"2023-05-23T05:06:36.3629485Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask122\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask114\",\"eTag\":\"0x8DB5B4B7BFAB398\",\"lastModified\":\"2023-05-23T05:06:36.3759512Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask114\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask132\",\"eTag\":\"0x8DB5B4B7BFA8C7C\",\"lastModified\":\"2023-05-23T05:06:36.37495Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask132\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask133\",\"eTag\":\"0x8DB5B4B7BFBEC55\",\"lastModified\":\"2023-05-23T05:06:36.3839573Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask133\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask134\",\"eTag\":\"0x8DB5B4B7BFB01BA\",\"lastModified\":\"2023-05-23T05:06:36.3779514Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask134\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask141\",\"eTag\":\"0x8DB5B4B7BFC1331\",\"lastModified\":\"2023-05-23T05:06:36.3849521Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask141\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask125\",\"eTag\":\"0x8DB5B4B7BF8DEBB\",\"lastModified\":\"2023-05-23T05:06:36.3639483Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask125\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask136\",\"eTag\":\"0x8DB5B4B7BFB01BA\",\"lastModified\":\"2023-05-23T05:06:36.3779514Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask136\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask137\",\"eTag\":\"0x8DB5B4B7BFC6167\",\"lastModified\":\"2023-05-23T05:06:36.3869543Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask137\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask128\",\"eTag\":\"0x8DB5B4B7BFD24A0\",\"lastModified\":\"2023-05-23T05:06:36.391952Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask128\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask147\",\"eTag\":\"0x8DB5B4B7BFD4BB9\",\"lastModified\":\"2023-05-23T05:06:36.3929529Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask147\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask126\",\"eTag\":\"0x8DB5B4B7BFCFD99\",\"lastModified\":\"2023-05-23T05:06:36.3909529Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask126\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask127\",\"eTag\":\"0x8DB5B4B7BFD99C2\",\"lastModified\":\"2023-05-23T05:06:36.3949506Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask127\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask144\",\"eTag\":\"0x8DB5B4B7BFADAB3\",\"lastModified\":\"2023-05-23T05:06:36.3769523Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask144\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask142\",\"eTag\":\"0x8DB5B4B7BFD99C2\",\"lastModified\":\"2023-05-23T05:06:36.3949506Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask142\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask135\",\"eTag\":\"0x8DB5B4B7C000ADA\",\"lastModified\":\"2023-05-23T05:06:36.410953Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask135\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask120\",\"eTag\":\"0x8DB5B4B7BFD24A0\",\"lastModified\":\"2023-05-23T05:06:36.391952Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask120\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask124\",\"eTag\":\"0x8DB5B4B7BFC3A2A\",\"lastModified\":\"2023-05-23T05:06:36.3859498Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask124\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask139\",\"eTag\":\"0x8DB5B4B7BFBC506\",\"lastModified\":\"2023-05-23T05:06:36.382951Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask139\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask130\",\"eTag\":\"0x8DB5B4B7C00CE14\",\"lastModified\":\"2023-05-23T05:06:36.4159508Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask130\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask143\",\"eTag\":\"0x8DB5B4B7C01435E\",\"lastModified\":\"2023-05-23T05:06:36.4189534Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask143\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask131\",\"eTag\":\"0x8DB5B4B7C00F522\",\"lastModified\":\"2023-05-23T05:06:36.4169506Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask131\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask140\",\"eTag\":\"0x8DB5B4B7C011C49\",\"lastModified\":\"2023-05-23T05:06:36.4179529Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask140\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask129\",\"eTag\":\"0x8DB5B4B7C007FED\",\"lastModified\":\"2023-05-23T05:06:36.4139501Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask129\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask148\",\"eTag\":\"0x8DB5B4B7C02068F\",\"lastModified\":\"2023-05-23T05:06:36.4239503Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask148\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask138\",\"eTag\":\"0x8DB5B4B7C007FED\",\"lastModified\":\"2023-05-23T05:06:36.4139501Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask138\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask145\",\"eTag\":\"0x8DB5B4B7C022DBB\",\"lastModified\":\"2023-05-23T05:06:36.4249531Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask145\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask149\",\"eTag\":\"0x8DB5B4B7C022DBB\",\"lastModified\":\"2023-05-23T05:06:36.4249531Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask149\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask146\",\"eTag\":\"0x8DB5B4B7C016A60\",\"lastModified\":\"2023-05-23T05:06:36.419952Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask146\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:39 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "e40934b7-d922-4e45-b20e-ace86615ab22", + "client-request-id" : "39b644af-084a-4e6f-969b-aa048338e98b", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "dbeb2c53-f1bf-477f-984d-3cd517392924", + "request-id" : "79164963-ac59-4a6e-a4fe-d2e2adcb5ab1", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask302\",\"eTag\":\"0x8DAC6BEA8CDB8FD\",\"lastModified\":\"2022-11-15T04:05:40.4486909Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask302\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask300\",\"eTag\":\"0x8DAC6BEA8CD6AE3\",\"lastModified\":\"2022-11-15T04:05:40.4466915Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask300\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask306\",\"eTag\":\"0x8DAC6BEA8CE7C6B\",\"lastModified\":\"2022-11-15T04:05:40.4536939Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask306\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask310\",\"eTag\":\"0x8DAC6BEA8CEA3AB\",\"lastModified\":\"2022-11-15T04:05:40.4546987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask310\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask304\",\"eTag\":\"0x8DAC6BEA8CEA3AB\",\"lastModified\":\"2022-11-15T04:05:40.4546987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask304\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask309\",\"eTag\":\"0x8DAC6BEA8CEA3AB\",\"lastModified\":\"2022-11-15T04:05:40.4546987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask309\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask308\",\"eTag\":\"0x8DAC6BEA8CDB8FD\",\"lastModified\":\"2022-11-15T04:05:40.4486909Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask308\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask303\",\"eTag\":\"0x8DAC6BEA8CEA3AB\",\"lastModified\":\"2022-11-15T04:05:40.4546987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask303\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask313\",\"eTag\":\"0x8DAC6BEA8CECA94\",\"lastModified\":\"2022-11-15T04:05:40.4556948Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask313\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask316\",\"eTag\":\"0x8DAC6BEA8CECA94\",\"lastModified\":\"2022-11-15T04:05:40.4556948Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask316\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask311\",\"eTag\":\"0x8DAC6BEA8CECA94\",\"lastModified\":\"2022-11-15T04:05:40.4556948Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask311\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask305\",\"eTag\":\"0x8DAC6BEA8CECA94\",\"lastModified\":\"2022-11-15T04:05:40.4556948Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask305\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask314\",\"eTag\":\"0x8DAC6BEA8CECA94\",\"lastModified\":\"2022-11-15T04:05:40.4556948Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask314\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask307\",\"eTag\":\"0x8DAC6BEA8CEA3AB\",\"lastModified\":\"2022-11-15T04:05:40.4546987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask307\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask312\",\"eTag\":\"0x8DAC6BEA8CEF19B\",\"lastModified\":\"2022-11-15T04:05:40.4566939Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask312\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask301\",\"eTag\":\"0x8DAC6BEA8CEA3AB\",\"lastModified\":\"2022-11-15T04:05:40.4546987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask301\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask317\",\"eTag\":\"0x8DAC6BEA8CEF19B\",\"lastModified\":\"2022-11-15T04:05:40.4566939Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask317\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask319\",\"eTag\":\"0x8DAC6BEA8CEF19B\",\"lastModified\":\"2022-11-15T04:05:40.4566939Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask319\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask322\",\"eTag\":\"0x8DAC6BEA8CEF19B\",\"lastModified\":\"2022-11-15T04:05:40.4566939Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask322\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask318\",\"eTag\":\"0x8DAC6BEA8CF3FC5\",\"lastModified\":\"2022-11-15T04:05:40.4586949Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask318\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask315\",\"eTag\":\"0x8DAC6BEA8CECA94\",\"lastModified\":\"2022-11-15T04:05:40.4556948Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask315\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask321\",\"eTag\":\"0x8DAC6BEA8CF66CD\",\"lastModified\":\"2022-11-15T04:05:40.4596941Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask321\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask320\",\"eTag\":\"0x8DAC6BEA8CF66CD\",\"lastModified\":\"2022-11-15T04:05:40.4596941Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask320\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask323\",\"eTag\":\"0x8DAC6BEA8CF8DDC\",\"lastModified\":\"2022-11-15T04:05:40.460694Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask323\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask324\",\"eTag\":\"0x8DAC6BEA8CFB4EE\",\"lastModified\":\"2022-11-15T04:05:40.4616942Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask324\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask326\",\"eTag\":\"0x8DAC6BEA8D13B78\",\"lastModified\":\"2022-11-15T04:05:40.471692Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask326\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask330\",\"eTag\":\"0x8DAC6BEA8D162A3\",\"lastModified\":\"2022-11-15T04:05:40.4726947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask330\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask347\",\"eTag\":\"0x8DAC6BEA8D1FEE1\",\"lastModified\":\"2022-11-15T04:05:40.4766945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask347\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask349\",\"eTag\":\"0x8DAC6BEA8D6449F\",\"lastModified\":\"2022-11-15T04:05:40.5046943Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask349\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask348\",\"eTag\":\"0x8DAC6BEA8D61D7B\",\"lastModified\":\"2022-11-15T04:05:40.5036923Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask348\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask342\",\"eTag\":\"0x8DAC6BEA8D1D7C6\",\"lastModified\":\"2022-11-15T04:05:40.4756934Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask342\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask333\",\"eTag\":\"0x8DAC6BEA8D189B1\",\"lastModified\":\"2022-11-15T04:05:40.4736945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask333\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask338\",\"eTag\":\"0x8DAC6BEA8D1D7C6\",\"lastModified\":\"2022-11-15T04:05:40.4756934Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask338\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask339\",\"eTag\":\"0x8DAC6BEA8D1B0C3\",\"lastModified\":\"2022-11-15T04:05:40.4746947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask339\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask329\",\"eTag\":\"0x8DAC6BEA8D1D7C6\",\"lastModified\":\"2022-11-15T04:05:40.4756934Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask329\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask332\",\"eTag\":\"0x8DAC6BEA8D189B1\",\"lastModified\":\"2022-11-15T04:05:40.4736945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask332\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask337\",\"eTag\":\"0x8DAC6BEA8D1B0C3\",\"lastModified\":\"2022-11-15T04:05:40.4746947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask337\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask343\",\"eTag\":\"0x8DAC6BEA8D1FEE1\",\"lastModified\":\"2022-11-15T04:05:40.4766945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask343\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask346\",\"eTag\":\"0x8DAC6BEA8D1D7C6\",\"lastModified\":\"2022-11-15T04:05:40.4756934Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask346\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask344\",\"eTag\":\"0x8DAC6BEA8D1D7C6\",\"lastModified\":\"2022-11-15T04:05:40.4756934Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask344\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask341\",\"eTag\":\"0x8DAC6BEA8D1B0C3\",\"lastModified\":\"2022-11-15T04:05:40.4746947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask341\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask325\",\"eTag\":\"0x8DAC6BEA8D162A3\",\"lastModified\":\"2022-11-15T04:05:40.4726947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask325\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask345\",\"eTag\":\"0x8DAC6BEA8D1FEE1\",\"lastModified\":\"2022-11-15T04:05:40.4766945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask345\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask334\",\"eTag\":\"0x8DAC6BEA8D189B1\",\"lastModified\":\"2022-11-15T04:05:40.4736945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask334\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask328\",\"eTag\":\"0x8DAC6BEA8D162A3\",\"lastModified\":\"2022-11-15T04:05:40.4726947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask328\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask335\",\"eTag\":\"0x8DAC6BEA8D1B0C3\",\"lastModified\":\"2022-11-15T04:05:40.4746947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask335\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask327\",\"eTag\":\"0x8DAC6BEA8D162A3\",\"lastModified\":\"2022-11-15T04:05:40.4726947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask327\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask331\",\"eTag\":\"0x8DAC6BEA8D1FEE1\",\"lastModified\":\"2022-11-15T04:05:40.4766945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask331\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask340\",\"eTag\":\"0x8DAC6BEA8D1B0C3\",\"lastModified\":\"2022-11-15T04:05:40.4746947Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask340\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask336\",\"eTag\":\"0x8DAC6BEA8D189B1\",\"lastModified\":\"2022-11-15T04:05:40.4736945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask336\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask351\",\"eTag\":\"0x8DB5B4B7BDA32FF\",\"lastModified\":\"2023-05-23T05:06:36.1629439Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask351\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask350\",\"eTag\":\"0x8DB5B4B7BDA32FF\",\"lastModified\":\"2023-05-23T05:06:36.1629439Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask350\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask353\",\"eTag\":\"0x8DB5B4B7C03DB64\",\"lastModified\":\"2023-05-23T05:06:36.4359524Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask353\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask354\",\"eTag\":\"0x8DB5B4B7C03DB64\",\"lastModified\":\"2023-05-23T05:06:36.4359524Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask354\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask352\",\"eTag\":\"0x8DB5B4B7C03DB64\",\"lastModified\":\"2023-05-23T05:06:36.4359524Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask352\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask372\",\"eTag\":\"0x8DB5B4B7C04508B\",\"lastModified\":\"2023-05-23T05:06:36.4389515Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask372\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask363\",\"eTag\":\"0x8DB5B4B7C042992\",\"lastModified\":\"2023-05-23T05:06:36.4379538Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask363\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask360\",\"eTag\":\"0x8DB5B4B7C040269\",\"lastModified\":\"2023-05-23T05:06:36.4369513Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask360\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask367\",\"eTag\":\"0x8DB5B4B7C04508B\",\"lastModified\":\"2023-05-23T05:06:36.4389515Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask367\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask361\",\"eTag\":\"0x8DB5B4B7C040269\",\"lastModified\":\"2023-05-23T05:06:36.4369513Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask361\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask380\",\"eTag\":\"0x8DB5B4B7C053B0E\",\"lastModified\":\"2023-05-23T05:06:36.444955Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask380\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask375\",\"eTag\":\"0x8DB5B4B7C042992\",\"lastModified\":\"2023-05-23T05:06:36.4379538Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask375\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask355\",\"eTag\":\"0x8DB5B4B7C03DB64\",\"lastModified\":\"2023-05-23T05:06:36.4359524Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask355\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask368\",\"eTag\":\"0x8DB5B4B7C04508B\",\"lastModified\":\"2023-05-23T05:06:36.4389515Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask368\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask356\",\"eTag\":\"0x8DB5B4B7C040269\",\"lastModified\":\"2023-05-23T05:06:36.4369513Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask356\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask370\",\"eTag\":\"0x8DB5B4B7C0513F4\",\"lastModified\":\"2023-05-23T05:06:36.443954Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask370\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask359\",\"eTag\":\"0x8DB5B4B7C042992\",\"lastModified\":\"2023-05-23T05:06:36.4379538Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask359\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask364\",\"eTag\":\"0x8DB5B4B7C04508B\",\"lastModified\":\"2023-05-23T05:06:36.4389515Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask364\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask386\",\"eTag\":\"0x8DB5B4B7C058913\",\"lastModified\":\"2023-05-23T05:06:36.4469523Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask386\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask369\",\"eTag\":\"0x8DB5B4B7C04508B\",\"lastModified\":\"2023-05-23T05:06:36.4389515Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask369\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask362\",\"eTag\":\"0x8DB5B4B7C053B0E\",\"lastModified\":\"2023-05-23T05:06:36.444955Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask362\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask388\",\"eTag\":\"0x8DB5B4B7C058913\",\"lastModified\":\"2023-05-23T05:06:36.4469523Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask388\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask383\",\"eTag\":\"0x8DB5B4B7C056226\",\"lastModified\":\"2023-05-23T05:06:36.4459558Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask383\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask387\",\"eTag\":\"0x8DB5B4B7C056226\",\"lastModified\":\"2023-05-23T05:06:36.4459558Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask387\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask379\",\"eTag\":\"0x8DB5B4B7C056226\",\"lastModified\":\"2023-05-23T05:06:36.4459558Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask379\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask377\",\"eTag\":\"0x8DB5B4B7C056226\",\"lastModified\":\"2023-05-23T05:06:36.4459558Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask377\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask378\",\"eTag\":\"0x8DB5B4B7C056226\",\"lastModified\":\"2023-05-23T05:06:36.4459558Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask378\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask381\",\"eTag\":\"0x8DB5B4B7C058913\",\"lastModified\":\"2023-05-23T05:06:36.4469523Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask381\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask373\",\"eTag\":\"0x8DB5B4B7C0513F4\",\"lastModified\":\"2023-05-23T05:06:36.443954Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask373\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask384\",\"eTag\":\"0x8DB5B4B7C053B0E\",\"lastModified\":\"2023-05-23T05:06:36.444955Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask384\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask365\",\"eTag\":\"0x8DB5B4B7C042992\",\"lastModified\":\"2023-05-23T05:06:36.4379538Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask365\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask385\",\"eTag\":\"0x8DB5B4B7C058913\",\"lastModified\":\"2023-05-23T05:06:36.4469523Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask385\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask394\",\"eTag\":\"0x8DB5B4B7C05B04D\",\"lastModified\":\"2023-05-23T05:06:36.4479565Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask394\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask358\",\"eTag\":\"0x8DB5B4B7C040269\",\"lastModified\":\"2023-05-23T05:06:36.4369513Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask358\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask376\",\"eTag\":\"0x8DB5B4B7C053B0E\",\"lastModified\":\"2023-05-23T05:06:36.444955Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask376\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask393\",\"eTag\":\"0x8DB5B4B7C056226\",\"lastModified\":\"2023-05-23T05:06:36.4459558Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask393\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask366\",\"eTag\":\"0x8DB5B4B7C04508B\",\"lastModified\":\"2023-05-23T05:06:36.4389515Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask366\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask389\",\"eTag\":\"0x8DB5B4B7C05D736\",\"lastModified\":\"2023-05-23T05:06:36.4489526Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask389\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask390\",\"eTag\":\"0x8DB5B4B7C05D736\",\"lastModified\":\"2023-05-23T05:06:36.4489526Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask390\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask382\",\"eTag\":\"0x8DB5B4B7C05D736\",\"lastModified\":\"2023-05-23T05:06:36.4489526Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask382\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask374\",\"eTag\":\"0x8DB5B4B7C05B04D\",\"lastModified\":\"2023-05-23T05:06:36.4479565Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask374\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask392\",\"eTag\":\"0x8DB5B4B7C05D736\",\"lastModified\":\"2023-05-23T05:06:36.4489526Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask392\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask396\",\"eTag\":\"0x8DB5B4B7C05B04D\",\"lastModified\":\"2023-05-23T05:06:36.4479565Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask396\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask357\",\"eTag\":\"0x8DB5B4B7C042992\",\"lastModified\":\"2023-05-23T05:06:36.4379538Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask357\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask371\",\"eTag\":\"0x8DB5B4B7C1C6C8D\",\"lastModified\":\"2023-05-23T05:06:36.5969549Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask371\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask391\",\"eTag\":\"0x8DB5B4B7C1F79DC\",\"lastModified\":\"2023-05-23T05:06:36.6169564Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask391\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask397\",\"eTag\":\"0x8DB5B4B7C1F79DC\",\"lastModified\":\"2023-05-23T05:06:36.6169564Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask397\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask395\",\"eTag\":\"0x8DB5B4B7C1C4597\",\"lastModified\":\"2023-05-23T05:06:36.5959575Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask395\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask399\",\"eTag\":\"0x8DB5B4B7C1F79DC\",\"lastModified\":\"2023-05-23T05:06:36.6169564Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask399\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask398\",\"eTag\":\"0x8DB5B4B7C21C3C7\",\"lastModified\":\"2023-05-23T05:06:36.6319559Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask398\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:39 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "f64ee29a-f3b2-435a-af93-93dc3b6fb9d9", + "client-request-id" : "b93f5936-a6fd-4072-a8c8-d01ea479109f", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "bd82cced-0694-4458-a467-3991a32b1e7f", + "request-id" : "7f2907d3-3f96-402b-b7eb-c8693392eb04", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask252\",\"eTag\":\"0x8DAC6BEA8CC26BC\",\"lastModified\":\"2022-11-15T04:05:40.4383932Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask252\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask250\",\"eTag\":\"0x8DAC6BEA8CC26BC\",\"lastModified\":\"2022-11-15T04:05:40.4383932Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask250\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask253\",\"eTag\":\"0x8DAC6BEA8CC74EA\",\"lastModified\":\"2022-11-15T04:05:40.4403946Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask253\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask251\",\"eTag\":\"0x8DAC6BEA8CD3865\",\"lastModified\":\"2022-11-15T04:05:40.4453989Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask251\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask266\",\"eTag\":\"0x8DAC6BEA8CDFB8F\",\"lastModified\":\"2022-11-15T04:05:40.4503951Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask266\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask256\",\"eTag\":\"0x8DAC6BEA8CD5F57\",\"lastModified\":\"2022-11-15T04:05:40.4463959Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask256\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask265\",\"eTag\":\"0x8DAC6BEA8CE70C1\",\"lastModified\":\"2022-11-15T04:05:40.4533953Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask265\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask257\",\"eTag\":\"0x8DAC6BEA8CD8670\",\"lastModified\":\"2022-11-15T04:05:40.4473968Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask257\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask254\",\"eTag\":\"0x8DAC6BEA8CD8670\",\"lastModified\":\"2022-11-15T04:05:40.4473968Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask254\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask255\",\"eTag\":\"0x8DAC6BEA8CE229C\",\"lastModified\":\"2022-11-15T04:05:40.4513948Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask255\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask258\",\"eTag\":\"0x8DAC6BEA8CDD466\",\"lastModified\":\"2022-11-15T04:05:40.4493926Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask258\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask269\",\"eTag\":\"0x8DAC6BEA8CEBEED\",\"lastModified\":\"2022-11-15T04:05:40.4553965Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask269\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask278\",\"eTag\":\"0x8DAC6BEA8D108C0\",\"lastModified\":\"2022-11-15T04:05:40.4703936Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask278\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask282\",\"eTag\":\"0x8DAC6BEA8D1A513\",\"lastModified\":\"2022-11-15T04:05:40.4743955Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask282\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask296\",\"eTag\":\"0x8DAC6BEA8D21A52\",\"lastModified\":\"2022-11-15T04:05:40.477397Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask296\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask281\",\"eTag\":\"0x8DAC6BEA8D1A513\",\"lastModified\":\"2022-11-15T04:05:40.4743955Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask281\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask288\",\"eTag\":\"0x8DAC6BEA8D1F33F\",\"lastModified\":\"2022-11-15T04:05:40.4763967Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask288\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask284\",\"eTag\":\"0x8DAC6BEA8D1F33F\",\"lastModified\":\"2022-11-15T04:05:40.4763967Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask284\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask290\",\"eTag\":\"0x8DAC6BEA8D1F33F\",\"lastModified\":\"2022-11-15T04:05:40.4763967Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask290\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask293\",\"eTag\":\"0x8DAC6BEA8D21A52\",\"lastModified\":\"2022-11-15T04:05:40.477397Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask293\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask299\",\"eTag\":\"0x8DAC6BEA8D3C7DA\",\"lastModified\":\"2022-11-15T04:05:40.488393Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask299\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask259\",\"eTag\":\"0x8DAC6BEA8D4D979\",\"lastModified\":\"2022-11-15T04:05:40.4953977Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask259\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask264\",\"eTag\":\"0x8DAC6BEA8D59CC0\",\"lastModified\":\"2022-11-15T04:05:40.5003968Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask264\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask261\",\"eTag\":\"0x8DAC6BEA8D638FD\",\"lastModified\":\"2022-11-15T04:05:40.5043965Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask261\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask263\",\"eTag\":\"0x8DAC6BEA8D6D545\",\"lastModified\":\"2022-11-15T04:05:40.5083973Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask263\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask271\",\"eTag\":\"0x8DAC6BEA8D6FC53\",\"lastModified\":\"2022-11-15T04:05:40.5093971Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask271\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask272\",\"eTag\":\"0x8DAC6BEA8D6D545\",\"lastModified\":\"2022-11-15T04:05:40.5083973Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask272\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask267\",\"eTag\":\"0x8DAC6BEA8D6AE19\",\"lastModified\":\"2022-11-15T04:05:40.5073945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask267\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask260\",\"eTag\":\"0x8DAC6BEA8D6AE19\",\"lastModified\":\"2022-11-15T04:05:40.5073945Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask260\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask268\",\"eTag\":\"0x8DAC6BEA8D85BC8\",\"lastModified\":\"2022-11-15T04:05:40.5183944Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask268\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask276\",\"eTag\":\"0x8DAC6BEA8D882FA\",\"lastModified\":\"2022-11-15T04:05:40.5193978Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask276\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask287\",\"eTag\":\"0x8DAC6BEA8D8AA13\",\"lastModified\":\"2022-11-15T04:05:40.5203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask287\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask285\",\"eTag\":\"0x8DAC6BEA8D8AA13\",\"lastModified\":\"2022-11-15T04:05:40.5203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask285\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask274\",\"eTag\":\"0x8DAC6BEA8D8AA13\",\"lastModified\":\"2022-11-15T04:05:40.5203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask274\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask270\",\"eTag\":\"0x8DAC6BEA8D882FA\",\"lastModified\":\"2022-11-15T04:05:40.5193978Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask270\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask273\",\"eTag\":\"0x8DAC6BEA8D8AA13\",\"lastModified\":\"2022-11-15T04:05:40.5203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask273\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask279\",\"eTag\":\"0x8DAC6BEA8D8AA13\",\"lastModified\":\"2022-11-15T04:05:40.5203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask279\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask291\",\"eTag\":\"0x8DAC6BEA8D8D118\",\"lastModified\":\"2022-11-15T04:05:40.5213976Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask291\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask289\",\"eTag\":\"0x8DAC6BEA8D8AA13\",\"lastModified\":\"2022-11-15T04:05:40.5203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask289\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask298\",\"eTag\":\"0x8DAC6BEA8D8D118\",\"lastModified\":\"2022-11-15T04:05:40.5213976Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask298\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask295\",\"eTag\":\"0x8DAC6BEA8D8D118\",\"lastModified\":\"2022-11-15T04:05:40.5213976Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask295\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask297\",\"eTag\":\"0x8DAC6BEA8D8F825\",\"lastModified\":\"2022-11-15T04:05:40.5223973Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask297\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask280\",\"eTag\":\"0x8DAC6BEA8D8AA13\",\"lastModified\":\"2022-11-15T04:05:40.5203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask280\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask286\",\"eTag\":\"0x8DAC6BEA8D8F825\",\"lastModified\":\"2022-11-15T04:05:40.5223973Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask286\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask275\",\"eTag\":\"0x8DAC6BEA8D85BC8\",\"lastModified\":\"2022-11-15T04:05:40.5183944Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask275\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask283\",\"eTag\":\"0x8DAC6BEA8D8AA13\",\"lastModified\":\"2022-11-15T04:05:40.5203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask283\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask277\",\"eTag\":\"0x8DAC6BEA8D8D118\",\"lastModified\":\"2022-11-15T04:05:40.5213976Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask277\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask262\",\"eTag\":\"0x8DAC6BEA8D9E285\",\"lastModified\":\"2022-11-15T04:05:40.5283973Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask262\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask292\",\"eTag\":\"0x8DAC6BEA8DB4226\",\"lastModified\":\"2022-11-15T04:05:40.537399Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask292\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask294\",\"eTag\":\"0x8DAC6BEA8D8D118\",\"lastModified\":\"2022-11-15T04:05:40.5213976Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask294\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask451\",\"eTag\":\"0x8DB5B4B7C474D96\",\"lastModified\":\"2023-05-23T05:06:36.877967Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask451\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask453\",\"eTag\":\"0x8DB5B4B7C474D96\",\"lastModified\":\"2023-05-23T05:06:36.877967Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask453\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask456\",\"eTag\":\"0x8DB5B4B7C479BA6\",\"lastModified\":\"2023-05-23T05:06:36.8799654Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask456\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask457\",\"eTag\":\"0x8DB5B4B7C47C2BA\",\"lastModified\":\"2023-05-23T05:06:36.8809658Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask457\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask450\",\"eTag\":\"0x8DB5B4B7C4774B1\",\"lastModified\":\"2023-05-23T05:06:36.8789681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask450\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask454\",\"eTag\":\"0x8DB5B4B7C479BA6\",\"lastModified\":\"2023-05-23T05:06:36.8799654Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask454\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask452\",\"eTag\":\"0x8DB5B4B7C479BA6\",\"lastModified\":\"2023-05-23T05:06:36.8799654Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask452\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask460\",\"eTag\":\"0x8DB5B4B7C47C2BA\",\"lastModified\":\"2023-05-23T05:06:36.8809658Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask460\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask464\",\"eTag\":\"0x8DB5B4B7C47E9C5\",\"lastModified\":\"2023-05-23T05:06:36.8819653Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask464\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask461\",\"eTag\":\"0x8DB5B4B7C47E9C5\",\"lastModified\":\"2023-05-23T05:06:36.8819653Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask461\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask462\",\"eTag\":\"0x8DB5B4B7C47C2BA\",\"lastModified\":\"2023-05-23T05:06:36.8809658Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask462\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask469\",\"eTag\":\"0x8DB5B4B7C49BE98\",\"lastModified\":\"2023-05-23T05:06:36.8939672Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask469\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask465\",\"eTag\":\"0x8DB5B4B7C4A33C3\",\"lastModified\":\"2023-05-23T05:06:36.8969667Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask465\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask467\",\"eTag\":\"0x8DB5B4B7C4A0CB4\",\"lastModified\":\"2023-05-23T05:06:36.8959668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask467\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask471\",\"eTag\":\"0x8DB5B4B7C4E529A\",\"lastModified\":\"2023-05-23T05:06:36.9239706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask471\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask476\",\"eTag\":\"0x8DB5B4B7C4A81D3\",\"lastModified\":\"2023-05-23T05:06:36.8989651Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask476\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask455\",\"eTag\":\"0x8DB5B4B7C4A5AE7\",\"lastModified\":\"2023-05-23T05:06:36.8979687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask455\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask473\",\"eTag\":\"0x8DB5B4B7C4AA8F7\",\"lastModified\":\"2023-05-23T05:06:36.8999671Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask473\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask472\",\"eTag\":\"0x8DB5B4B7C4A81D3\",\"lastModified\":\"2023-05-23T05:06:36.8989651Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask472\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask466\",\"eTag\":\"0x8DB5B4B7C49BE98\",\"lastModified\":\"2023-05-23T05:06:36.8939672Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask466\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask470\",\"eTag\":\"0x8DB5B4B7C4F63EF\",\"lastModified\":\"2023-05-23T05:06:36.9309679Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask470\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask474\",\"eTag\":\"0x8DB5B4B7C4F3CFB\",\"lastModified\":\"2023-05-23T05:06:36.9299707Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask474\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask489\",\"eTag\":\"0x8DB5B4B7C5138B2\",\"lastModified\":\"2023-05-23T05:06:36.9429682Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask489\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask475\",\"eTag\":\"0x8DB5B4B7C509C51\",\"lastModified\":\"2023-05-23T05:06:36.9389649Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask475\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask485\",\"eTag\":\"0x8DB5B4B7C4F63EF\",\"lastModified\":\"2023-05-23T05:06:36.9309679Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask485\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask484\",\"eTag\":\"0x8DB5B4B7C5111A9\",\"lastModified\":\"2023-05-23T05:06:36.9419689Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask484\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask487\",\"eTag\":\"0x8DB5B4B7C52983E\",\"lastModified\":\"2023-05-23T05:06:36.9519678Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask487\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask488\",\"eTag\":\"0x8DB5B4B7C52E662\",\"lastModified\":\"2023-05-23T05:06:36.9539682Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask488\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask490\",\"eTag\":\"0x8DB5B4B7C52BF57\",\"lastModified\":\"2023-05-23T05:06:36.9529687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask490\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask463\",\"eTag\":\"0x8DB5B4B7C52BF57\",\"lastModified\":\"2023-05-23T05:06:36.9529687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask463\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask494\",\"eTag\":\"0x8DB5B4B7C530D7E\",\"lastModified\":\"2023-05-23T05:06:36.9549694Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask494\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask481\",\"eTag\":\"0x8DB5B4B7C52BF57\",\"lastModified\":\"2023-05-23T05:06:36.9529687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask481\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask479\",\"eTag\":\"0x8DB5B4B7C527114\",\"lastModified\":\"2023-05-23T05:06:36.9509652Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask479\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask477\",\"eTag\":\"0x8DB5B4B7C55A58F\",\"lastModified\":\"2023-05-23T05:06:36.9719695Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask477\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask492\",\"eTag\":\"0x8DB5B4B7C561AC3\",\"lastModified\":\"2023-05-23T05:06:36.9749699Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask492\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask478\",\"eTag\":\"0x8DB5B4B7C52BF57\",\"lastModified\":\"2023-05-23T05:06:36.9529687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask478\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask497\",\"eTag\":\"0x8DB5B4B7C55F3B6\",\"lastModified\":\"2023-05-23T05:06:36.9739702Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask497\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask459\",\"eTag\":\"0x8DB5B4B7C52E662\",\"lastModified\":\"2023-05-23T05:06:36.9539682Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask459\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask491\",\"eTag\":\"0x8DB5B4B7C557E78\",\"lastModified\":\"2023-05-23T05:06:36.9709688Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask491\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask493\",\"eTag\":\"0x8DB5B4B7C515FAD\",\"lastModified\":\"2023-05-23T05:06:36.9439661Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask493\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask486\",\"eTag\":\"0x8DB5B4B7C55CCAA\",\"lastModified\":\"2023-05-23T05:06:36.9729706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask486\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask468\",\"eTag\":\"0x8DB5B4B7C55F3B6\",\"lastModified\":\"2023-05-23T05:06:36.9739702Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask468\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask480\",\"eTag\":\"0x8DB5B4B7C55A58F\",\"lastModified\":\"2023-05-23T05:06:36.9719695Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask480\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask499\",\"eTag\":\"0x8DB5B4B7C577A49\",\"lastModified\":\"2023-05-23T05:06:36.9839689Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask499\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask458\",\"eTag\":\"0x8DB5B4B7C535B9C\",\"lastModified\":\"2023-05-23T05:06:36.9569692Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask458\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask496\",\"eTag\":\"0x8DB5B4B7C561AC3\",\"lastModified\":\"2023-05-23T05:06:36.9749699Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask496\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask498\",\"eTag\":\"0x8DB5B4B7C561AC3\",\"lastModified\":\"2023-05-23T05:06:36.9749699Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask498\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask495\",\"eTag\":\"0x8DB5B4B7C561AC3\",\"lastModified\":\"2023-05-23T05:06:36.9749699Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask495\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask483\",\"eTag\":\"0x8DB5B4B7C55A58F\",\"lastModified\":\"2023-05-23T05:06:36.9719695Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask483\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask482\",\"eTag\":\"0x8DB5B4B7C52983E\",\"lastModified\":\"2023-05-23T05:06:36.9519678Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask482\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "93dd7308-6b98-408b-91d8-f60ecc8e461b", + "client-request-id" : "3c87658d-66b4-4f59-8b41-6e6a2587c674", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "70fc8ab3-b949-4e9e-9992-f310fd70147f", + "request-id" : "c7e3c4a1-0102-4121-8eea-61d54126399f", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask350\",\"eTag\":\"0x8DAC6BEA8CFA768\",\"lastModified\":\"2022-11-15T04:05:40.461348Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask350\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask353\",\"eTag\":\"0x8DAC6BEA8CFF5A5\",\"lastModified\":\"2022-11-15T04:05:40.4633509Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask353\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask352\",\"eTag\":\"0x8DAC6BEA8D01CA2\",\"lastModified\":\"2022-11-15T04:05:40.464349Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask352\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask355\",\"eTag\":\"0x8DAC6BEA8CFF5A5\",\"lastModified\":\"2022-11-15T04:05:40.4633509Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask355\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask351\",\"eTag\":\"0x8DAC6BEA8D01CA2\",\"lastModified\":\"2022-11-15T04:05:40.464349Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask351\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask354\",\"eTag\":\"0x8DAC6BEA8D01CA2\",\"lastModified\":\"2022-11-15T04:05:40.464349Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask354\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask360\",\"eTag\":\"0x8DAC6BEA8D091D9\",\"lastModified\":\"2022-11-15T04:05:40.4673497Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask360\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask357\",\"eTag\":\"0x8DAC6BEA8D091D9\",\"lastModified\":\"2022-11-15T04:05:40.4673497Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask357\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask358\",\"eTag\":\"0x8DAC6BEA8D091D9\",\"lastModified\":\"2022-11-15T04:05:40.4673497Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask358\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask359\",\"eTag\":\"0x8DAC6BEA8D06AB9\",\"lastModified\":\"2022-11-15T04:05:40.4663481Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask359\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask362\",\"eTag\":\"0x8DAC6BEA8D091D9\",\"lastModified\":\"2022-11-15T04:05:40.4673497Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask362\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask356\",\"eTag\":\"0x8DAC6BEA8D043B5\",\"lastModified\":\"2022-11-15T04:05:40.4653493Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask356\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask363\",\"eTag\":\"0x8DAC6BEA8D0B8E8\",\"lastModified\":\"2022-11-15T04:05:40.4683496Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask363\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask370\",\"eTag\":\"0x8DAC6BEA8D0B8E8\",\"lastModified\":\"2022-11-15T04:05:40.4683496Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask370\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask366\",\"eTag\":\"0x8DAC6BEA8D17C64\",\"lastModified\":\"2022-11-15T04:05:40.473354Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask366\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask365\",\"eTag\":\"0x8DAC6BEA8D0B8E8\",\"lastModified\":\"2022-11-15T04:05:40.4683496Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask365\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask371\",\"eTag\":\"0x8DAC6BEA8D1A359\",\"lastModified\":\"2022-11-15T04:05:40.4743513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask371\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask376\",\"eTag\":\"0x8DAC6BEA8D1CA6A\",\"lastModified\":\"2022-11-15T04:05:40.4753514Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask376\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask373\",\"eTag\":\"0x8DAC6BEA8D1A359\",\"lastModified\":\"2022-11-15T04:05:40.4743513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask373\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask374\",\"eTag\":\"0x8DAC6BEA8D1A359\",\"lastModified\":\"2022-11-15T04:05:40.4743513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask374\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask377\",\"eTag\":\"0x8DAC6BEA8D1CA6A\",\"lastModified\":\"2022-11-15T04:05:40.4753514Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask377\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask364\",\"eTag\":\"0x8DAC6BEA8D1A359\",\"lastModified\":\"2022-11-15T04:05:40.4743513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask364\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask375\",\"eTag\":\"0x8DAC6BEA8D1CA6A\",\"lastModified\":\"2022-11-15T04:05:40.4753514Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask375\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask369\",\"eTag\":\"0x8DAC6BEA8D1A359\",\"lastModified\":\"2022-11-15T04:05:40.4743513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask369\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask385\",\"eTag\":\"0x8DAC6BEA8D1F15C\",\"lastModified\":\"2022-11-15T04:05:40.4763484Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask385\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask380\",\"eTag\":\"0x8DAC6BEA8D1F15C\",\"lastModified\":\"2022-11-15T04:05:40.4763484Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask380\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask379\",\"eTag\":\"0x8DAC6BEA8D21875\",\"lastModified\":\"2022-11-15T04:05:40.4773493Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask379\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask384\",\"eTag\":\"0x8DAC6BEA8D1F15C\",\"lastModified\":\"2022-11-15T04:05:40.4763484Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask384\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask382\",\"eTag\":\"0x8DAC6BEA8D1F15C\",\"lastModified\":\"2022-11-15T04:05:40.4763484Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask382\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask372\",\"eTag\":\"0x8DAC6BEA8D1CA6A\",\"lastModified\":\"2022-11-15T04:05:40.4753514Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask372\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask368\",\"eTag\":\"0x8DAC6BEA8D1A359\",\"lastModified\":\"2022-11-15T04:05:40.4743513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask368\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask391\",\"eTag\":\"0x8DAC6BEA8D2B4C7\",\"lastModified\":\"2022-11-15T04:05:40.4813511Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask391\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask392\",\"eTag\":\"0x8DAC6BEA8D329FC\",\"lastModified\":\"2022-11-15T04:05:40.4843516Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask392\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask383\",\"eTag\":\"0x8DAC6BEA8D1F15C\",\"lastModified\":\"2022-11-15T04:05:40.4763484Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask383\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask387\",\"eTag\":\"0x8DAC6BEA8D2B4C7\",\"lastModified\":\"2022-11-15T04:05:40.4813511Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask387\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask393\",\"eTag\":\"0x8DAC6BEA8D4B08D\",\"lastModified\":\"2022-11-15T04:05:40.4943501Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask393\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask394\",\"eTag\":\"0x8DAC6BEA8D4B08D\",\"lastModified\":\"2022-11-15T04:05:40.4943501Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask394\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask397\",\"eTag\":\"0x8DAC6BEA8D4B08D\",\"lastModified\":\"2022-11-15T04:05:40.4943501Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask397\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask390\",\"eTag\":\"0x8DAC6BEA8D4B08D\",\"lastModified\":\"2022-11-15T04:05:40.4943501Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask390\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask404\",\"eTag\":\"0x8DAC6BEA8D4FEC3\",\"lastModified\":\"2022-11-15T04:05:40.4963523Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask404\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask400\",\"eTag\":\"0x8DAC6BEA8D4D7A7\",\"lastModified\":\"2022-11-15T04:05:40.4953511Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask400\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask402\",\"eTag\":\"0x8DAC6BEA8D4FEC3\",\"lastModified\":\"2022-11-15T04:05:40.4963523Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask402\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask405\",\"eTag\":\"0x8DAC6BEA8D4FEC3\",\"lastModified\":\"2022-11-15T04:05:40.4963523Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask405\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask361\",\"eTag\":\"0x8DAC6BEA8D23F97\",\"lastModified\":\"2022-11-15T04:05:40.4783511Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask361\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask381\",\"eTag\":\"0x8DAC6BEA8D21875\",\"lastModified\":\"2022-11-15T04:05:40.4773493Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask381\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask389\",\"eTag\":\"0x8DAC6BEA8D2DBD1\",\"lastModified\":\"2022-11-15T04:05:40.4823505Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask389\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask378\",\"eTag\":\"0x8DAC6BEA8D21875\",\"lastModified\":\"2022-11-15T04:05:40.4773493Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask378\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask367\",\"eTag\":\"0x8DAC6BEA8D17C64\",\"lastModified\":\"2022-11-15T04:05:40.473354Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask367\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask388\",\"eTag\":\"0x8DAC6BEA8D2B4C7\",\"lastModified\":\"2022-11-15T04:05:40.4813511Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask388\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask396\",\"eTag\":\"0x8DAC6BEA8D7BDC4\",\"lastModified\":\"2022-11-15T04:05:40.5143492Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask396\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask2\",\"eTag\":\"0x8DB5B4B7C4774B1\",\"lastModified\":\"2023-05-23T05:06:36.8789681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask2\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask1\",\"eTag\":\"0x8DB5B4B7C47E9C5\",\"lastModified\":\"2023-05-23T05:06:36.8819653Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask1\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask0\",\"eTag\":\"0x8DB5B4B7C47C2BA\",\"lastModified\":\"2023-05-23T05:06:36.8809658Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask0\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask4\",\"eTag\":\"0x8DB5B4B7C47C2BA\",\"lastModified\":\"2023-05-23T05:06:36.8809658Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask4\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask8\",\"eTag\":\"0x8DB5B4B7C4810D7\",\"lastModified\":\"2023-05-23T05:06:36.8829655Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask8\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask15\",\"eTag\":\"0x8DB5B4B7C483806\",\"lastModified\":\"2023-05-23T05:06:36.8839686Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask15\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask11\",\"eTag\":\"0x8DB5B4B7C47E9C5\",\"lastModified\":\"2023-05-23T05:06:36.8819653Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask11\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask6\",\"eTag\":\"0x8DB5B4B7C4810D7\",\"lastModified\":\"2023-05-23T05:06:36.8829655Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask6\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask28\",\"eTag\":\"0x8DB5B4B7C4A0CB4\",\"lastModified\":\"2023-05-23T05:06:36.8959668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask28\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask7\",\"eTag\":\"0x8DB5B4B7C4A33C3\",\"lastModified\":\"2023-05-23T05:06:36.8969667Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask7\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask13\",\"eTag\":\"0x8DB5B4B7C4A0CB4\",\"lastModified\":\"2023-05-23T05:06:36.8959668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask13\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask10\",\"eTag\":\"0x8DB5B4B7C4A33C3\",\"lastModified\":\"2023-05-23T05:06:36.8969667Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask10\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask26\",\"eTag\":\"0x8DB5B4B7C4A0CB4\",\"lastModified\":\"2023-05-23T05:06:36.8959668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask26\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask12\",\"eTag\":\"0x8DB5B4B7C49BE98\",\"lastModified\":\"2023-05-23T05:06:36.8939672Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask12\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask16\",\"eTag\":\"0x8DB5B4B7C4A33C3\",\"lastModified\":\"2023-05-23T05:06:36.8969667Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask16\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask17\",\"eTag\":\"0x8DB5B4B7C4A81D3\",\"lastModified\":\"2023-05-23T05:06:36.8989651Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask17\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask9\",\"eTag\":\"0x8DB5B4B7C4E2B64\",\"lastModified\":\"2023-05-23T05:06:36.9229668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask9\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask24\",\"eTag\":\"0x8DB5B4B7C4AA8F7\",\"lastModified\":\"2023-05-23T05:06:36.8999671Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask24\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask36\",\"eTag\":\"0x8DB5B4B7C4E7991\",\"lastModified\":\"2023-05-23T05:06:36.9249681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask36\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask38\",\"eTag\":\"0x8DB5B4B7C4AA8F7\",\"lastModified\":\"2023-05-23T05:06:36.8999671Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask38\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask25\",\"eTag\":\"0x8DB5B4B7C4E2B64\",\"lastModified\":\"2023-05-23T05:06:36.9229668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask25\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask31\",\"eTag\":\"0x8DB5B4B7C4E7991\",\"lastModified\":\"2023-05-23T05:06:36.9249681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask31\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask21\",\"eTag\":\"0x8DB5B4B7C4E529A\",\"lastModified\":\"2023-05-23T05:06:36.9239706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask21\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask32\",\"eTag\":\"0x8DB5B4B7C4EC7ED\",\"lastModified\":\"2023-05-23T05:06:36.9269741Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask32\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask19\",\"eTag\":\"0x8DB5B4B7C4F63EF\",\"lastModified\":\"2023-05-23T05:06:36.9309679Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask19\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask46\",\"eTag\":\"0x8DB5B4B7C50C381\",\"lastModified\":\"2023-05-23T05:06:36.9399681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask46\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask27\",\"eTag\":\"0x8DB5B4B7C4F8B0D\",\"lastModified\":\"2023-05-23T05:06:36.9319693Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask27\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask23\",\"eTag\":\"0x8DB5B4B7C52E662\",\"lastModified\":\"2023-05-23T05:06:36.9539682Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask23\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask40\",\"eTag\":\"0x8DB5B4B7C5111A9\",\"lastModified\":\"2023-05-23T05:06:36.9419689Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask40\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask42\",\"eTag\":\"0x8DB5B4B7C5111A9\",\"lastModified\":\"2023-05-23T05:06:36.9419689Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask42\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask45\",\"eTag\":\"0x8DB5B4B7C509C51\",\"lastModified\":\"2023-05-23T05:06:36.9389649Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask45\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask5\",\"eTag\":\"0x8DB5B4B7C527114\",\"lastModified\":\"2023-05-23T05:06:36.9509652Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask5\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask22\",\"eTag\":\"0x8DB5B4B7C527114\",\"lastModified\":\"2023-05-23T05:06:36.9509652Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask22\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask35\",\"eTag\":\"0x8DB5B4B7C52BF57\",\"lastModified\":\"2023-05-23T05:06:36.9529687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask35\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask3\",\"eTag\":\"0x8DB5B4B7C557E78\",\"lastModified\":\"2023-05-23T05:06:36.9709688Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask3\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask41\",\"eTag\":\"0x8DB5B4B7C55CCAA\",\"lastModified\":\"2023-05-23T05:06:36.9729706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask41\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask37\",\"eTag\":\"0x8DB5B4B7C515FAD\",\"lastModified\":\"2023-05-23T05:06:36.9439661Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask37\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask20\",\"eTag\":\"0x8DB5B4B7C52983E\",\"lastModified\":\"2023-05-23T05:06:36.9519678Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask20\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask14\",\"eTag\":\"0x8DB5B4B7C5111A9\",\"lastModified\":\"2023-05-23T05:06:36.9419689Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask14\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask44\",\"eTag\":\"0x8DB5B4B7C55CCAA\",\"lastModified\":\"2023-05-23T05:06:36.9729706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask44\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask29\",\"eTag\":\"0x8DB5B4B7C535B9C\",\"lastModified\":\"2023-05-23T05:06:36.9569692Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask29\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask43\",\"eTag\":\"0x8DB5B4B7C557E78\",\"lastModified\":\"2023-05-23T05:06:36.9709688Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask43\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask48\",\"eTag\":\"0x8DB5B4B7C55A58F\",\"lastModified\":\"2023-05-23T05:06:36.9719695Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask48\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask18\",\"eTag\":\"0x8DB5B4B7C52BF57\",\"lastModified\":\"2023-05-23T05:06:36.9529687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask18\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask47\",\"eTag\":\"0x8DB5B4B7C55F3B6\",\"lastModified\":\"2023-05-23T05:06:36.9739702Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask47\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask30\",\"eTag\":\"0x8DB5B4B7C515FAD\",\"lastModified\":\"2023-05-23T05:06:36.9439661Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask30\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask49\",\"eTag\":\"0x8DB5B4B7C572C25\",\"lastModified\":\"2023-05-23T05:06:36.9819685Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask49\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask33\",\"eTag\":\"0x8DB5B4B7C55CCAA\",\"lastModified\":\"2023-05-23T05:06:36.9729706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask33\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask34\",\"eTag\":\"0x8DB5B4B7C52E662\",\"lastModified\":\"2023-05-23T05:06:36.9539682Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask34\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask39\",\"eTag\":\"0x8DB5B4B7C5186BC\",\"lastModified\":\"2023-05-23T05:06:36.944966Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask39\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "510632bf-6c47-4a74-b2e5-bb241557a6e3", + "client-request-id" : "525bc8c4-d577-490a-a62f-1a617b5d6bca", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "cf94cd99-c23b-4bb0-9a42-a7dd53e02cd1", + "request-id" : "eeec45c0-d952-481d-aac5-a1dfe6a11b1d", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask556\",\"eTag\":\"0x8DAC6BEA8E14560\",\"lastModified\":\"2022-11-15T04:05:40.5768032Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask556\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask550\",\"eTag\":\"0x8DAC6BEA8E11E80\",\"lastModified\":\"2022-11-15T04:05:40.575808Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask550\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask553\",\"eTag\":\"0x8DAC6BEA8E14560\",\"lastModified\":\"2022-11-15T04:05:40.5768032Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask553\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask551\",\"eTag\":\"0x8DAC6BEA8E11E80\",\"lastModified\":\"2022-11-15T04:05:40.575808Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask551\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask552\",\"eTag\":\"0x8DAC6BEA8E16C72\",\"lastModified\":\"2022-11-15T04:05:40.5778034Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask552\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask555\",\"eTag\":\"0x8DAC6BEA8E14560\",\"lastModified\":\"2022-11-15T04:05:40.5768032Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask555\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask557\",\"eTag\":\"0x8DAC6BEA8E16C72\",\"lastModified\":\"2022-11-15T04:05:40.5778034Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask557\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask554\",\"eTag\":\"0x8DAC6BEA8E16C72\",\"lastModified\":\"2022-11-15T04:05:40.5778034Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask554\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask564\",\"eTag\":\"0x8DAC6BEA8E31A25\",\"lastModified\":\"2022-11-15T04:05:40.5888037Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask564\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask559\",\"eTag\":\"0x8DAC6BEA8E31A25\",\"lastModified\":\"2022-11-15T04:05:40.5888037Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask559\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask569\",\"eTag\":\"0x8DAC6BEA8E34133\",\"lastModified\":\"2022-11-15T04:05:40.5898035Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask569\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask562\",\"eTag\":\"0x8DAC6BEA8E2F315\",\"lastModified\":\"2022-11-15T04:05:40.5878037Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask562\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask566\",\"eTag\":\"0x8DAC6BEA8E31A25\",\"lastModified\":\"2022-11-15T04:05:40.5888037Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask566\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask568\",\"eTag\":\"0x8DAC6BEA8E34133\",\"lastModified\":\"2022-11-15T04:05:40.5898035Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask568\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask561\",\"eTag\":\"0x8DAC6BEA8E31A25\",\"lastModified\":\"2022-11-15T04:05:40.5888037Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask561\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask565\",\"eTag\":\"0x8DAC6BEA8E36842\",\"lastModified\":\"2022-11-15T04:05:40.5908034Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask565\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask571\",\"eTag\":\"0x8DAC6BEA8E36842\",\"lastModified\":\"2022-11-15T04:05:40.5908034Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask571\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask572\",\"eTag\":\"0x8DAC6BEA8E36842\",\"lastModified\":\"2022-11-15T04:05:40.5908034Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask572\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask570\",\"eTag\":\"0x8DAC6BEA8E36842\",\"lastModified\":\"2022-11-15T04:05:40.5908034Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask570\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask563\",\"eTag\":\"0x8DAC6BEA8E34133\",\"lastModified\":\"2022-11-15T04:05:40.5898035Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask563\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask558\",\"eTag\":\"0x8DAC6BEA8E2F315\",\"lastModified\":\"2022-11-15T04:05:40.5878037Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask558\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask560\",\"eTag\":\"0x8DAC6BEA8E2F315\",\"lastModified\":\"2022-11-15T04:05:40.5878037Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask560\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask573\",\"eTag\":\"0x8DAC6BEA8E3B663\",\"lastModified\":\"2022-11-15T04:05:40.5928035Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask573\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask578\",\"eTag\":\"0x8DAC6BEA8E452A1\",\"lastModified\":\"2022-11-15T04:05:40.5968033Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask578\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask574\",\"eTag\":\"0x8DAC6BEA8E3DD75\",\"lastModified\":\"2022-11-15T04:05:40.5938037Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask574\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask567\",\"eTag\":\"0x8DAC6BEA8E36842\",\"lastModified\":\"2022-11-15T04:05:40.5908034Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask567\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask575\",\"eTag\":\"0x8DAC6BEA8E64E7C\",\"lastModified\":\"2022-11-15T04:05:40.6098044Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask575\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask576\",\"eTag\":\"0x8DAC6BEA8E64E7C\",\"lastModified\":\"2022-11-15T04:05:40.6098044Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask576\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask579\",\"eTag\":\"0x8DAC6BEA8E62758\",\"lastModified\":\"2022-11-15T04:05:40.6088024Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask579\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask582\",\"eTag\":\"0x8DAC6BEA8E69C9E\",\"lastModified\":\"2022-11-15T04:05:40.6118046Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask582\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask583\",\"eTag\":\"0x8DAC6BEA8E6758C\",\"lastModified\":\"2022-11-15T04:05:40.6108044Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask583\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask587\",\"eTag\":\"0x8DAC6BEA8E69C9E\",\"lastModified\":\"2022-11-15T04:05:40.6118046Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask587\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask585\",\"eTag\":\"0x8DAC6BEA8E69C9E\",\"lastModified\":\"2022-11-15T04:05:40.6118046Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask585\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask580\",\"eTag\":\"0x8DAC6BEA8E6C3A6\",\"lastModified\":\"2022-11-15T04:05:40.6128038Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask580\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask586\",\"eTag\":\"0x8DAC6BEA8E69C9E\",\"lastModified\":\"2022-11-15T04:05:40.6118046Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask586\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask588\",\"eTag\":\"0x8DAC6BEA8E711B0\",\"lastModified\":\"2022-11-15T04:05:40.6148016Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask588\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask584\",\"eTag\":\"0x8DAC6BEA8E69C9E\",\"lastModified\":\"2022-11-15T04:05:40.6118046Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask584\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask577\",\"eTag\":\"0x8DAC6BEA8E6758C\",\"lastModified\":\"2022-11-15T04:05:40.6108044Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask577\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask581\",\"eTag\":\"0x8DAC6BEA8E6C3A6\",\"lastModified\":\"2022-11-15T04:05:40.6128038Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask581\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask589\",\"eTag\":\"0x8DAC6BEA8E75FE1\",\"lastModified\":\"2022-11-15T04:05:40.6168033Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask589\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask591\",\"eTag\":\"0x8DAC6BEA8E7ADF6\",\"lastModified\":\"2022-11-15T04:05:40.6188022Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask591\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask594\",\"eTag\":\"0x8DAC6BEA8E7ADF6\",\"lastModified\":\"2022-11-15T04:05:40.6188022Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask594\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask593\",\"eTag\":\"0x8DAC6BEA8E7D515\",\"lastModified\":\"2022-11-15T04:05:40.6198037Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask593\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask595\",\"eTag\":\"0x8DAC6BEA8E7D515\",\"lastModified\":\"2022-11-15T04:05:40.6198037Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask595\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask596\",\"eTag\":\"0x8DAC6BEA8E9F7E0\",\"lastModified\":\"2022-11-15T04:05:40.6338016Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask596\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask592\",\"eTag\":\"0x8DAC6BEA8EA1F0E\",\"lastModified\":\"2022-11-15T04:05:40.6348046Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask592\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask599\",\"eTag\":\"0x8DAC6BEA8E82340\",\"lastModified\":\"2022-11-15T04:05:40.6218048Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask599\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask598\",\"eTag\":\"0x8DAC6BEA8EA1F0E\",\"lastModified\":\"2022-11-15T04:05:40.6348046Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask598\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask590\",\"eTag\":\"0x8DAC6BEA8E7FC24\",\"lastModified\":\"2022-11-15T04:05:40.6208036Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask590\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask597\",\"eTag\":\"0x8DAC6BEA8E9F7E0\",\"lastModified\":\"2022-11-15T04:05:40.6338016Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask597\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask301\",\"eTag\":\"0x8DB5B4B7C474D96\",\"lastModified\":\"2023-05-23T05:06:36.877967Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask301\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask300\",\"eTag\":\"0x8DB5B4B7C474D96\",\"lastModified\":\"2023-05-23T05:06:36.877967Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask300\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask304\",\"eTag\":\"0x8DB5B4B7C4774B1\",\"lastModified\":\"2023-05-23T05:06:36.8789681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask304\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask302\",\"eTag\":\"0x8DB5B4B7C479BA6\",\"lastModified\":\"2023-05-23T05:06:36.8799654Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask302\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask303\",\"eTag\":\"0x8DB5B4B7C47E9C5\",\"lastModified\":\"2023-05-23T05:06:36.8819653Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask303\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask314\",\"eTag\":\"0x8DB5B4B7C4810D7\",\"lastModified\":\"2023-05-23T05:06:36.8829655Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask314\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask316\",\"eTag\":\"0x8DB5B4B7C4810D7\",\"lastModified\":\"2023-05-23T05:06:36.8829655Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask316\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask312\",\"eTag\":\"0x8DB5B4B7C483806\",\"lastModified\":\"2023-05-23T05:06:36.8839686Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask312\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask310\",\"eTag\":\"0x8DB5B4B7C47E9C5\",\"lastModified\":\"2023-05-23T05:06:36.8819653Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask310\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask317\",\"eTag\":\"0x8DB5B4B7C49E5AD\",\"lastModified\":\"2023-05-23T05:06:36.8949677Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask317\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask315\",\"eTag\":\"0x8DB5B4B7C483806\",\"lastModified\":\"2023-05-23T05:06:36.8839686Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask315\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask309\",\"eTag\":\"0x8DB5B4B7C47E9C5\",\"lastModified\":\"2023-05-23T05:06:36.8819653Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask309\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask329\",\"eTag\":\"0x8DB5B4B7C4A5AE7\",\"lastModified\":\"2023-05-23T05:06:36.8979687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask329\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask337\",\"eTag\":\"0x8DB5B4B7C4A5AE7\",\"lastModified\":\"2023-05-23T05:06:36.8979687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask337\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask326\",\"eTag\":\"0x8DB5B4B7C4A5AE7\",\"lastModified\":\"2023-05-23T05:06:36.8979687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask326\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask322\",\"eTag\":\"0x8DB5B4B7C483806\",\"lastModified\":\"2023-05-23T05:06:36.8839686Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask322\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask305\",\"eTag\":\"0x8DB5B4B7C4A81D3\",\"lastModified\":\"2023-05-23T05:06:36.8989651Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask305\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask332\",\"eTag\":\"0x8DB5B4B7C4E529A\",\"lastModified\":\"2023-05-23T05:06:36.9239706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask332\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask313\",\"eTag\":\"0x8DB5B4B7C4AA8F7\",\"lastModified\":\"2023-05-23T05:06:36.8999671Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask313\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask308\",\"eTag\":\"0x8DB5B4B7C4A81D3\",\"lastModified\":\"2023-05-23T05:06:36.8989651Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask308\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask318\",\"eTag\":\"0x8DB5B4B7C4E2B64\",\"lastModified\":\"2023-05-23T05:06:36.9229668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask318\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask330\",\"eTag\":\"0x8DB5B4B7C4E7991\",\"lastModified\":\"2023-05-23T05:06:36.9249681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask330\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask339\",\"eTag\":\"0x8DB5B4B7C4E7991\",\"lastModified\":\"2023-05-23T05:06:36.9249681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask339\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask334\",\"eTag\":\"0x8DB5B4B7C4F3CFB\",\"lastModified\":\"2023-05-23T05:06:36.9299707Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask334\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask306\",\"eTag\":\"0x8DB5B4B7C4F8B0D\",\"lastModified\":\"2023-05-23T05:06:36.9319693Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask306\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask328\",\"eTag\":\"0x8DB5B4B7C4F63EF\",\"lastModified\":\"2023-05-23T05:06:36.9309679Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask328\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask341\",\"eTag\":\"0x8DB5B4B7C5111A9\",\"lastModified\":\"2023-05-23T05:06:36.9419689Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask341\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask331\",\"eTag\":\"0x8DB5B4B7C515FAD\",\"lastModified\":\"2023-05-23T05:06:36.9439661Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask331\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask324\",\"eTag\":\"0x8DB5B4B7C50C381\",\"lastModified\":\"2023-05-23T05:06:36.9399681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask324\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask340\",\"eTag\":\"0x8DB5B4B7C4F8B0D\",\"lastModified\":\"2023-05-23T05:06:36.9319693Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask340\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask323\",\"eTag\":\"0x8DB5B4B7C50C381\",\"lastModified\":\"2023-05-23T05:06:36.9399681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask323\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask335\",\"eTag\":\"0x8DB5B4B7C50C381\",\"lastModified\":\"2023-05-23T05:06:36.9399681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask335\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask319\",\"eTag\":\"0x8DB5B4B7C50EAA0\",\"lastModified\":\"2023-05-23T05:06:36.9409696Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask319\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask325\",\"eTag\":\"0x8DB5B4B7C5186BC\",\"lastModified\":\"2023-05-23T05:06:36.944966Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask325\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask347\",\"eTag\":\"0x8DB5B4B7C55CCAA\",\"lastModified\":\"2023-05-23T05:06:36.9729706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask347\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask333\",\"eTag\":\"0x8DB5B4B7C515FAD\",\"lastModified\":\"2023-05-23T05:06:36.9439661Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask333\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask342\",\"eTag\":\"0x8DB5B4B7C52983E\",\"lastModified\":\"2023-05-23T05:06:36.9519678Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask342\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask327\",\"eTag\":\"0x8DB5B4B7C50EAA0\",\"lastModified\":\"2023-05-23T05:06:36.9409696Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask327\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask321\",\"eTag\":\"0x8DB5B4B7C52983E\",\"lastModified\":\"2023-05-23T05:06:36.9519678Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask321\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask343\",\"eTag\":\"0x8DB5B4B7C555750\",\"lastModified\":\"2023-05-23T05:06:36.9699664Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask343\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask348\",\"eTag\":\"0x8DB5B4B7C561AC3\",\"lastModified\":\"2023-05-23T05:06:36.9749699Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask348\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask344\",\"eTag\":\"0x8DB5B4B7C515FAD\",\"lastModified\":\"2023-05-23T05:06:36.9439661Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask344\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask311\",\"eTag\":\"0x8DB5B4B7C55A58F\",\"lastModified\":\"2023-05-23T05:06:36.9719695Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask311\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask336\",\"eTag\":\"0x8DB5B4B7C52E662\",\"lastModified\":\"2023-05-23T05:06:36.9539682Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask336\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask307\",\"eTag\":\"0x8DB5B4B7C52E662\",\"lastModified\":\"2023-05-23T05:06:36.9539682Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask307\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask345\",\"eTag\":\"0x8DB5B4B7C557E78\",\"lastModified\":\"2023-05-23T05:06:36.9709688Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask345\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask346\",\"eTag\":\"0x8DB5B4B7C561AC3\",\"lastModified\":\"2023-05-23T05:06:36.9749699Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask346\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask349\",\"eTag\":\"0x8DB5B4B7C575329\",\"lastModified\":\"2023-05-23T05:06:36.9829673Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask349\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask338\",\"eTag\":\"0x8DB5B4B7C577A49\",\"lastModified\":\"2023-05-23T05:06:36.9839689Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask338\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask320\",\"eTag\":\"0x8DB5B4B7C530D7E\",\"lastModified\":\"2023-05-23T05:06:36.9549694Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask320\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "a6352165-2478-4a63-a8ee-4b4da13cf22e", + "client-request-id" : "bb6afb58-cca8-424e-b299-74efce34ac45", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "90ce863f-9669-4ccb-9cdf-93b32da6163e", + "request-id" : "7e12c29b-29ff-4e80-845b-196f079408c6", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask399\",\"eTag\":\"0x8DAC6BEA8D3EFB4\",\"lastModified\":\"2022-11-15T04:05:40.4894132Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask399\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask403\",\"eTag\":\"0x8DAC6BEA8D3EFB4\",\"lastModified\":\"2022-11-15T04:05:40.4894132Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask403\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask386\",\"eTag\":\"0x8DAC6BEA8D3C8A3\",\"lastModified\":\"2022-11-15T04:05:40.4884131Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask386\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask395\",\"eTag\":\"0x8DAC6BEA8D3EFB4\",\"lastModified\":\"2022-11-15T04:05:40.4894132Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask395\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask398\",\"eTag\":\"0x8DAC6BEA8D3C8A3\",\"lastModified\":\"2022-11-15T04:05:40.4884131Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask398\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask406\",\"eTag\":\"0x8DAC6BEA8D3EFB4\",\"lastModified\":\"2022-11-15T04:05:40.4894132Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask406\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask401\",\"eTag\":\"0x8DAC6BEA8D3C8A3\",\"lastModified\":\"2022-11-15T04:05:40.4884131Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask401\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask407\",\"eTag\":\"0x8DAC6BEA8D43DEB\",\"lastModified\":\"2022-11-15T04:05:40.4914155Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask407\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask408\",\"eTag\":\"0x8DAC6BEA8D43DEB\",\"lastModified\":\"2022-11-15T04:05:40.4914155Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask408\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask415\",\"eTag\":\"0x8DAC6BEA8D74B10\",\"lastModified\":\"2022-11-15T04:05:40.5114128Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask415\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask413\",\"eTag\":\"0x8DAC6BEA8D74B10\",\"lastModified\":\"2022-11-15T04:05:40.5114128Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask413\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask417\",\"eTag\":\"0x8DAC6BEA8D8AAA3\",\"lastModified\":\"2022-11-15T04:05:40.5204131Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask417\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask418\",\"eTag\":\"0x8DAC6BEA8D8D1BA\",\"lastModified\":\"2022-11-15T04:05:40.5214138Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask418\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask416\",\"eTag\":\"0x8DAC6BEA8D8D1BA\",\"lastModified\":\"2022-11-15T04:05:40.5214138Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask416\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask414\",\"eTag\":\"0x8DAC6BEA8D74B10\",\"lastModified\":\"2022-11-15T04:05:40.5114128Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask414\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask419\",\"eTag\":\"0x8DAC6BEA8D9E31B\",\"lastModified\":\"2022-11-15T04:05:40.5284123Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask419\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask420\",\"eTag\":\"0x8DAC6BEA8D9E31B\",\"lastModified\":\"2022-11-15T04:05:40.5284123Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask420\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask421\",\"eTag\":\"0x8DAC6BEA8D9E31B\",\"lastModified\":\"2022-11-15T04:05:40.5284123Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask421\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask410\",\"eTag\":\"0x8DAC6BEA8DE9E23\",\"lastModified\":\"2022-11-15T04:05:40.5594147Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask410\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask409\",\"eTag\":\"0x8DAC6BEA8DF6175\",\"lastModified\":\"2022-11-15T04:05:40.5644149Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask409\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask411\",\"eTag\":\"0x8DAC6BEA8E04BD6\",\"lastModified\":\"2022-11-15T04:05:40.570415Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask411\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask423\",\"eTag\":\"0x8DAC6BEA8E0E811\",\"lastModified\":\"2022-11-15T04:05:40.5744145Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask423\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask424\",\"eTag\":\"0x8DAC6BEA8E10F28\",\"lastModified\":\"2022-11-15T04:05:40.5754152Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask424\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask412\",\"eTag\":\"0x8DAC6BEA8E0E811\",\"lastModified\":\"2022-11-15T04:05:40.5744145Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask412\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask422\",\"eTag\":\"0x8DAC6BEA8E10F28\",\"lastModified\":\"2022-11-15T04:05:40.5754152Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask422\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask426\",\"eTag\":\"0x8DAC6BEA8E10F28\",\"lastModified\":\"2022-11-15T04:05:40.5754152Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask426\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask425\",\"eTag\":\"0x8DAC6BEA8E10F28\",\"lastModified\":\"2022-11-15T04:05:40.5754152Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask425\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask427\",\"eTag\":\"0x8DAC6BEA8E33216\",\"lastModified\":\"2022-11-15T04:05:40.5894166Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask427\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask434\",\"eTag\":\"0x8DAC6BEA8E38033\",\"lastModified\":\"2022-11-15T04:05:40.5914163Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask434\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask447\",\"eTag\":\"0x8DAC6BEA8E3A721\",\"lastModified\":\"2022-11-15T04:05:40.5924129Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask447\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask445\",\"eTag\":\"0x8DAC6BEA8E3A721\",\"lastModified\":\"2022-11-15T04:05:40.5924129Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask445\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask441\",\"eTag\":\"0x8DAC6BEA8E3591A\",\"lastModified\":\"2022-11-15T04:05:40.5904154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask441\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask449\",\"eTag\":\"0x8DAC6BEA8E38033\",\"lastModified\":\"2022-11-15T04:05:40.5914163Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask449\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask437\",\"eTag\":\"0x8DAC6BEA8E3A721\",\"lastModified\":\"2022-11-15T04:05:40.5924129Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask437\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask448\",\"eTag\":\"0x8DAC6BEA8E3A721\",\"lastModified\":\"2022-11-15T04:05:40.5924129Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask448\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask440\",\"eTag\":\"0x8DAC6BEA8E3591A\",\"lastModified\":\"2022-11-15T04:05:40.5904154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask440\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask429\",\"eTag\":\"0x8DAC6BEA8E38033\",\"lastModified\":\"2022-11-15T04:05:40.5914163Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask429\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask435\",\"eTag\":\"0x8DAC6BEA8E3591A\",\"lastModified\":\"2022-11-15T04:05:40.5904154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask435\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask444\",\"eTag\":\"0x8DAC6BEA8E3CE45\",\"lastModified\":\"2022-11-15T04:05:40.5934149Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask444\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask439\",\"eTag\":\"0x8DAC6BEA8E38033\",\"lastModified\":\"2022-11-15T04:05:40.5914163Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask439\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask432\",\"eTag\":\"0x8DAC6BEA8E38033\",\"lastModified\":\"2022-11-15T04:05:40.5914163Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask432\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask436\",\"eTag\":\"0x8DAC6BEA8E3CE45\",\"lastModified\":\"2022-11-15T04:05:40.5934149Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask436\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask430\",\"eTag\":\"0x8DAC6BEA8E3CE45\",\"lastModified\":\"2022-11-15T04:05:40.5934149Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask430\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask431\",\"eTag\":\"0x8DAC6BEA8E3CE45\",\"lastModified\":\"2022-11-15T04:05:40.5934149Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask431\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask446\",\"eTag\":\"0x8DAC6BEA8E3CE45\",\"lastModified\":\"2022-11-15T04:05:40.5934149Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask446\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask443\",\"eTag\":\"0x8DAC6BEA8E3CE45\",\"lastModified\":\"2022-11-15T04:05:40.5934149Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask443\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask433\",\"eTag\":\"0x8DAC6BEA8E3591A\",\"lastModified\":\"2022-11-15T04:05:40.5904154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask433\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask438\",\"eTag\":\"0x8DAC6BEA8E3591A\",\"lastModified\":\"2022-11-15T04:05:40.5904154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask438\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask442\",\"eTag\":\"0x8DAC6BEA8E3591A\",\"lastModified\":\"2022-11-15T04:05:40.5904154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask442\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask428\",\"eTag\":\"0x8DAC6BEA8ED4426\",\"lastModified\":\"2022-11-15T04:05:40.655415Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask428\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask403\",\"eTag\":\"0x8DB5B4B7C4810D7\",\"lastModified\":\"2023-05-23T05:06:36.8829655Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask403\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask401\",\"eTag\":\"0x8DB5B4B7C47C2BA\",\"lastModified\":\"2023-05-23T05:06:36.8809658Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask401\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask402\",\"eTag\":\"0x8DB5B4B7C49BE98\",\"lastModified\":\"2023-05-23T05:06:36.8939672Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask402\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask409\",\"eTag\":\"0x8DB5B4B7C4AA8F7\",\"lastModified\":\"2023-05-23T05:06:36.8999671Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask409\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask414\",\"eTag\":\"0x8DB5B4B7C4E2B64\",\"lastModified\":\"2023-05-23T05:06:36.9229668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask414\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask419\",\"eTag\":\"0x8DB5B4B7C4E529A\",\"lastModified\":\"2023-05-23T05:06:36.9239706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask419\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask421\",\"eTag\":\"0x8DB5B4B7C4E529A\",\"lastModified\":\"2023-05-23T05:06:36.9239706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask421\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask432\",\"eTag\":\"0x8DB5B4B7C4EC7ED\",\"lastModified\":\"2023-05-23T05:06:36.9269741Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask432\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask411\",\"eTag\":\"0x8DB5B4B7C4F15D7\",\"lastModified\":\"2023-05-23T05:06:36.9289687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask411\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask406\",\"eTag\":\"0x8DB5B4B7C4F3CFB\",\"lastModified\":\"2023-05-23T05:06:36.9299707Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask406\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask430\",\"eTag\":\"0x8DB5B4B7C4F63EF\",\"lastModified\":\"2023-05-23T05:06:36.9309679Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask430\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask445\",\"eTag\":\"0x8DB5B4B7C4F63EF\",\"lastModified\":\"2023-05-23T05:06:36.9309679Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask445\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask424\",\"eTag\":\"0x8DB5B4B7C5138B2\",\"lastModified\":\"2023-05-23T05:06:36.9429682Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask424\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask442\",\"eTag\":\"0x8DB5B4B7C50EAA0\",\"lastModified\":\"2023-05-23T05:06:36.9409696Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask442\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask408\",\"eTag\":\"0x8DB5B4B7C53348B\",\"lastModified\":\"2023-05-23T05:06:36.9559691Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask408\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask425\",\"eTag\":\"0x8DB5B4B7C530D7E\",\"lastModified\":\"2023-05-23T05:06:36.9549694Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask425\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask416\",\"eTag\":\"0x8DB5B4B7C55A58F\",\"lastModified\":\"2023-05-23T05:06:36.9719695Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask416\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask410\",\"eTag\":\"0x8DB5B4B7C5186BC\",\"lastModified\":\"2023-05-23T05:06:36.944966Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask410\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask404\",\"eTag\":\"0x8DB5B4B7C52BF57\",\"lastModified\":\"2023-05-23T05:06:36.9529687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask404\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask418\",\"eTag\":\"0x8DB5B4B7C53348B\",\"lastModified\":\"2023-05-23T05:06:36.9559691Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask418\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask412\",\"eTag\":\"0x8DB5B4B7C55A58F\",\"lastModified\":\"2023-05-23T05:06:36.9719695Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask412\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask400\",\"eTag\":\"0x8DB5B4B7C555750\",\"lastModified\":\"2023-05-23T05:06:36.9699664Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask400\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask405\",\"eTag\":\"0x8DB5B4B7C52E662\",\"lastModified\":\"2023-05-23T05:06:36.9539682Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask405\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask447\",\"eTag\":\"0x8DB5B4B7C577A49\",\"lastModified\":\"2023-05-23T05:06:36.9839689Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask447\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask440\",\"eTag\":\"0x8DB5B4B7C577A49\",\"lastModified\":\"2023-05-23T05:06:36.9839689Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask440\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask422\",\"eTag\":\"0x8DB5B4B7C530D7E\",\"lastModified\":\"2023-05-23T05:06:36.9549694Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask422\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask413\",\"eTag\":\"0x8DB5B4B7C55CCAA\",\"lastModified\":\"2023-05-23T05:06:36.9729706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask413\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask444\",\"eTag\":\"0x8DB5B4B7C55F3B6\",\"lastModified\":\"2023-05-23T05:06:36.9739702Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask444\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask435\",\"eTag\":\"0x8DB5B4B7C575329\",\"lastModified\":\"2023-05-23T05:06:36.9829673Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask435\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask446\",\"eTag\":\"0x8DB5B4B7C575329\",\"lastModified\":\"2023-05-23T05:06:36.9829673Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask446\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask437\",\"eTag\":\"0x8DB5B4B7C575329\",\"lastModified\":\"2023-05-23T05:06:36.9829673Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask437\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask431\",\"eTag\":\"0x8DB5B4B7C55CCAA\",\"lastModified\":\"2023-05-23T05:06:36.9729706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask431\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask407\",\"eTag\":\"0x8DB5B4B7C557E78\",\"lastModified\":\"2023-05-23T05:06:36.9709688Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask407\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask433\",\"eTag\":\"0x8DB5B4B7C575329\",\"lastModified\":\"2023-05-23T05:06:36.9829673Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask433\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask429\",\"eTag\":\"0x8DB5B4B7C572C25\",\"lastModified\":\"2023-05-23T05:06:36.9819685Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask429\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask417\",\"eTag\":\"0x8DB5B4B7C530D7E\",\"lastModified\":\"2023-05-23T05:06:36.9549694Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask417\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask415\",\"eTag\":\"0x8DB5B4B7C509C51\",\"lastModified\":\"2023-05-23T05:06:36.9389649Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask415\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask438\",\"eTag\":\"0x8DB5B4B7C575329\",\"lastModified\":\"2023-05-23T05:06:36.9829673Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask438\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask428\",\"eTag\":\"0x8DB5B4B7C530D7E\",\"lastModified\":\"2023-05-23T05:06:36.9549694Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask428\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask420\",\"eTag\":\"0x8DB5B4B7C53348B\",\"lastModified\":\"2023-05-23T05:06:36.9559691Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask420\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask443\",\"eTag\":\"0x8DB5B4B7C572C25\",\"lastModified\":\"2023-05-23T05:06:36.9819685Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask443\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask426\",\"eTag\":\"0x8DB5B4B7C55F3B6\",\"lastModified\":\"2023-05-23T05:06:36.9739702Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask426\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask434\",\"eTag\":\"0x8DB5B4B7C572C25\",\"lastModified\":\"2023-05-23T05:06:36.9819685Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask434\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask439\",\"eTag\":\"0x8DB5B4B7C575329\",\"lastModified\":\"2023-05-23T05:06:36.9829673Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask439\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask441\",\"eTag\":\"0x8DB5B4B7C57A14D\",\"lastModified\":\"2023-05-23T05:06:36.9849677Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask441\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask436\",\"eTag\":\"0x8DB5B4B7C55CCAA\",\"lastModified\":\"2023-05-23T05:06:36.9729706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask436\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask423\",\"eTag\":\"0x8DB5B4B7C515FAD\",\"lastModified\":\"2023-05-23T05:06:36.9439661Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask423\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask448\",\"eTag\":\"0x8DB5B4B7C5CF893\",\"lastModified\":\"2023-05-23T05:06:37.0199699Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask448\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask449\",\"eTag\":\"0x8DB5B4B7C5D6DBA\",\"lastModified\":\"2023-05-23T05:06:37.022969Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask449\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask427\",\"eTag\":\"0x8DB5B4B7C527114\",\"lastModified\":\"2023-05-23T05:06:36.9509652Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask427\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:39 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "9762dab5-1c8b-40bb-a3fb-4dc45e045dca", + "client-request-id" : "03841cd6-1b23-4754-b9bd-0ca40fce2b36", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "f0a88f0e-34e2-40e3-9ae9-e39410740f9c", + "request-id" : "5985fb4c-a51a-40a4-ad49-0b7a590f4bbe", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask600\",\"eTag\":\"0x8DAC6BEA8E9C57B\",\"lastModified\":\"2022-11-15T04:05:40.6325115Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask600\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask601\",\"eTag\":\"0x8DAC6BEA8E9EC78\",\"lastModified\":\"2022-11-15T04:05:40.6335096Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask601\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask602\",\"eTag\":\"0x8DAC6BEA8E9EC78\",\"lastModified\":\"2022-11-15T04:05:40.6335096Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask602\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask605\",\"eTag\":\"0x8DAC6BEA8EA88D1\",\"lastModified\":\"2022-11-15T04:05:40.6375121Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask605\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask603\",\"eTag\":\"0x8DAC6BEA8EA88D1\",\"lastModified\":\"2022-11-15T04:05:40.6375121Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask603\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask607\",\"eTag\":\"0x8DAC6BEA8EB24F7\",\"lastModified\":\"2022-11-15T04:05:40.6415095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask607\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask608\",\"eTag\":\"0x8DAC6BEA8EB24F7\",\"lastModified\":\"2022-11-15T04:05:40.6415095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask608\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask609\",\"eTag\":\"0x8DAC6BEA8EB24F7\",\"lastModified\":\"2022-11-15T04:05:40.6415095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask609\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask612\",\"eTag\":\"0x8DAC6BEA8EB24F7\",\"lastModified\":\"2022-11-15T04:05:40.6415095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask612\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask614\",\"eTag\":\"0x8DAC6BEA8EB4C21\",\"lastModified\":\"2022-11-15T04:05:40.6425121Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask614\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask611\",\"eTag\":\"0x8DAC6BEA8EB4C21\",\"lastModified\":\"2022-11-15T04:05:40.6425121Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask611\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask616\",\"eTag\":\"0x8DAC6BEA8EC0F67\",\"lastModified\":\"2022-11-15T04:05:40.6475111Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask616\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask623\",\"eTag\":\"0x8DAC6BEA8EC5D8E\",\"lastModified\":\"2022-11-15T04:05:40.6495118Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask623\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask618\",\"eTag\":\"0x8DAC6BEA8EC3685\",\"lastModified\":\"2022-11-15T04:05:40.6485125Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask618\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask619\",\"eTag\":\"0x8DAC6BEA8EC5D8E\",\"lastModified\":\"2022-11-15T04:05:40.6495118Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask619\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask617\",\"eTag\":\"0x8DAC6BEA8EC3685\",\"lastModified\":\"2022-11-15T04:05:40.6485125Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask617\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask624\",\"eTag\":\"0x8DAC6BEA8EC5D8E\",\"lastModified\":\"2022-11-15T04:05:40.6495118Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask624\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask615\",\"eTag\":\"0x8DAC6BEA8EC3685\",\"lastModified\":\"2022-11-15T04:05:40.6485125Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask615\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask604\",\"eTag\":\"0x8DAC6BEA8EC849E\",\"lastModified\":\"2022-11-15T04:05:40.6505118Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask604\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask621\",\"eTag\":\"0x8DAC6BEA8EC3685\",\"lastModified\":\"2022-11-15T04:05:40.6485125Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask621\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask631\",\"eTag\":\"0x8DAC6BEA8ECD2CA\",\"lastModified\":\"2022-11-15T04:05:40.652513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask631\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask632\",\"eTag\":\"0x8DAC6BEA8ECD2CA\",\"lastModified\":\"2022-11-15T04:05:40.652513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask632\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask606\",\"eTag\":\"0x8DAC6BEA8EC5D8E\",\"lastModified\":\"2022-11-15T04:05:40.6495118Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask606\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask625\",\"eTag\":\"0x8DAC6BEA8ECABAC\",\"lastModified\":\"2022-11-15T04:05:40.6515116Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask625\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask620\",\"eTag\":\"0x8DAC6BEA8ECABAC\",\"lastModified\":\"2022-11-15T04:05:40.6515116Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask620\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask628\",\"eTag\":\"0x8DAC6BEA8ECABAC\",\"lastModified\":\"2022-11-15T04:05:40.6515116Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask628\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask633\",\"eTag\":\"0x8DAC6BEA8ECF9DD\",\"lastModified\":\"2022-11-15T04:05:40.6535133Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask633\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask634\",\"eTag\":\"0x8DAC6BEA8ECF9DD\",\"lastModified\":\"2022-11-15T04:05:40.6535133Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask634\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask629\",\"eTag\":\"0x8DAC6BEA8ECD2CA\",\"lastModified\":\"2022-11-15T04:05:40.652513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask629\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask613\",\"eTag\":\"0x8DAC6BEA8EC3685\",\"lastModified\":\"2022-11-15T04:05:40.6485125Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask613\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask630\",\"eTag\":\"0x8DAC6BEA8ECD2CA\",\"lastModified\":\"2022-11-15T04:05:40.652513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask630\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask622\",\"eTag\":\"0x8DAC6BEA8EC5D8E\",\"lastModified\":\"2022-11-15T04:05:40.6495118Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask622\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask635\",\"eTag\":\"0x8DAC6BEA8ED47EA\",\"lastModified\":\"2022-11-15T04:05:40.6555114Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask635\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask636\",\"eTag\":\"0x8DAC6BEA8ED6EFF\",\"lastModified\":\"2022-11-15T04:05:40.6565119Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask636\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask627\",\"eTag\":\"0x8DAC6BEA8ECABAC\",\"lastModified\":\"2022-11-15T04:05:40.6515116Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask627\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask626\",\"eTag\":\"0x8DAC6BEA8ECD2CA\",\"lastModified\":\"2022-11-15T04:05:40.652513Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask626\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask610\",\"eTag\":\"0x8DAC6BEA8EB24F7\",\"lastModified\":\"2022-11-15T04:05:40.6415095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask610\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask639\",\"eTag\":\"0x8DAC6BEA8EEF5AD\",\"lastModified\":\"2022-11-15T04:05:40.6665133Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask639\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask646\",\"eTag\":\"0x8DAC6BEA8EEF5AD\",\"lastModified\":\"2022-11-15T04:05:40.6665133Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask646\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask645\",\"eTag\":\"0x8DAC6BEA8EEF5AD\",\"lastModified\":\"2022-11-15T04:05:40.6665133Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask645\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask640\",\"eTag\":\"0x8DAC6BEA8EEF5AD\",\"lastModified\":\"2022-11-15T04:05:40.6665133Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask640\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask643\",\"eTag\":\"0x8DAC6BEA8EEF5AD\",\"lastModified\":\"2022-11-15T04:05:40.6665133Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask643\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask647\",\"eTag\":\"0x8DAC6BEA8EF1CA8\",\"lastModified\":\"2022-11-15T04:05:40.6675112Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask647\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask644\",\"eTag\":\"0x8DAC6BEA8EEF5AD\",\"lastModified\":\"2022-11-15T04:05:40.6665133Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask644\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask648\",\"eTag\":\"0x8DAC6BEA8EF1CA8\",\"lastModified\":\"2022-11-15T04:05:40.6675112Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask648\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask638\",\"eTag\":\"0x8DAC6BEA8EECE95\",\"lastModified\":\"2022-11-15T04:05:40.6655125Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask638\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask641\",\"eTag\":\"0x8DAC6BEA8EEF5AD\",\"lastModified\":\"2022-11-15T04:05:40.6665133Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask641\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask649\",\"eTag\":\"0x8DAC6BEA8EF1CA8\",\"lastModified\":\"2022-11-15T04:05:40.6675112Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask649\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask637\",\"eTag\":\"0x8DAC6BEA8EECE95\",\"lastModified\":\"2022-11-15T04:05:40.6655125Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask637\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask642\",\"eTag\":\"0x8DAC6BEA8EF91D6\",\"lastModified\":\"2022-11-15T04:05:40.670511Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask642\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask200\",\"eTag\":\"0x8DB5B4B7C47C2BA\",\"lastModified\":\"2023-05-23T05:06:36.8809658Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask200\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask204\",\"eTag\":\"0x8DB5B4B7C4810D7\",\"lastModified\":\"2023-05-23T05:06:36.8829655Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask204\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask219\",\"eTag\":\"0x8DB5B4B7C4A0CB4\",\"lastModified\":\"2023-05-23T05:06:36.8959668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask219\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask202\",\"eTag\":\"0x8DB5B4B7C47E9C5\",\"lastModified\":\"2023-05-23T05:06:36.8819653Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask202\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask207\",\"eTag\":\"0x8DB5B4B7C49E5AD\",\"lastModified\":\"2023-05-23T05:06:36.8949677Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask207\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask201\",\"eTag\":\"0x8DB5B4B7C479BA6\",\"lastModified\":\"2023-05-23T05:06:36.8799654Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask201\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask217\",\"eTag\":\"0x8DB5B4B7C4A33C3\",\"lastModified\":\"2023-05-23T05:06:36.8969667Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask217\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask210\",\"eTag\":\"0x8DB5B4B7C4A5AE7\",\"lastModified\":\"2023-05-23T05:06:36.8979687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask210\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask212\",\"eTag\":\"0x8DB5B4B7C4A0CB4\",\"lastModified\":\"2023-05-23T05:06:36.8959668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask212\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask211\",\"eTag\":\"0x8DB5B4B7C4A0CB4\",\"lastModified\":\"2023-05-23T05:06:36.8959668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask211\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask213\",\"eTag\":\"0x8DB5B4B7C4AA8F7\",\"lastModified\":\"2023-05-23T05:06:36.8999671Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask213\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask230\",\"eTag\":\"0x8DB5B4B7C4AA8F7\",\"lastModified\":\"2023-05-23T05:06:36.8999671Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask230\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask242\",\"eTag\":\"0x8DB5B4B7C4E529A\",\"lastModified\":\"2023-05-23T05:06:36.9239706Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask242\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask229\",\"eTag\":\"0x8DB5B4B7C4A5AE7\",\"lastModified\":\"2023-05-23T05:06:36.8979687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask229\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask203\",\"eTag\":\"0x8DB5B4B7C4AA8F7\",\"lastModified\":\"2023-05-23T05:06:36.8999671Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask203\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask215\",\"eTag\":\"0x8DB5B4B7C4E2B64\",\"lastModified\":\"2023-05-23T05:06:36.9229668Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask215\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask205\",\"eTag\":\"0x8DB5B4B7C4810D7\",\"lastModified\":\"2023-05-23T05:06:36.8829655Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask205\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask214\",\"eTag\":\"0x8DB5B4B7C4A81D3\",\"lastModified\":\"2023-05-23T05:06:36.8989651Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask214\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask234\",\"eTag\":\"0x8DB5B4B7C4EA0A3\",\"lastModified\":\"2023-05-23T05:06:36.9259683Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask234\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask222\",\"eTag\":\"0x8DB5B4B7C4F15D7\",\"lastModified\":\"2023-05-23T05:06:36.9289687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask222\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask206\",\"eTag\":\"0x8DB5B4B7C4F3CFB\",\"lastModified\":\"2023-05-23T05:06:36.9299707Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask206\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask246\",\"eTag\":\"0x8DB5B4B7C4F63EF\",\"lastModified\":\"2023-05-23T05:06:36.9309679Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask246\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask227\",\"eTag\":\"0x8DB5B4B7C4F3CFB\",\"lastModified\":\"2023-05-23T05:06:36.9299707Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask227\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask216\",\"eTag\":\"0x8DB5B4B7C4F8B0D\",\"lastModified\":\"2023-05-23T05:06:36.9319693Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask216\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask223\",\"eTag\":\"0x8DB5B4B7C509C51\",\"lastModified\":\"2023-05-23T05:06:36.9389649Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask223\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask221\",\"eTag\":\"0x8DB5B4B7C50EAA0\",\"lastModified\":\"2023-05-23T05:06:36.9409696Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask221\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask218\",\"eTag\":\"0x8DB5B4B7C530D7E\",\"lastModified\":\"2023-05-23T05:06:36.9549694Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask218\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask224\",\"eTag\":\"0x8DB5B4B7C53348B\",\"lastModified\":\"2023-05-23T05:06:36.9559691Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask224\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask233\",\"eTag\":\"0x8DB5B4B7C50EAA0\",\"lastModified\":\"2023-05-23T05:06:36.9409696Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask233\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask231\",\"eTag\":\"0x8DB5B4B7C50EAA0\",\"lastModified\":\"2023-05-23T05:06:36.9409696Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask231\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask235\",\"eTag\":\"0x8DB5B4B7C50C381\",\"lastModified\":\"2023-05-23T05:06:36.9399681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask235\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask220\",\"eTag\":\"0x8DB5B4B7C50C381\",\"lastModified\":\"2023-05-23T05:06:36.9399681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask220\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask248\",\"eTag\":\"0x8DB5B4B7C55F3B6\",\"lastModified\":\"2023-05-23T05:06:36.9739702Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask248\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask237\",\"eTag\":\"0x8DB5B4B7C557E78\",\"lastModified\":\"2023-05-23T05:06:36.9709688Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask237\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask226\",\"eTag\":\"0x8DB5B4B7C530D7E\",\"lastModified\":\"2023-05-23T05:06:36.9549694Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask226\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask247\",\"eTag\":\"0x8DB5B4B7C50C381\",\"lastModified\":\"2023-05-23T05:06:36.9399681Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask247\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask244\",\"eTag\":\"0x8DB5B4B7C52983E\",\"lastModified\":\"2023-05-23T05:06:36.9519678Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask244\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask238\",\"eTag\":\"0x8DB5B4B7C55F3B6\",\"lastModified\":\"2023-05-23T05:06:36.9739702Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask238\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask243\",\"eTag\":\"0x8DB5B4B7C50EAA0\",\"lastModified\":\"2023-05-23T05:06:36.9409696Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask243\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask245\",\"eTag\":\"0x8DB5B4B7C555750\",\"lastModified\":\"2023-05-23T05:06:36.9699664Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask245\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask208\",\"eTag\":\"0x8DB5B4B7C50EAA0\",\"lastModified\":\"2023-05-23T05:06:36.9409696Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask208\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask236\",\"eTag\":\"0x8DB5B4B7C5186BC\",\"lastModified\":\"2023-05-23T05:06:36.944966Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask236\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask240\",\"eTag\":\"0x8DB5B4B7C53348B\",\"lastModified\":\"2023-05-23T05:06:36.9559691Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask240\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask239\",\"eTag\":\"0x8DB5B4B7C555750\",\"lastModified\":\"2023-05-23T05:06:36.9699664Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask239\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask228\",\"eTag\":\"0x8DB5B4B7C52BF57\",\"lastModified\":\"2023-05-23T05:06:36.9529687Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask228\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask232\",\"eTag\":\"0x8DB5B4B7C5138B2\",\"lastModified\":\"2023-05-23T05:06:36.9429682Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask232\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask241\",\"eTag\":\"0x8DB5B4B7C557E78\",\"lastModified\":\"2023-05-23T05:06:36.9709688Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask241\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask249\",\"eTag\":\"0x8DB5B4B7C577A49\",\"lastModified\":\"2023-05-23T05:06:36.9839689Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask249\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask209\",\"eTag\":\"0x8DB5B4B7C55A58F\",\"lastModified\":\"2023-05-23T05:06:36.9719695Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask209\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask225\",\"eTag\":\"0x8DB5B4B7C53348B\",\"lastModified\":\"2023-05-23T05:06:36.9559691Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask225\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "b92c4efe-bac9-4f3a-8174-63ce00a94423", + "client-request-id" : "2ee56c0e-4d0e-4390-ba6e-141b8cafb630", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "09bac597-601e-46ee-b418-9659bfc1fefc", + "request-id" : "0e2cbb0f-86a1-4b9b-940d-14f6a6a0fe9e", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask200\",\"eTag\":\"0x8DAC6BEA8D36B08\",\"lastModified\":\"2022-11-15T04:05:40.4860168Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask200\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask201\",\"eTag\":\"0x8DAC6BEA8D40758\",\"lastModified\":\"2022-11-15T04:05:40.4900184Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask201\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask242\",\"eTag\":\"0x8DAC6BEA8DABE03\",\"lastModified\":\"2022-11-15T04:05:40.5340163Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask242\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask202\",\"eTag\":\"0x8DAC6BEA8DC1DC3\",\"lastModified\":\"2022-11-15T04:05:40.5430211Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask202\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask207\",\"eTag\":\"0x8DAC6BEA8DC44C6\",\"lastModified\":\"2022-11-15T04:05:40.5440198Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask207\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask203\",\"eTag\":\"0x8DAC6BEA8DC44C6\",\"lastModified\":\"2022-11-15T04:05:40.5440198Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask203\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask206\",\"eTag\":\"0x8DAC6BEA8DC6BC6\",\"lastModified\":\"2022-11-15T04:05:40.5450182Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask206\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask205\",\"eTag\":\"0x8DAC6BEA8DDCB63\",\"lastModified\":\"2022-11-15T04:05:40.5540195Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask205\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask208\",\"eTag\":\"0x8DAC6BEA8DE4078\",\"lastModified\":\"2022-11-15T04:05:40.5570168Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask208\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask215\",\"eTag\":\"0x8DAC6BEA8E03C54\",\"lastModified\":\"2022-11-15T04:05:40.570018Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask215\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask211\",\"eTag\":\"0x8DAC6BEA8DFEE2A\",\"lastModified\":\"2022-11-15T04:05:40.568017Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask211\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask217\",\"eTag\":\"0x8DAC6BEA8E08A80\",\"lastModified\":\"2022-11-15T04:05:40.5720192Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask217\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask210\",\"eTag\":\"0x8DAC6BEA8E08A80\",\"lastModified\":\"2022-11-15T04:05:40.5720192Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask210\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask239\",\"eTag\":\"0x8DAC6BEA8E51E5D\",\"lastModified\":\"2022-11-15T04:05:40.6020189Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask239\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask243\",\"eTag\":\"0x8DAC6BEA8E5BA97\",\"lastModified\":\"2022-11-15T04:05:40.6060183Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask243\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask249\",\"eTag\":\"0x8DAC6BEA8E78F6C\",\"lastModified\":\"2022-11-15T04:05:40.6180204Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask249\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask248\",\"eTag\":\"0x8DAC6BEA8E82BAC\",\"lastModified\":\"2022-11-15T04:05:40.6220204Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask248\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask204\",\"eTag\":\"0x8DAC6BEA8DDF269\",\"lastModified\":\"2022-11-15T04:05:40.5550185Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask204\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask216\",\"eTag\":\"0x8DAC6BEA8E8C7D9\",\"lastModified\":\"2022-11-15T04:05:40.6260185Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask216\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask214\",\"eTag\":\"0x8DAC6BEA8E08A80\",\"lastModified\":\"2022-11-15T04:05:40.5720192Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask214\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask225\",\"eTag\":\"0x8DAC6BEA8E0D8A8\",\"lastModified\":\"2022-11-15T04:05:40.57402Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask225\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask222\",\"eTag\":\"0x8DAC6BEA8E0B19E\",\"lastModified\":\"2022-11-15T04:05:40.5730206Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask222\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask220\",\"eTag\":\"0x8DAC6BEA8E0D8A8\",\"lastModified\":\"2022-11-15T04:05:40.57402Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask220\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask218\",\"eTag\":\"0x8DAC6BEA8E0FFCC\",\"lastModified\":\"2022-11-15T04:05:40.575022Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask218\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask226\",\"eTag\":\"0x8DAC6BEA8E0FFCC\",\"lastModified\":\"2022-11-15T04:05:40.575022Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask226\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask231\",\"eTag\":\"0x8DAC6BEA8E126CA\",\"lastModified\":\"2022-11-15T04:05:40.5760202Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask231\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask228\",\"eTag\":\"0x8DAC6BEA8E0D8A8\",\"lastModified\":\"2022-11-15T04:05:40.57402Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask228\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask219\",\"eTag\":\"0x8DAC6BEA8E126CA\",\"lastModified\":\"2022-11-15T04:05:40.5760202Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask219\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask221\",\"eTag\":\"0x8DAC6BEA8E126CA\",\"lastModified\":\"2022-11-15T04:05:40.5760202Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask221\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask230\",\"eTag\":\"0x8DAC6BEA8E0D8A8\",\"lastModified\":\"2022-11-15T04:05:40.57402Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask230\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask232\",\"eTag\":\"0x8DAC6BEA8E14DDE\",\"lastModified\":\"2022-11-15T04:05:40.5770206Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask232\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask212\",\"eTag\":\"0x8DAC6BEA8E126CA\",\"lastModified\":\"2022-11-15T04:05:40.5760202Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask212\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask237\",\"eTag\":\"0x8DAC6BEA8E4D040\",\"lastModified\":\"2022-11-15T04:05:40.6000192Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask237\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask209\",\"eTag\":\"0x8DAC6BEA8DFEE2A\",\"lastModified\":\"2022-11-15T04:05:40.568017Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask209\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask224\",\"eTag\":\"0x8DAC6BEA8E45AFC\",\"lastModified\":\"2022-11-15T04:05:40.5970172Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask224\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask238\",\"eTag\":\"0x8DAC6BEA8E4D040\",\"lastModified\":\"2022-11-15T04:05:40.6000192Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask238\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask229\",\"eTag\":\"0x8DAC6BEA8E14DDE\",\"lastModified\":\"2022-11-15T04:05:40.5770206Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask229\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask227\",\"eTag\":\"0x8DAC6BEA8E14DDE\",\"lastModified\":\"2022-11-15T04:05:40.5770206Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask227\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask240\",\"eTag\":\"0x8DAC6BEA8E56C9C\",\"lastModified\":\"2022-11-15T04:05:40.604022Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask240\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask233\",\"eTag\":\"0x8DAC6BEA8E48250\",\"lastModified\":\"2022-11-15T04:05:40.598024Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask233\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask223\",\"eTag\":\"0x8DAC6BEA8E0FFCC\",\"lastModified\":\"2022-11-15T04:05:40.575022Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask223\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask235\",\"eTag\":\"0x8DAC6BEA8E45AFC\",\"lastModified\":\"2022-11-15T04:05:40.5970172Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask235\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask245\",\"eTag\":\"0x8DAC6BEA8E56C9C\",\"lastModified\":\"2022-11-15T04:05:40.604022Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask245\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask234\",\"eTag\":\"0x8DAC6BEA8E56C9C\",\"lastModified\":\"2022-11-15T04:05:40.604022Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask234\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask241\",\"eTag\":\"0x8DAC6BEA8E56C9C\",\"lastModified\":\"2022-11-15T04:05:40.604022Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask241\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask236\",\"eTag\":\"0x8DAC6BEA8E4D040\",\"lastModified\":\"2022-11-15T04:05:40.6000192Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask236\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask247\",\"eTag\":\"0x8DAC6BEA8E5939C\",\"lastModified\":\"2022-11-15T04:05:40.6050204Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask247\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask246\",\"eTag\":\"0x8DAC6BEA8E5939C\",\"lastModified\":\"2022-11-15T04:05:40.6050204Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask246\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask244\",\"eTag\":\"0x8DAC6BEA8E5456A\",\"lastModified\":\"2022-11-15T04:05:40.6030186Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask244\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask213\",\"eTag\":\"0x8DAC6BEA8E03C54\",\"lastModified\":\"2022-11-15T04:05:40.570018Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask213\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask600\",\"eTag\":\"0x8DB5B4B7C74514F\",\"lastModified\":\"2023-05-23T05:06:37.1729743Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask600\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask601\",\"eTag\":\"0x8DB5B4B7C747868\",\"lastModified\":\"2023-05-23T05:06:37.1739752Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask601\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask602\",\"eTag\":\"0x8DB5B4B7C747868\",\"lastModified\":\"2023-05-23T05:06:37.1739752Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask602\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask604\",\"eTag\":\"0x8DB5B4B7C74ED8C\",\"lastModified\":\"2023-05-23T05:06:37.176974Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask604\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask603\",\"eTag\":\"0x8DB5B4B7C74C67C\",\"lastModified\":\"2023-05-23T05:06:37.175974Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask603\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask605\",\"eTag\":\"0x8DB5B4B7C75149B\",\"lastModified\":\"2023-05-23T05:06:37.1779739Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask605\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask610\",\"eTag\":\"0x8DB5B4B7C75149B\",\"lastModified\":\"2023-05-23T05:06:37.1779739Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask610\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask607\",\"eTag\":\"0x8DB5B4B7C769B4A\",\"lastModified\":\"2023-05-23T05:06:37.1879754Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask607\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask606\",\"eTag\":\"0x8DB5B4B7C75149B\",\"lastModified\":\"2023-05-23T05:06:37.1779739Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask606\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask611\",\"eTag\":\"0x8DB5B4B7C753BCD\",\"lastModified\":\"2023-05-23T05:06:37.1789773Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask611\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask608\",\"eTag\":\"0x8DB5B4B7C76E973\",\"lastModified\":\"2023-05-23T05:06:37.1899763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask608\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask619\",\"eTag\":\"0x8DB5B4B7C76E973\",\"lastModified\":\"2023-05-23T05:06:37.1899763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask619\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask612\",\"eTag\":\"0x8DB5B4B7C76E973\",\"lastModified\":\"2023-05-23T05:06:37.1899763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask612\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask617\",\"eTag\":\"0x8DB5B4B7C771089\",\"lastModified\":\"2023-05-23T05:06:37.1909769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask617\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask615\",\"eTag\":\"0x8DB5B4B7C7A9305\",\"lastModified\":\"2023-05-23T05:06:37.2139781Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask615\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask633\",\"eTag\":\"0x8DB5B4B7C775EA6\",\"lastModified\":\"2023-05-23T05:06:37.1929766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask633\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask639\",\"eTag\":\"0x8DB5B4B7C7737A1\",\"lastModified\":\"2023-05-23T05:06:37.1919777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask639\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask614\",\"eTag\":\"0x8DB5B4B7C7A6BE0\",\"lastModified\":\"2023-05-23T05:06:37.212976Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask614\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask627\",\"eTag\":\"0x8DB5B4B7C7A6BE0\",\"lastModified\":\"2023-05-23T05:06:37.212976Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask627\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask636\",\"eTag\":\"0x8DB5B4B7C7737A1\",\"lastModified\":\"2023-05-23T05:06:37.1919777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask636\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask609\",\"eTag\":\"0x8DB5B4B7C7785B3\",\"lastModified\":\"2023-05-23T05:06:37.1939763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask609\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask618\",\"eTag\":\"0x8DB5B4B7C775EA6\",\"lastModified\":\"2023-05-23T05:06:37.1929766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask618\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask632\",\"eTag\":\"0x8DB5B4B7C7A6BE0\",\"lastModified\":\"2023-05-23T05:06:37.212976Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask632\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask642\",\"eTag\":\"0x8DB5B4B7C7ABA01\",\"lastModified\":\"2023-05-23T05:06:37.2149761Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask642\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask638\",\"eTag\":\"0x8DB5B4B7C7AE121\",\"lastModified\":\"2023-05-23T05:06:37.2159777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask638\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask628\",\"eTag\":\"0x8DB5B4B7C7ABA01\",\"lastModified\":\"2023-05-23T05:06:37.2149761Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask628\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask625\",\"eTag\":\"0x8DB5B4B7C7ABA01\",\"lastModified\":\"2023-05-23T05:06:37.2149761Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask625\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask629\",\"eTag\":\"0x8DB5B4B7C7A6BE0\",\"lastModified\":\"2023-05-23T05:06:37.212976Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask629\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask621\",\"eTag\":\"0x8DB5B4B7C7AE121\",\"lastModified\":\"2023-05-23T05:06:37.2159777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask621\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask641\",\"eTag\":\"0x8DB5B4B7C7B0826\",\"lastModified\":\"2023-05-23T05:06:37.2169766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask641\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask649\",\"eTag\":\"0x8DB5B4B7C7AE121\",\"lastModified\":\"2023-05-23T05:06:37.2159777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask649\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask643\",\"eTag\":\"0x8DB5B4B7C7B0826\",\"lastModified\":\"2023-05-23T05:06:37.2169766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask643\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask626\",\"eTag\":\"0x8DB5B4B7C7AE121\",\"lastModified\":\"2023-05-23T05:06:37.2159777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask626\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask613\",\"eTag\":\"0x8DB5B4B7C7785B3\",\"lastModified\":\"2023-05-23T05:06:37.1939763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask613\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask620\",\"eTag\":\"0x8DB5B4B7C7C8EBD\",\"lastModified\":\"2023-05-23T05:06:37.2269757Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask620\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask637\",\"eTag\":\"0x8DB5B4B7C7CB5D9\",\"lastModified\":\"2023-05-23T05:06:37.2279769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask637\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask622\",\"eTag\":\"0x8DB5B4B7C7D0409\",\"lastModified\":\"2023-05-23T05:06:37.2299785Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask622\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask623\",\"eTag\":\"0x8DB5B4B7C7D520C\",\"lastModified\":\"2023-05-23T05:06:37.2319756Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask623\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask630\",\"eTag\":\"0x8DB5B4B7C7D520C\",\"lastModified\":\"2023-05-23T05:06:37.2319756Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask630\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask635\",\"eTag\":\"0x8DB5B4B7C7D0409\",\"lastModified\":\"2023-05-23T05:06:37.2299785Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask635\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask631\",\"eTag\":\"0x8DB5B4B7C7D0409\",\"lastModified\":\"2023-05-23T05:06:37.2299785Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask631\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask616\",\"eTag\":\"0x8DB5B4B7C7ED8BC\",\"lastModified\":\"2023-05-23T05:06:37.2419772Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask616\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask640\",\"eTag\":\"0x8DB5B4B7C7EFFCB\",\"lastModified\":\"2023-05-23T05:06:37.2429771Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask640\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask645\",\"eTag\":\"0x8DB5B4B7C80AD67\",\"lastModified\":\"2023-05-23T05:06:37.2539751Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask645\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask634\",\"eTag\":\"0x8DB5B4B7C7D0409\",\"lastModified\":\"2023-05-23T05:06:37.2299785Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask634\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask648\",\"eTag\":\"0x8DB5B4B7C8149D9\",\"lastModified\":\"2023-05-23T05:06:37.2579801Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask648\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask644\",\"eTag\":\"0x8DB5B4B7C7ED8BC\",\"lastModified\":\"2023-05-23T05:06:37.2419772Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask644\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask647\",\"eTag\":\"0x8DB5B4B7C8122BC\",\"lastModified\":\"2023-05-23T05:06:37.2569788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask647\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask624\",\"eTag\":\"0x8DB5B4B7C7CDCFC\",\"lastModified\":\"2023-05-23T05:06:37.2289788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask624\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask646\",\"eTag\":\"0x8DB5B4B7C80FBA7\",\"lastModified\":\"2023-05-23T05:06:37.2559783Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask646\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "2de0b854-57ba-4da2-9ee9-071ce7eac072", + "client-request-id" : "8792d73a-f2ef-4b4f-839f-21c56fc9af83", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "14214f47-563b-4274-910a-a4efff5d7731", + "request-id" : "0e2496e1-92da-412d-b5f1-875fb21c203c", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask653\",\"eTag\":\"0x8DAC6BEA8EDB9B3\",\"lastModified\":\"2022-11-15T04:05:40.6584243Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask653\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask650\",\"eTag\":\"0x8DAC6BEA8ED9288\",\"lastModified\":\"2022-11-15T04:05:40.6574216Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask650\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask652\",\"eTag\":\"0x8DAC6BEA8EDB9B3\",\"lastModified\":\"2022-11-15T04:05:40.6584243Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask652\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask656\",\"eTag\":\"0x8DAC6BEA8ED9288\",\"lastModified\":\"2022-11-15T04:05:40.6574216Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask656\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask651\",\"eTag\":\"0x8DAC6BEA8EDB9B3\",\"lastModified\":\"2022-11-15T04:05:40.6584243Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask651\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask661\",\"eTag\":\"0x8DAC6BEA8EE55E2\",\"lastModified\":\"2022-11-15T04:05:40.6624226Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask661\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask660\",\"eTag\":\"0x8DAC6BEA8EE2EC4\",\"lastModified\":\"2022-11-15T04:05:40.6614212Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask660\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask663\",\"eTag\":\"0x8DAC6BEA8EE55E2\",\"lastModified\":\"2022-11-15T04:05:40.6624226Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask663\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask662\",\"eTag\":\"0x8DAC6BEA8EE55E2\",\"lastModified\":\"2022-11-15T04:05:40.6624226Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask662\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask665\",\"eTag\":\"0x8DAC6BEA8EE55E2\",\"lastModified\":\"2022-11-15T04:05:40.6624226Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask665\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask664\",\"eTag\":\"0x8DAC6BEA8EE55E2\",\"lastModified\":\"2022-11-15T04:05:40.6624226Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask664\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask655\",\"eTag\":\"0x8DAC6BEA8EE55E2\",\"lastModified\":\"2022-11-15T04:05:40.6624226Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask655\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask659\",\"eTag\":\"0x8DAC6BEA8EE7D03\",\"lastModified\":\"2022-11-15T04:05:40.6634243Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask659\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask666\",\"eTag\":\"0x8DAC6BEA8EE7D03\",\"lastModified\":\"2022-11-15T04:05:40.6634243Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask666\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask667\",\"eTag\":\"0x8DAC6BEA8EEA419\",\"lastModified\":\"2022-11-15T04:05:40.6644249Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask667\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask670\",\"eTag\":\"0x8DAC6BEA8EEA419\",\"lastModified\":\"2022-11-15T04:05:40.6644249Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask670\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask669\",\"eTag\":\"0x8DAC6BEA8EEA419\",\"lastModified\":\"2022-11-15T04:05:40.6644249Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask669\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask668\",\"eTag\":\"0x8DAC6BEA8EE7D03\",\"lastModified\":\"2022-11-15T04:05:40.6634243Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask668\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask671\",\"eTag\":\"0x8DAC6BEA8EECB2C\",\"lastModified\":\"2022-11-15T04:05:40.6654252Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask671\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask654\",\"eTag\":\"0x8DAC6BEA8EDB9B3\",\"lastModified\":\"2022-11-15T04:05:40.6584243Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask654\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask658\",\"eTag\":\"0x8DAC6BEA8EE55E2\",\"lastModified\":\"2022-11-15T04:05:40.6624226Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask658\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask675\",\"eTag\":\"0x8DAC6BEA8EF1933\",\"lastModified\":\"2022-11-15T04:05:40.6674227Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask675\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask677\",\"eTag\":\"0x8DAC6BEA8F02AB1\",\"lastModified\":\"2022-11-15T04:05:40.6744241Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask677\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask657\",\"eTag\":\"0x8DAC6BEA8F02AB1\",\"lastModified\":\"2022-11-15T04:05:40.6744241Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask657\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask682\",\"eTag\":\"0x8DAC6BEA8F078D7\",\"lastModified\":\"2022-11-15T04:05:40.6764247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask682\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask679\",\"eTag\":\"0x8DAC6BEA8F051C4\",\"lastModified\":\"2022-11-15T04:05:40.6754244Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask679\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask674\",\"eTag\":\"0x8DAC6BEA8EF1933\",\"lastModified\":\"2022-11-15T04:05:40.6674227Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask674\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask680\",\"eTag\":\"0x8DAC6BEA8F078D7\",\"lastModified\":\"2022-11-15T04:05:40.6764247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask680\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask685\",\"eTag\":\"0x8DAC6BEA8F051C4\",\"lastModified\":\"2022-11-15T04:05:40.6754244Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask685\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask689\",\"eTag\":\"0x8DAC6BEA8F078D7\",\"lastModified\":\"2022-11-15T04:05:40.6764247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask689\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask687\",\"eTag\":\"0x8DAC6BEA8F078D7\",\"lastModified\":\"2022-11-15T04:05:40.6764247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask687\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask683\",\"eTag\":\"0x8DAC6BEA8F078D7\",\"lastModified\":\"2022-11-15T04:05:40.6764247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask683\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask688\",\"eTag\":\"0x8DAC6BEA8F078D7\",\"lastModified\":\"2022-11-15T04:05:40.6764247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask688\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask690\",\"eTag\":\"0x8DAC6BEA8F078D7\",\"lastModified\":\"2022-11-15T04:05:40.6764247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask690\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask678\",\"eTag\":\"0x8DAC6BEA8F051C4\",\"lastModified\":\"2022-11-15T04:05:40.6754244Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask678\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask691\",\"eTag\":\"0x8DAC6BEA8F078D7\",\"lastModified\":\"2022-11-15T04:05:40.6764247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask691\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask684\",\"eTag\":\"0x8DAC6BEA8F051C4\",\"lastModified\":\"2022-11-15T04:05:40.6754244Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask684\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask681\",\"eTag\":\"0x8DAC6BEA8F051C4\",\"lastModified\":\"2022-11-15T04:05:40.6754244Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask681\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask676\",\"eTag\":\"0x8DAC6BEA8F02AB1\",\"lastModified\":\"2022-11-15T04:05:40.6744241Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask676\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask672\",\"eTag\":\"0x8DAC6BEA8F003A9\",\"lastModified\":\"2022-11-15T04:05:40.6734249Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask672\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask673\",\"eTag\":\"0x8DAC6BEA8F003A9\",\"lastModified\":\"2022-11-15T04:05:40.6734249Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask673\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask697\",\"eTag\":\"0x8DAC6BEA8F58231\",\"lastModified\":\"2022-11-15T04:05:40.7094321Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask697\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask699\",\"eTag\":\"0x8DAC6BEA8F5A8FF\",\"lastModified\":\"2022-11-15T04:05:40.7104255Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask699\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask692\",\"eTag\":\"0x8DAC6BEA8F58231\",\"lastModified\":\"2022-11-15T04:05:40.7094321Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask692\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask695\",\"eTag\":\"0x8DAC6BEA8F58231\",\"lastModified\":\"2022-11-15T04:05:40.7094321Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask695\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask694\",\"eTag\":\"0x8DAC6BEA8F58231\",\"lastModified\":\"2022-11-15T04:05:40.7094321Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask694\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask698\",\"eTag\":\"0x8DAC6BEA8F58231\",\"lastModified\":\"2022-11-15T04:05:40.7094321Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask698\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask696\",\"eTag\":\"0x8DAC6BEA8F58231\",\"lastModified\":\"2022-11-15T04:05:40.7094321Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask696\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask686\",\"eTag\":\"0x8DAC6BEA8F5D04D\",\"lastModified\":\"2022-11-15T04:05:40.7114317Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask686\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask693\",\"eTag\":\"0x8DAC6BEA8F58231\",\"lastModified\":\"2022-11-15T04:05:40.7094321Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask693\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask651\",\"eTag\":\"0x8DB5B4B7C74514F\",\"lastModified\":\"2023-05-23T05:06:37.1729743Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask651\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask653\",\"eTag\":\"0x8DB5B4B7C749F7D\",\"lastModified\":\"2023-05-23T05:06:37.1749757Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask653\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask650\",\"eTag\":\"0x8DB5B4B7C74514F\",\"lastModified\":\"2023-05-23T05:06:37.1729743Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask650\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask652\",\"eTag\":\"0x8DB5B4B7C747868\",\"lastModified\":\"2023-05-23T05:06:37.1739752Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask652\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask654\",\"eTag\":\"0x8DB5B4B7C74ED8C\",\"lastModified\":\"2023-05-23T05:06:37.176974Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask654\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask655\",\"eTag\":\"0x8DB5B4B7C75149B\",\"lastModified\":\"2023-05-23T05:06:37.1779739Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask655\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask656\",\"eTag\":\"0x8DB5B4B7C75149B\",\"lastModified\":\"2023-05-23T05:06:37.1779739Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask656\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask657\",\"eTag\":\"0x8DB5B4B7C75149B\",\"lastModified\":\"2023-05-23T05:06:37.1779739Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask657\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask667\",\"eTag\":\"0x8DB5B4B7C7737A1\",\"lastModified\":\"2023-05-23T05:06:37.1919777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask667\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask658\",\"eTag\":\"0x8DB5B4B7C76E973\",\"lastModified\":\"2023-05-23T05:06:37.1899763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask658\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask659\",\"eTag\":\"0x8DB5B4B7C76C25E\",\"lastModified\":\"2023-05-23T05:06:37.1889758Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask659\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask683\",\"eTag\":\"0x8DB5B4B7C7737A1\",\"lastModified\":\"2023-05-23T05:06:37.1919777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask683\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask687\",\"eTag\":\"0x8DB5B4B7C7ABA01\",\"lastModified\":\"2023-05-23T05:06:37.2149761Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask687\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask693\",\"eTag\":\"0x8DB5B4B7C7A9305\",\"lastModified\":\"2023-05-23T05:06:37.2139781Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask693\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask661\",\"eTag\":\"0x8DB5B4B7C77ACC9\",\"lastModified\":\"2023-05-23T05:06:37.1949769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask661\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask685\",\"eTag\":\"0x8DB5B4B7C7ABA01\",\"lastModified\":\"2023-05-23T05:06:37.2149761Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask685\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask663\",\"eTag\":\"0x8DB5B4B7C775EA6\",\"lastModified\":\"2023-05-23T05:06:37.1929766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask663\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask680\",\"eTag\":\"0x8DB5B4B7C7ABA01\",\"lastModified\":\"2023-05-23T05:06:37.2149761Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask680\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask688\",\"eTag\":\"0x8DB5B4B7C7A9305\",\"lastModified\":\"2023-05-23T05:06:37.2139781Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask688\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask660\",\"eTag\":\"0x8DB5B4B7C77ACC9\",\"lastModified\":\"2023-05-23T05:06:37.1949769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask660\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask686\",\"eTag\":\"0x8DB5B4B7C7AE121\",\"lastModified\":\"2023-05-23T05:06:37.2159777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask686\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask665\",\"eTag\":\"0x8DB5B4B7C7B0826\",\"lastModified\":\"2023-05-23T05:06:37.2169766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask665\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask681\",\"eTag\":\"0x8DB5B4B7C7CB5D9\",\"lastModified\":\"2023-05-23T05:06:37.2279769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask681\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask682\",\"eTag\":\"0x8DB5B4B7C7CB5D9\",\"lastModified\":\"2023-05-23T05:06:37.2279769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask682\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask666\",\"eTag\":\"0x8DB5B4B7C7CB5D9\",\"lastModified\":\"2023-05-23T05:06:37.2279769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask666\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask690\",\"eTag\":\"0x8DB5B4B7C7CB5D9\",\"lastModified\":\"2023-05-23T05:06:37.2279769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask690\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask679\",\"eTag\":\"0x8DB5B4B7C7D0409\",\"lastModified\":\"2023-05-23T05:06:37.2299785Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask679\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask674\",\"eTag\":\"0x8DB5B4B7C7D2B1E\",\"lastModified\":\"2023-05-23T05:06:37.230979Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask674\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask670\",\"eTag\":\"0x8DB5B4B7C7D2B1E\",\"lastModified\":\"2023-05-23T05:06:37.230979Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask670\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask676\",\"eTag\":\"0x8DB5B4B7C7D2B1E\",\"lastModified\":\"2023-05-23T05:06:37.230979Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask676\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask697\",\"eTag\":\"0x8DB5B4B7C7F9C14\",\"lastModified\":\"2023-05-23T05:06:37.246978Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask697\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask672\",\"eTag\":\"0x8DB5B4B7C7CDCFC\",\"lastModified\":\"2023-05-23T05:06:37.2289788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask672\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask675\",\"eTag\":\"0x8DB5B4B7C7D2B1E\",\"lastModified\":\"2023-05-23T05:06:37.230979Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask675\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask664\",\"eTag\":\"0x8DB5B4B7C7EFFCB\",\"lastModified\":\"2023-05-23T05:06:37.2429771Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask664\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask677\",\"eTag\":\"0x8DB5B4B7C7D520C\",\"lastModified\":\"2023-05-23T05:06:37.2319756Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask677\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask671\",\"eTag\":\"0x8DB5B4B7C7ED8BC\",\"lastModified\":\"2023-05-23T05:06:37.2419772Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask671\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask684\",\"eTag\":\"0x8DB5B4B7C7EFFCB\",\"lastModified\":\"2023-05-23T05:06:37.2429771Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask684\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask678\",\"eTag\":\"0x8DB5B4B7C7F26E2\",\"lastModified\":\"2023-05-23T05:06:37.2439778Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask678\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask662\",\"eTag\":\"0x8DB5B4B7C7D0409\",\"lastModified\":\"2023-05-23T05:06:37.2299785Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask662\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask669\",\"eTag\":\"0x8DB5B4B7C80AD67\",\"lastModified\":\"2023-05-23T05:06:37.2539751Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask669\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask668\",\"eTag\":\"0x8DB5B4B7C80AD67\",\"lastModified\":\"2023-05-23T05:06:37.2539751Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask668\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask698\",\"eTag\":\"0x8DB5B4B7C80FBA7\",\"lastModified\":\"2023-05-23T05:06:37.2559783Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask698\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask695\",\"eTag\":\"0x8DB5B4B7C7F4DF2\",\"lastModified\":\"2023-05-23T05:06:37.2449778Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask695\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask699\",\"eTag\":\"0x8DB5B4B7C7F4DF2\",\"lastModified\":\"2023-05-23T05:06:37.2449778Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask699\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask694\",\"eTag\":\"0x8DB5B4B7C80AD67\",\"lastModified\":\"2023-05-23T05:06:37.2539751Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask694\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask692\",\"eTag\":\"0x8DB5B4B7C80D4AC\",\"lastModified\":\"2023-05-23T05:06:37.2549804Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask692\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask673\",\"eTag\":\"0x8DB5B4B7C7CDCFC\",\"lastModified\":\"2023-05-23T05:06:37.2289788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask673\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask691\",\"eTag\":\"0x8DB5B4B7C80AD67\",\"lastModified\":\"2023-05-23T05:06:37.2539751Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask691\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask696\",\"eTag\":\"0x8DB5B4B7C7F4DF2\",\"lastModified\":\"2023-05-23T05:06:37.2449778Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask696\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask689\",\"eTag\":\"0x8DB5B4B7C7F750D\",\"lastModified\":\"2023-05-23T05:06:37.2459789Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask689\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "3430644f-8287-4422-a0c2-633dfc97c75e", + "client-request-id" : "84ef41c9-8f0c-4d5a-a0b5-7a173de5f752", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "e60a06b4-e4d6-46ef-b086-339ebc61381a", + "request-id" : "dade43d5-0d88-4193-b9e1-d1894955bfa3", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask755\",\"eTag\":\"0x8DAC6BEA8F7C91D\",\"lastModified\":\"2022-11-15T04:05:40.7243549Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask755\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask754\",\"eTag\":\"0x8DAC6BEA8F6B795\",\"lastModified\":\"2022-11-15T04:05:40.7173525Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask754\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask756\",\"eTag\":\"0x8DAC6BEA8F7A1F0\",\"lastModified\":\"2022-11-15T04:05:40.723352Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask756\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask752\",\"eTag\":\"0x8DAC6BEA8F7C91D\",\"lastModified\":\"2022-11-15T04:05:40.7243549Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask752\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask751\",\"eTag\":\"0x8DAC6BEA8F6B795\",\"lastModified\":\"2022-11-15T04:05:40.7173525Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask751\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask757\",\"eTag\":\"0x8DAC6BEA8F7F037\",\"lastModified\":\"2022-11-15T04:05:40.7253559Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask757\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask758\",\"eTag\":\"0x8DAC6BEA8F7F037\",\"lastModified\":\"2022-11-15T04:05:40.7253559Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask758\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask750\",\"eTag\":\"0x8DAC6BEA8F7C91D\",\"lastModified\":\"2022-11-15T04:05:40.7243549Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask750\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask765\",\"eTag\":\"0x8DAC6BEA8F83E43\",\"lastModified\":\"2022-11-15T04:05:40.7273539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask765\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask760\",\"eTag\":\"0x8DAC6BEA8F81733\",\"lastModified\":\"2022-11-15T04:05:40.7263539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask760\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask766\",\"eTag\":\"0x8DAC6BEA8F83E43\",\"lastModified\":\"2022-11-15T04:05:40.7273539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask766\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask768\",\"eTag\":\"0x8DAC6BEA8F81733\",\"lastModified\":\"2022-11-15T04:05:40.7263539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask768\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask763\",\"eTag\":\"0x8DAC6BEA8F81733\",\"lastModified\":\"2022-11-15T04:05:40.7263539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask763\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask769\",\"eTag\":\"0x8DAC6BEA8F83E43\",\"lastModified\":\"2022-11-15T04:05:40.7273539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask769\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask753\",\"eTag\":\"0x8DAC6BEA8F6DEB0\",\"lastModified\":\"2022-11-15T04:05:40.7183536Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask753\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask767\",\"eTag\":\"0x8DAC6BEA8F83E43\",\"lastModified\":\"2022-11-15T04:05:40.7273539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask767\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask771\",\"eTag\":\"0x8DAC6BEA8F8655D\",\"lastModified\":\"2022-11-15T04:05:40.7283549Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask771\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask772\",\"eTag\":\"0x8DAC6BEA8F8B382\",\"lastModified\":\"2022-11-15T04:05:40.7303554Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask772\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask770\",\"eTag\":\"0x8DAC6BEA8F88C68\",\"lastModified\":\"2022-11-15T04:05:40.7293544Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask770\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask773\",\"eTag\":\"0x8DAC6BEA8F94FBA\",\"lastModified\":\"2022-11-15T04:05:40.7343546Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask773\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask762\",\"eTag\":\"0x8DAC6BEA8F81733\",\"lastModified\":\"2022-11-15T04:05:40.7263539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask762\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask764\",\"eTag\":\"0x8DAC6BEA8F81733\",\"lastModified\":\"2022-11-15T04:05:40.7263539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask764\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask761\",\"eTag\":\"0x8DAC6BEA8F81733\",\"lastModified\":\"2022-11-15T04:05:40.7263539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask761\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask759\",\"eTag\":\"0x8DAC6BEA8F81733\",\"lastModified\":\"2022-11-15T04:05:40.7263539Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask759\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask775\",\"eTag\":\"0x8DAC6BEA90A18A6\",\"lastModified\":\"2022-11-15T04:05:40.8443558Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask775\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask774\",\"eTag\":\"0x8DAC6BEA90A18A6\",\"lastModified\":\"2022-11-15T04:05:40.8443558Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask774\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask780\",\"eTag\":\"0x8DAC6BEA90A66CC\",\"lastModified\":\"2022-11-15T04:05:40.8463564Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask780\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask776\",\"eTag\":\"0x8DAC6BEA90A18A6\",\"lastModified\":\"2022-11-15T04:05:40.8443558Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask776\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask781\",\"eTag\":\"0x8DAC6BEA90AB4D7\",\"lastModified\":\"2022-11-15T04:05:40.8483543Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask781\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask785\",\"eTag\":\"0x8DAC6BEA90AB4D7\",\"lastModified\":\"2022-11-15T04:05:40.8483543Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask785\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask786\",\"eTag\":\"0x8DAC6BEA90ADBFC\",\"lastModified\":\"2022-11-15T04:05:40.8493564Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask786\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask789\",\"eTag\":\"0x8DAC6BEA90ADBFC\",\"lastModified\":\"2022-11-15T04:05:40.8493564Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask789\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask784\",\"eTag\":\"0x8DAC6BEA90ADBFC\",\"lastModified\":\"2022-11-15T04:05:40.8493564Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask784\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask787\",\"eTag\":\"0x8DAC6BEA90ADBFC\",\"lastModified\":\"2022-11-15T04:05:40.8493564Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask787\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask790\",\"eTag\":\"0x8DAC6BEA90B2A1B\",\"lastModified\":\"2022-11-15T04:05:40.8513563Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask790\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask779\",\"eTag\":\"0x8DAC6BEA90AB4D7\",\"lastModified\":\"2022-11-15T04:05:40.8483543Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask779\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask782\",\"eTag\":\"0x8DAC6BEA90B032C\",\"lastModified\":\"2022-11-15T04:05:40.8503596Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask782\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask795\",\"eTag\":\"0x8DAC6BEA90B2A1B\",\"lastModified\":\"2022-11-15T04:05:40.8513563Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask795\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask788\",\"eTag\":\"0x8DAC6BEA90B032C\",\"lastModified\":\"2022-11-15T04:05:40.8503596Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask788\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask794\",\"eTag\":\"0x8DAC6BEA90B2A1B\",\"lastModified\":\"2022-11-15T04:05:40.8513563Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask794\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask777\",\"eTag\":\"0x8DAC6BEA90B512B\",\"lastModified\":\"2022-11-15T04:05:40.8523563Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask777\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask792\",\"eTag\":\"0x8DAC6BEA90B512B\",\"lastModified\":\"2022-11-15T04:05:40.8523563Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask792\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask798\",\"eTag\":\"0x8DAC6BEA90B2A1B\",\"lastModified\":\"2022-11-15T04:05:40.8513563Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask798\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask793\",\"eTag\":\"0x8DAC6BEA90B7837\",\"lastModified\":\"2022-11-15T04:05:40.8533559Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask793\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask797\",\"eTag\":\"0x8DAC6BEA90B7837\",\"lastModified\":\"2022-11-15T04:05:40.8533559Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask797\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask799\",\"eTag\":\"0x8DAC6BEA90B512B\",\"lastModified\":\"2022-11-15T04:05:40.8523563Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask799\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask783\",\"eTag\":\"0x8DAC6BEA90B7837\",\"lastModified\":\"2022-11-15T04:05:40.8533559Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask783\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask791\",\"eTag\":\"0x8DAC6BEA90B9F4D\",\"lastModified\":\"2022-11-15T04:05:40.8543565Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask791\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask778\",\"eTag\":\"0x8DAC6BEA90ADBFC\",\"lastModified\":\"2022-11-15T04:05:40.8493564Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask778\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask796\",\"eTag\":\"0x8DAC6BEA90B032C\",\"lastModified\":\"2022-11-15T04:05:40.8503596Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask796\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask550\",\"eTag\":\"0x8DB5B4B7C75149B\",\"lastModified\":\"2023-05-23T05:06:37.1779739Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask550\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask551\",\"eTag\":\"0x8DB5B4B7C75149B\",\"lastModified\":\"2023-05-23T05:06:37.1779739Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask551\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask576\",\"eTag\":\"0x8DB5B4B7C7737A1\",\"lastModified\":\"2023-05-23T05:06:37.1919777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask576\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask552\",\"eTag\":\"0x8DB5B4B7C771089\",\"lastModified\":\"2023-05-23T05:06:37.1909769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask552\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask554\",\"eTag\":\"0x8DB5B4B7C771089\",\"lastModified\":\"2023-05-23T05:06:37.1909769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask554\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask575\",\"eTag\":\"0x8DB5B4B7C7A9305\",\"lastModified\":\"2023-05-23T05:06:37.2139781Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask575\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask583\",\"eTag\":\"0x8DB5B4B7C7737A1\",\"lastModified\":\"2023-05-23T05:06:37.1919777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask583\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask557\",\"eTag\":\"0x8DB5B4B7C775EA6\",\"lastModified\":\"2023-05-23T05:06:37.1929766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask557\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask587\",\"eTag\":\"0x8DB5B4B7C77ACC9\",\"lastModified\":\"2023-05-23T05:06:37.1949769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask587\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask556\",\"eTag\":\"0x8DB5B4B7C775EA6\",\"lastModified\":\"2023-05-23T05:06:37.1929766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask556\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask573\",\"eTag\":\"0x8DB5B4B7C7ABA01\",\"lastModified\":\"2023-05-23T05:06:37.2149761Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask573\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask553\",\"eTag\":\"0x8DB5B4B7C7785B3\",\"lastModified\":\"2023-05-23T05:06:37.1939763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask553\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask555\",\"eTag\":\"0x8DB5B4B7C775EA6\",\"lastModified\":\"2023-05-23T05:06:37.1929766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask555\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask572\",\"eTag\":\"0x8DB5B4B7C7A6BE0\",\"lastModified\":\"2023-05-23T05:06:37.212976Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask572\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask579\",\"eTag\":\"0x8DB5B4B7C7B0826\",\"lastModified\":\"2023-05-23T05:06:37.2169766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask579\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask568\",\"eTag\":\"0x8DB5B4B7C7B2F43\",\"lastModified\":\"2023-05-23T05:06:37.2179779Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask568\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask577\",\"eTag\":\"0x8DB5B4B7C7EB1CA\",\"lastModified\":\"2023-05-23T05:06:37.2409802Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask577\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask588\",\"eTag\":\"0x8DB5B4B7C7CDCFC\",\"lastModified\":\"2023-05-23T05:06:37.2289788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask588\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask558\",\"eTag\":\"0x8DB5B4B7C7CDCFC\",\"lastModified\":\"2023-05-23T05:06:37.2289788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask558\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask594\",\"eTag\":\"0x8DB5B4B7C7F26E2\",\"lastModified\":\"2023-05-23T05:06:37.2439778Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask594\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask567\",\"eTag\":\"0x8DB5B4B7C7ED8BC\",\"lastModified\":\"2023-05-23T05:06:37.2419772Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask567\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask563\",\"eTag\":\"0x8DB5B4B7C7CDCFC\",\"lastModified\":\"2023-05-23T05:06:37.2289788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask563\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask591\",\"eTag\":\"0x8DB5B4B7C7C8EBD\",\"lastModified\":\"2023-05-23T05:06:37.2269757Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask591\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask578\",\"eTag\":\"0x8DB5B4B7C7D520C\",\"lastModified\":\"2023-05-23T05:06:37.2319756Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask578\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask574\",\"eTag\":\"0x8DB5B4B7C7EB1CA\",\"lastModified\":\"2023-05-23T05:06:37.2409802Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask574\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask559\",\"eTag\":\"0x8DB5B4B7C7EFFCB\",\"lastModified\":\"2023-05-23T05:06:37.2429771Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask559\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask561\",\"eTag\":\"0x8DB5B4B7C7F26E2\",\"lastModified\":\"2023-05-23T05:06:37.2439778Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask561\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask582\",\"eTag\":\"0x8DB5B4B7C7F26E2\",\"lastModified\":\"2023-05-23T05:06:37.2439778Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask582\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask571\",\"eTag\":\"0x8DB5B4B7C7D2B1E\",\"lastModified\":\"2023-05-23T05:06:37.230979Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask571\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask593\",\"eTag\":\"0x8DB5B4B7C80FBA7\",\"lastModified\":\"2023-05-23T05:06:37.2559783Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask593\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask590\",\"eTag\":\"0x8DB5B4B7C80AD67\",\"lastModified\":\"2023-05-23T05:06:37.2539751Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask590\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask596\",\"eTag\":\"0x8DB5B4B7C80D4AC\",\"lastModified\":\"2023-05-23T05:06:37.2549804Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask596\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask595\",\"eTag\":\"0x8DB5B4B7C80D4AC\",\"lastModified\":\"2023-05-23T05:06:37.2549804Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask595\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask581\",\"eTag\":\"0x8DB5B4B7C7F750D\",\"lastModified\":\"2023-05-23T05:06:37.2459789Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask581\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask565\",\"eTag\":\"0x8DB5B4B7C7CDCFC\",\"lastModified\":\"2023-05-23T05:06:37.2289788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask565\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask599\",\"eTag\":\"0x8DB5B4B7C8122BC\",\"lastModified\":\"2023-05-23T05:06:37.2569788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask599\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask566\",\"eTag\":\"0x8DB5B4B7C7E8A90\",\"lastModified\":\"2023-05-23T05:06:37.239976Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask566\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask598\",\"eTag\":\"0x8DB5B4B7C8122BC\",\"lastModified\":\"2023-05-23T05:06:37.2569788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask598\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask562\",\"eTag\":\"0x8DB5B4B7C7D2B1E\",\"lastModified\":\"2023-05-23T05:06:37.230979Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask562\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask585\",\"eTag\":\"0x8DB5B4B7C80FBA7\",\"lastModified\":\"2023-05-23T05:06:37.2559783Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask585\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask597\",\"eTag\":\"0x8DB5B4B7C8122BC\",\"lastModified\":\"2023-05-23T05:06:37.2569788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask597\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask589\",\"eTag\":\"0x8DB5B4B7C7F750D\",\"lastModified\":\"2023-05-23T05:06:37.2459789Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask589\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask586\",\"eTag\":\"0x8DB5B4B7C80FBA7\",\"lastModified\":\"2023-05-23T05:06:37.2559783Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask586\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask560\",\"eTag\":\"0x8DB5B4B7C7EB1CA\",\"lastModified\":\"2023-05-23T05:06:37.2409802Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask560\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask564\",\"eTag\":\"0x8DB5B4B7C7F26E2\",\"lastModified\":\"2023-05-23T05:06:37.2439778Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask564\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask569\",\"eTag\":\"0x8DB5B4B7C7D520C\",\"lastModified\":\"2023-05-23T05:06:37.2319756Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask569\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask570\",\"eTag\":\"0x8DB5B4B7C80AD67\",\"lastModified\":\"2023-05-23T05:06:37.2539751Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask570\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask584\",\"eTag\":\"0x8DB5B4B7C7F750D\",\"lastModified\":\"2023-05-23T05:06:37.2459789Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask584\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask592\",\"eTag\":\"0x8DB5B4B7C80FBA7\",\"lastModified\":\"2023-05-23T05:06:37.2559783Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask592\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask580\",\"eTag\":\"0x8DB5B4B7C7D2B1E\",\"lastModified\":\"2023-05-23T05:06:37.230979Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask580\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:39 GMT", + "date" : "Tue, 23 May 2023 05:06:36 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "9b3335e1-a170-4568-94eb-5e117d5280af", + "client-request-id" : "220e7fc2-a761-425d-9d9d-a109708177cc", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "d6d8ecb0-aec2-4888-9cc0-e3da08db0245", + "request-id" : "79284dbe-eb9b-4e85-be54-728365f72774", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask701\",\"eTag\":\"0x8DAC6BEA8F61D1C\",\"lastModified\":\"2022-11-15T04:05:40.713398Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask701\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask702\",\"eTag\":\"0x8DAC6BEA8F61D1C\",\"lastModified\":\"2022-11-15T04:05:40.713398Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask702\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask705\",\"eTag\":\"0x8DAC6BEA8F6443C\",\"lastModified\":\"2022-11-15T04:05:40.7143996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask705\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask704\",\"eTag\":\"0x8DAC6BEA8F6443C\",\"lastModified\":\"2022-11-15T04:05:40.7143996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask704\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask706\",\"eTag\":\"0x8DAC6BEA8F69268\",\"lastModified\":\"2022-11-15T04:05:40.7164008Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask706\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask707\",\"eTag\":\"0x8DAC6BEA8F69268\",\"lastModified\":\"2022-11-15T04:05:40.7164008Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask707\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask703\",\"eTag\":\"0x8DAC6BEA8F66B37\",\"lastModified\":\"2022-11-15T04:05:40.7153975Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask703\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask715\",\"eTag\":\"0x8DAC6BEA8F72E93\",\"lastModified\":\"2022-11-15T04:05:40.7203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask715\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask710\",\"eTag\":\"0x8DAC6BEA8F6E086\",\"lastModified\":\"2022-11-15T04:05:40.7184006Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask710\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask712\",\"eTag\":\"0x8DAC6BEA8F707A0\",\"lastModified\":\"2022-11-15T04:05:40.7194016Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask712\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask711\",\"eTag\":\"0x8DAC6BEA8F6E086\",\"lastModified\":\"2022-11-15T04:05:40.7184006Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask711\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask713\",\"eTag\":\"0x8DAC6BEA8F72E93\",\"lastModified\":\"2022-11-15T04:05:40.7203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask713\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask717\",\"eTag\":\"0x8DAC6BEA8F72E93\",\"lastModified\":\"2022-11-15T04:05:40.7203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask717\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask721\",\"eTag\":\"0x8DAC6BEA8F755AE\",\"lastModified\":\"2022-11-15T04:05:40.7213998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask721\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask716\",\"eTag\":\"0x8DAC6BEA8F72E93\",\"lastModified\":\"2022-11-15T04:05:40.7203987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask716\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask718\",\"eTag\":\"0x8DAC6BEA8F755AE\",\"lastModified\":\"2022-11-15T04:05:40.7213998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask718\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask723\",\"eTag\":\"0x8DAC6BEA8F77CBE\",\"lastModified\":\"2022-11-15T04:05:40.7223998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask723\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask724\",\"eTag\":\"0x8DAC6BEA8F7A3CE\",\"lastModified\":\"2022-11-15T04:05:40.7233998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask724\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask725\",\"eTag\":\"0x8DAC6BEA8F7A3CE\",\"lastModified\":\"2022-11-15T04:05:40.7233998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask725\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask720\",\"eTag\":\"0x8DAC6BEA8F8DC46\",\"lastModified\":\"2022-11-15T04:05:40.731399Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask720\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask726\",\"eTag\":\"0x8DAC6BEA8F7CAE4\",\"lastModified\":\"2022-11-15T04:05:40.7244004Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask726\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask735\",\"eTag\":\"0x8DAC6BEA8F97883\",\"lastModified\":\"2022-11-15T04:05:40.7353987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask735\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask734\",\"eTag\":\"0x8DAC6BEA8F9517F\",\"lastModified\":\"2022-11-15T04:05:40.7343999Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask734\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask737\",\"eTag\":\"0x8DAC6BEA8F97883\",\"lastModified\":\"2022-11-15T04:05:40.7353987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask737\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask728\",\"eTag\":\"0x8DAC6BEA8F9517F\",\"lastModified\":\"2022-11-15T04:05:40.7343999Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask728\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask736\",\"eTag\":\"0x8DAC6BEA8F97883\",\"lastModified\":\"2022-11-15T04:05:40.7353987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask736\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask700\",\"eTag\":\"0x8DAC6BEA8F9517F\",\"lastModified\":\"2022-11-15T04:05:40.7343999Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask700\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask729\",\"eTag\":\"0x8DAC6BEA8F8DC46\",\"lastModified\":\"2022-11-15T04:05:40.731399Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask729\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask730\",\"eTag\":\"0x8DAC6BEA8F8DC46\",\"lastModified\":\"2022-11-15T04:05:40.731399Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask730\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask739\",\"eTag\":\"0x8DAC6BEA8F99F9E\",\"lastModified\":\"2022-11-15T04:05:40.7363998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask739\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask714\",\"eTag\":\"0x8DAC6BEA8F707A0\",\"lastModified\":\"2022-11-15T04:05:40.7194016Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask714\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask738\",\"eTag\":\"0x8DAC6BEA8F99F9E\",\"lastModified\":\"2022-11-15T04:05:40.7363998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask738\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask733\",\"eTag\":\"0x8DAC6BEA8F97883\",\"lastModified\":\"2022-11-15T04:05:40.7353987Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask733\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask727\",\"eTag\":\"0x8DAC6BEA8F8DC46\",\"lastModified\":\"2022-11-15T04:05:40.731399Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask727\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask708\",\"eTag\":\"0x8DAC6BEA8F6E086\",\"lastModified\":\"2022-11-15T04:05:40.7184006Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask708\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask709\",\"eTag\":\"0x8DAC6BEA8F6B96F\",\"lastModified\":\"2022-11-15T04:05:40.7173999Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask709\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask740\",\"eTag\":\"0x8DAC6BEA8F99F9E\",\"lastModified\":\"2022-11-15T04:05:40.7363998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask740\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask742\",\"eTag\":\"0x8DAC6BEA8F99F9E\",\"lastModified\":\"2022-11-15T04:05:40.7363998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask742\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask719\",\"eTag\":\"0x8DAC6BEA8F7A3CE\",\"lastModified\":\"2022-11-15T04:05:40.7233998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask719\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask731\",\"eTag\":\"0x8DAC6BEA8F9517F\",\"lastModified\":\"2022-11-15T04:05:40.7343999Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask731\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask732\",\"eTag\":\"0x8DAC6BEA8F90363\",\"lastModified\":\"2022-11-15T04:05:40.7324003Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask732\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask722\",\"eTag\":\"0x8DAC6BEA8F77CBE\",\"lastModified\":\"2022-11-15T04:05:40.7223998Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask722\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask749\",\"eTag\":\"0x8DAC6BEA90B2BE0\",\"lastModified\":\"2022-11-15T04:05:40.8514016Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask749\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask745\",\"eTag\":\"0x8DAC6BEA90B2BE0\",\"lastModified\":\"2022-11-15T04:05:40.8514016Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask745\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask748\",\"eTag\":\"0x8DAC6BEA90B04F3\",\"lastModified\":\"2022-11-15T04:05:40.8504051Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask748\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask741\",\"eTag\":\"0x8DAC6BEA90B2BE0\",\"lastModified\":\"2022-11-15T04:05:40.8514016Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask741\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask746\",\"eTag\":\"0x8DAC6BEA90B52F1\",\"lastModified\":\"2022-11-15T04:05:40.8524017Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask746\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask747\",\"eTag\":\"0x8DAC6BEA90B2BE0\",\"lastModified\":\"2022-11-15T04:05:40.8514016Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask747\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask743\",\"eTag\":\"0x8DAC6BEA90B52F1\",\"lastModified\":\"2022-11-15T04:05:40.8524017Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask743\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask744\",\"eTag\":\"0x8DAC6BEA90B2BE0\",\"lastModified\":\"2022-11-15T04:05:40.8514016Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask744\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask501\",\"eTag\":\"0x8DB5B4B7C747868\",\"lastModified\":\"2023-05-23T05:06:37.1739752Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask501\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask500\",\"eTag\":\"0x8DB5B4B7C74514F\",\"lastModified\":\"2023-05-23T05:06:37.1729743Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask500\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask502\",\"eTag\":\"0x8DB5B4B7C747868\",\"lastModified\":\"2023-05-23T05:06:37.1739752Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask502\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask504\",\"eTag\":\"0x8DB5B4B7C74ED8C\",\"lastModified\":\"2023-05-23T05:06:37.176974Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask504\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask503\",\"eTag\":\"0x8DB5B4B7C74ED8C\",\"lastModified\":\"2023-05-23T05:06:37.176974Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask503\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask505\",\"eTag\":\"0x8DB5B4B7C769B4A\",\"lastModified\":\"2023-05-23T05:06:37.1879754Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask505\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask514\",\"eTag\":\"0x8DB5B4B7C76E973\",\"lastModified\":\"2023-05-23T05:06:37.1899763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask514\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask509\",\"eTag\":\"0x8DB5B4B7C76E973\",\"lastModified\":\"2023-05-23T05:06:37.1899763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask509\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask527\",\"eTag\":\"0x8DB5B4B7C7737A1\",\"lastModified\":\"2023-05-23T05:06:37.1919777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask527\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask508\",\"eTag\":\"0x8DB5B4B7C76E973\",\"lastModified\":\"2023-05-23T05:06:37.1899763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask508\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask510\",\"eTag\":\"0x8DB5B4B7C7785B3\",\"lastModified\":\"2023-05-23T05:06:37.1939763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask510\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask506\",\"eTag\":\"0x8DB5B4B7C7785B3\",\"lastModified\":\"2023-05-23T05:06:37.1939763Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask506\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask520\",\"eTag\":\"0x8DB5B4B7C7A9305\",\"lastModified\":\"2023-05-23T05:06:37.2139781Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask520\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask536\",\"eTag\":\"0x8DB5B4B7C7ABA01\",\"lastModified\":\"2023-05-23T05:06:37.2149761Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask536\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask516\",\"eTag\":\"0x8DB5B4B7C77ACC9\",\"lastModified\":\"2023-05-23T05:06:37.1949769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask516\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask521\",\"eTag\":\"0x8DB5B4B7C7ABA01\",\"lastModified\":\"2023-05-23T05:06:37.2149761Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask521\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask517\",\"eTag\":\"0x8DB5B4B7C77ACC9\",\"lastModified\":\"2023-05-23T05:06:37.1949769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask517\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask507\",\"eTag\":\"0x8DB5B4B7C7737A1\",\"lastModified\":\"2023-05-23T05:06:37.1919777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask507\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask523\",\"eTag\":\"0x8DB5B4B7C7B0826\",\"lastModified\":\"2023-05-23T05:06:37.2169766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask523\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask528\",\"eTag\":\"0x8DB5B4B7C7B0826\",\"lastModified\":\"2023-05-23T05:06:37.2169766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask528\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask513\",\"eTag\":\"0x8DB5B4B7C7AE121\",\"lastModified\":\"2023-05-23T05:06:37.2159777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask513\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask534\",\"eTag\":\"0x8DB5B4B7C7AE121\",\"lastModified\":\"2023-05-23T05:06:37.2159777Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask534\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask537\",\"eTag\":\"0x8DB5B4B7C7B0826\",\"lastModified\":\"2023-05-23T05:06:37.2169766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask537\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask530\",\"eTag\":\"0x8DB5B4B7C7B0826\",\"lastModified\":\"2023-05-23T05:06:37.2169766Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask530\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask515\",\"eTag\":\"0x8DB5B4B7C7B2F43\",\"lastModified\":\"2023-05-23T05:06:37.2179779Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask515\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask535\",\"eTag\":\"0x8DB5B4B7C7A9305\",\"lastModified\":\"2023-05-23T05:06:37.2139781Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask535\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask531\",\"eTag\":\"0x8DB5B4B7C7D0409\",\"lastModified\":\"2023-05-23T05:06:37.2299785Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask531\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask518\",\"eTag\":\"0x8DB5B4B7C7C8EBD\",\"lastModified\":\"2023-05-23T05:06:37.2269757Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask518\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask529\",\"eTag\":\"0x8DB5B4B7C7CB5D9\",\"lastModified\":\"2023-05-23T05:06:37.2279769Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask529\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask524\",\"eTag\":\"0x8DB5B4B7C7CDCFC\",\"lastModified\":\"2023-05-23T05:06:37.2289788Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask524\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask512\",\"eTag\":\"0x8DB5B4B7C7E8A90\",\"lastModified\":\"2023-05-23T05:06:37.239976Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask512\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask532\",\"eTag\":\"0x8DB5B4B7C7D520C\",\"lastModified\":\"2023-05-23T05:06:37.2319756Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask532\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask539\",\"eTag\":\"0x8DB5B4B7C7D520C\",\"lastModified\":\"2023-05-23T05:06:37.2319756Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask539\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask547\",\"eTag\":\"0x8DB5B4B7C80FBA7\",\"lastModified\":\"2023-05-23T05:06:37.2559783Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask547\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask522\",\"eTag\":\"0x8DB5B4B7C7D2B1E\",\"lastModified\":\"2023-05-23T05:06:37.230979Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask522\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask526\",\"eTag\":\"0x8DB5B4B7C7D520C\",\"lastModified\":\"2023-05-23T05:06:37.2319756Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask526\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask541\",\"eTag\":\"0x8DB5B4B7C7ED8BC\",\"lastModified\":\"2023-05-23T05:06:37.2419772Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask541\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask538\",\"eTag\":\"0x8DB5B4B7C7EFFCB\",\"lastModified\":\"2023-05-23T05:06:37.2429771Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask538\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask525\",\"eTag\":\"0x8DB5B4B7C7E8A90\",\"lastModified\":\"2023-05-23T05:06:37.239976Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask525\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask519\",\"eTag\":\"0x8DB5B4B7C7F26E2\",\"lastModified\":\"2023-05-23T05:06:37.2439778Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask519\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask543\",\"eTag\":\"0x8DB5B4B7C7EB1CA\",\"lastModified\":\"2023-05-23T05:06:37.2409802Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask543\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask533\",\"eTag\":\"0x8DB5B4B7C7EFFCB\",\"lastModified\":\"2023-05-23T05:06:37.2429771Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask533\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask545\",\"eTag\":\"0x8DB5B4B7C7F9C14\",\"lastModified\":\"2023-05-23T05:06:37.246978Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask545\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask511\",\"eTag\":\"0x8DB5B4B7C7EFFCB\",\"lastModified\":\"2023-05-23T05:06:37.2429771Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask511\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask546\",\"eTag\":\"0x8DB5B4B7C80D4AC\",\"lastModified\":\"2023-05-23T05:06:37.2549804Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask546\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask544\",\"eTag\":\"0x8DB5B4B7C7F750D\",\"lastModified\":\"2023-05-23T05:06:37.2459789Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask544\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask549\",\"eTag\":\"0x8DB5B4B7C7F750D\",\"lastModified\":\"2023-05-23T05:06:37.2459789Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask549\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask542\",\"eTag\":\"0x8DB5B4B7C8149D9\",\"lastModified\":\"2023-05-23T05:06:37.2579801Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask542\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask548\",\"eTag\":\"0x8DB5B4B7C7F26E2\",\"lastModified\":\"2023-05-23T05:06:37.2439778Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask548\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask540\",\"eTag\":\"0x8DB5B4B7C7EB1CA\",\"lastModified\":\"2023-05-23T05:06:37.2409802Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask540\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "7c164ea5-5e35-428e-a361-c9deb3e13508", + "client-request-id" : "1d53173c-473e-46ff-9bcd-7a25fca34143", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "be934885-e2ba-443e-a9cc-7bddd5202216", + "request-id" : "2d971105-5886-44f6-b42a-6b1275934c3d", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask450\",\"eTag\":\"0x8DAC6BEA8EC633D\",\"lastModified\":\"2022-11-15T04:05:40.6496573Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask450\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask453\",\"eTag\":\"0x8DAC6BEA8EDC2DA\",\"lastModified\":\"2022-11-15T04:05:40.6586586Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask453\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask452\",\"eTag\":\"0x8DAC6BEA8ED9BC6\",\"lastModified\":\"2022-11-15T04:05:40.6576582Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask452\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask455\",\"eTag\":\"0x8DAC6BEA8EDE9DD\",\"lastModified\":\"2022-11-15T04:05:40.6596573Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask455\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask454\",\"eTag\":\"0x8DAC6BEA8EDE9DD\",\"lastModified\":\"2022-11-15T04:05:40.6596573Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask454\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask451\",\"eTag\":\"0x8DAC6BEA8EE1103\",\"lastModified\":\"2022-11-15T04:05:40.6606595Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask451\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask478\",\"eTag\":\"0x8DAC6BEA8F2F2F8\",\"lastModified\":\"2022-11-15T04:05:40.6926584Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask478\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask499\",\"eTag\":\"0x8DAC6BEA8F67571\",\"lastModified\":\"2022-11-15T04:05:40.7156593Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask499\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask496\",\"eTag\":\"0x8DAC6BEA8F67571\",\"lastModified\":\"2022-11-15T04:05:40.7156593Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask496\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask491\",\"eTag\":\"0x8DAC6BEA8F84A42\",\"lastModified\":\"2022-11-15T04:05:40.727661Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask491\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask498\",\"eTag\":\"0x8DAC6BEA8F64E5F\",\"lastModified\":\"2022-11-15T04:05:40.7146591Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask498\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask459\",\"eTag\":\"0x8DAC6BEA8F7ADF8\",\"lastModified\":\"2022-11-15T04:05:40.72366Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask459\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask461\",\"eTag\":\"0x8DAC6BEA8F7D506\",\"lastModified\":\"2022-11-15T04:05:40.7246598Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask461\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask477\",\"eTag\":\"0x8DAC6BEA8FA1F08\",\"lastModified\":\"2022-11-15T04:05:40.7396616Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask477\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask474\",\"eTag\":\"0x8DAC6BEA8F982CC\",\"lastModified\":\"2022-11-15T04:05:40.735662Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask474\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask481\",\"eTag\":\"0x8DAC6BEA8F87146\",\"lastModified\":\"2022-11-15T04:05:40.7286598Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask481\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask486\",\"eTag\":\"0x8DAC6BEA8FA6D26\",\"lastModified\":\"2022-11-15T04:05:40.7416614Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask486\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask464\",\"eTag\":\"0x8DAC6BEA8F9A9D7\",\"lastModified\":\"2022-11-15T04:05:40.7366615Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask464\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask458\",\"eTag\":\"0x8DAC6BEA8F7D506\",\"lastModified\":\"2022-11-15T04:05:40.7246598Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask458\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask465\",\"eTag\":\"0x8DAC6BEA8FA6D26\",\"lastModified\":\"2022-11-15T04:05:40.7416614Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask465\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask473\",\"eTag\":\"0x8DAC6BEA8FA941F\",\"lastModified\":\"2022-11-15T04:05:40.7426591Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask473\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask484\",\"eTag\":\"0x8DAC6BEA8FA941F\",\"lastModified\":\"2022-11-15T04:05:40.7426591Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask484\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask467\",\"eTag\":\"0x8DAC6BEA8FABB47\",\"lastModified\":\"2022-11-15T04:05:40.7436615Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask467\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask479\",\"eTag\":\"0x8DAC6BEA8F9F7F3\",\"lastModified\":\"2022-11-15T04:05:40.7386611Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask479\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask480\",\"eTag\":\"0x8DAC6BEA8FA941F\",\"lastModified\":\"2022-11-15T04:05:40.7426591Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask480\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask463\",\"eTag\":\"0x8DAC6BEA8FABB47\",\"lastModified\":\"2022-11-15T04:05:40.7436615Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask463\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask470\",\"eTag\":\"0x8DAC6BEA8FABB47\",\"lastModified\":\"2022-11-15T04:05:40.7436615Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask470\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask460\",\"eTag\":\"0x8DAC6BEA8FA4613\",\"lastModified\":\"2022-11-15T04:05:40.7406611Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask460\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask457\",\"eTag\":\"0x8DAC6BEA8FC41CA\",\"lastModified\":\"2022-11-15T04:05:40.7536586Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask457\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask476\",\"eTag\":\"0x8DAC6BEA8FA4613\",\"lastModified\":\"2022-11-15T04:05:40.7406611Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask476\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask494\",\"eTag\":\"0x8DAC6BEA8FC68F5\",\"lastModified\":\"2022-11-15T04:05:40.7546613Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask494\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask492\",\"eTag\":\"0x8DAC6BEA8FC41CA\",\"lastModified\":\"2022-11-15T04:05:40.7536586Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask492\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask462\",\"eTag\":\"0x8DAC6BEA8F95BA9\",\"lastModified\":\"2022-11-15T04:05:40.7346601Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask462\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask471\",\"eTag\":\"0x8DAC6BEA8FA1F08\",\"lastModified\":\"2022-11-15T04:05:40.7396616Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask471\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask489\",\"eTag\":\"0x8DAC6BEA8FC41CA\",\"lastModified\":\"2022-11-15T04:05:40.7536586Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask489\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask490\",\"eTag\":\"0x8DAC6BEA8FA6D26\",\"lastModified\":\"2022-11-15T04:05:40.7416614Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask490\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask483\",\"eTag\":\"0x8DAC6BEA8F9A9D7\",\"lastModified\":\"2022-11-15T04:05:40.7366615Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask483\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask469\",\"eTag\":\"0x8DAC6BEA8FC68F5\",\"lastModified\":\"2022-11-15T04:05:40.7546613Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask469\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask472\",\"eTag\":\"0x8DAC6BEA8FA941F\",\"lastModified\":\"2022-11-15T04:05:40.7426591Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask472\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask495\",\"eTag\":\"0x8DAC6BEA8FC68F5\",\"lastModified\":\"2022-11-15T04:05:40.7546613Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask495\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask488\",\"eTag\":\"0x8DAC6BEA8FC9008\",\"lastModified\":\"2022-11-15T04:05:40.7556616Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask488\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask482\",\"eTag\":\"0x8DAC6BEA8FAE25A\",\"lastModified\":\"2022-11-15T04:05:40.7446618Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask482\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask497\",\"eTag\":\"0x8DAC6BEA8FC9008\",\"lastModified\":\"2022-11-15T04:05:40.7556616Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask497\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask456\",\"eTag\":\"0x8DAC6BEA90BD258\",\"lastModified\":\"2022-11-15T04:05:40.8556632Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask456\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask466\",\"eTag\":\"0x8DAC6BEA8FA941F\",\"lastModified\":\"2022-11-15T04:05:40.7426591Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask466\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask485\",\"eTag\":\"0x8DAC6BEA8FABB47\",\"lastModified\":\"2022-11-15T04:05:40.7436615Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask485\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask493\",\"eTag\":\"0x8DAC6BEA8FC68F5\",\"lastModified\":\"2022-11-15T04:05:40.7546613Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask493\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask487\",\"eTag\":\"0x8DAC6BEA8F9F7F3\",\"lastModified\":\"2022-11-15T04:05:40.7386611Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask487\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask468\",\"eTag\":\"0x8DAC6BEA8FC41CA\",\"lastModified\":\"2022-11-15T04:05:40.7536586Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask468\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask475\",\"eTag\":\"0x8DAC6BEA8FABB47\",\"lastModified\":\"2022-11-15T04:05:40.7436615Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask475\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask752\",\"eTag\":\"0x8DB5B4B7C908C20\",\"lastModified\":\"2023-05-23T05:06:37.3579808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask752\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask750\",\"eTag\":\"0x8DB5B4B7C90DA35\",\"lastModified\":\"2023-05-23T05:06:37.3599797Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask750\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask767\",\"eTag\":\"0x8DB5B4B7C928805\",\"lastModified\":\"2023-05-23T05:06:37.3709829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask767\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask753\",\"eTag\":\"0x8DB5B4B7C92FD39\",\"lastModified\":\"2023-05-23T05:06:37.3739833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask753\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask751\",\"eTag\":\"0x8DB5B4B7C9260DF\",\"lastModified\":\"2023-05-23T05:06:37.3699807Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask751\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask759\",\"eTag\":\"0x8DB5B4B7C9260DF\",\"lastModified\":\"2023-05-23T05:06:37.3699807Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask759\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask761\",\"eTag\":\"0x8DB5B4B7C92D629\",\"lastModified\":\"2023-05-23T05:06:37.3729833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask761\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask768\",\"eTag\":\"0x8DB5B4B7C92AF11\",\"lastModified\":\"2023-05-23T05:06:37.3719825Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask768\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask757\",\"eTag\":\"0x8DB5B4B7C9239C9\",\"lastModified\":\"2023-05-23T05:06:37.3689801Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask757\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask756\",\"eTag\":\"0x8DB5B4B7C92FD39\",\"lastModified\":\"2023-05-23T05:06:37.3739833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask756\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask754\",\"eTag\":\"0x8DB5B4B7C932443\",\"lastModified\":\"2023-05-23T05:06:37.3749827Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask754\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask760\",\"eTag\":\"0x8DB5B4B7C92FD39\",\"lastModified\":\"2023-05-23T05:06:37.3739833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask760\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask779\",\"eTag\":\"0x8DB5B4B7C960A5A\",\"lastModified\":\"2023-05-23T05:06:37.3939802Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask779\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask755\",\"eTag\":\"0x8DB5B4B7C967F87\",\"lastModified\":\"2023-05-23T05:06:37.3969799Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask755\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask765\",\"eTag\":\"0x8DB5B4B7C96CDC6\",\"lastModified\":\"2023-05-23T05:06:37.398983Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask765\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask764\",\"eTag\":\"0x8DB5B4B7C982D54\",\"lastModified\":\"2023-05-23T05:06:37.4079828Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask764\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask773\",\"eTag\":\"0x8DB5B4B7C98063B\",\"lastModified\":\"2023-05-23T05:06:37.4069819Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask773\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask775\",\"eTag\":\"0x8DB5B4B7C96F4DB\",\"lastModified\":\"2023-05-23T05:06:37.3999835Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask775\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask762\",\"eTag\":\"0x8DB5B4B7C96F4DB\",\"lastModified\":\"2023-05-23T05:06:37.3999835Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask762\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask766\",\"eTag\":\"0x8DB5B4B7C982D54\",\"lastModified\":\"2023-05-23T05:06:37.4079828Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask766\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask774\",\"eTag\":\"0x8DB5B4B7C98A288\",\"lastModified\":\"2023-05-23T05:06:37.4109832Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask774\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask784\",\"eTag\":\"0x8DB5B4B7C98C9A4\",\"lastModified\":\"2023-05-23T05:06:37.4119844Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask784\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask783\",\"eTag\":\"0x8DB5B4B7C9917B5\",\"lastModified\":\"2023-05-23T05:06:37.4139829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask783\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask776\",\"eTag\":\"0x8DB5B4B7C993EC5\",\"lastModified\":\"2023-05-23T05:06:37.4149829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask776\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask790\",\"eTag\":\"0x8DB5B4B7C9BAFCC\",\"lastModified\":\"2023-05-23T05:06:37.4309836Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask790\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask769\",\"eTag\":\"0x8DB5B4B7C9BAFCC\",\"lastModified\":\"2023-05-23T05:06:37.4309836Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask769\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask771\",\"eTag\":\"0x8DB5B4B7C9BFDF9\",\"lastModified\":\"2023-05-23T05:06:37.4329849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask771\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask758\",\"eTag\":\"0x8DB5B4B7C9BD6EF\",\"lastModified\":\"2023-05-23T05:06:37.4319855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask758\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask789\",\"eTag\":\"0x8DB5B4B7C9BFDF9\",\"lastModified\":\"2023-05-23T05:06:37.4329849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask789\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask772\",\"eTag\":\"0x8DB5B4B7C9BD6EF\",\"lastModified\":\"2023-05-23T05:06:37.4319855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask772\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask791\",\"eTag\":\"0x8DB5B4B7C9BD6EF\",\"lastModified\":\"2023-05-23T05:06:37.4319855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask791\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask786\",\"eTag\":\"0x8DB5B4B7C9BFDF9\",\"lastModified\":\"2023-05-23T05:06:37.4329849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask786\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask788\",\"eTag\":\"0x8DB5B4B7C9BFDF9\",\"lastModified\":\"2023-05-23T05:06:37.4329849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask788\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask770\",\"eTag\":\"0x8DB5B4B7C9C2502\",\"lastModified\":\"2023-05-23T05:06:37.4339842Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask770\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask792\",\"eTag\":\"0x8DB5B4B7C9D5D97\",\"lastModified\":\"2023-05-23T05:06:37.4419863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask792\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask778\",\"eTag\":\"0x8DB5B4B7C9C4C21\",\"lastModified\":\"2023-05-23T05:06:37.4349857Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask778\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask777\",\"eTag\":\"0x8DB5B4B7C9D5D97\",\"lastModified\":\"2023-05-23T05:06:37.4419863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask777\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask794\",\"eTag\":\"0x8DB5B4B7C9FCE85\",\"lastModified\":\"2023-05-23T05:06:37.4579845Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask794\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask785\",\"eTag\":\"0x8DB5B4B7C9E20BA\",\"lastModified\":\"2023-05-23T05:06:37.4469818Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask785\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask780\",\"eTag\":\"0x8DB5B4B7C9E20BA\",\"lastModified\":\"2023-05-23T05:06:37.4469818Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask780\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask799\",\"eTag\":\"0x8DB5B4B7CA01CA2\",\"lastModified\":\"2023-05-23T05:06:37.4599842Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask799\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask795\",\"eTag\":\"0x8DB5B4B7C9FCE85\",\"lastModified\":\"2023-05-23T05:06:37.4579845Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask795\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask781\",\"eTag\":\"0x8DB5B4B7C9D848A\",\"lastModified\":\"2023-05-23T05:06:37.4429834Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask781\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask787\",\"eTag\":\"0x8DB5B4B7C9DD2B0\",\"lastModified\":\"2023-05-23T05:06:37.444984Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask787\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask796\",\"eTag\":\"0x8DB5B4B7C9FF589\",\"lastModified\":\"2023-05-23T05:06:37.4589833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask796\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask793\",\"eTag\":\"0x8DB5B4B7C9DABA5\",\"lastModified\":\"2023-05-23T05:06:37.4439845Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask793\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask798\",\"eTag\":\"0x8DB5B4B7C9FF589\",\"lastModified\":\"2023-05-23T05:06:37.4589833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask798\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask782\",\"eTag\":\"0x8DB5B4B7C9E47CF\",\"lastModified\":\"2023-05-23T05:06:37.4479823Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask782\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask797\",\"eTag\":\"0x8DB5B4B7CA043A7\",\"lastModified\":\"2023-05-23T05:06:37.4609831Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask797\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask763\",\"eTag\":\"0x8DB5B4B7C9C4C21\",\"lastModified\":\"2023-05-23T05:06:37.4349857Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask763\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "4ff09b07-17c6-4791-a1b6-b58c6ad2b1e7", + "client-request-id" : "453a9aad-819d-47b2-85ea-e9d7b821153e", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "8d3c7962-3328-4392-9e81-5f91d739d774", + "request-id" : "2341d4c5-2117-460e-a6cd-1c5f79a839b2", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask800\",\"eTag\":\"0x8DAC6BEA8F6EC15\",\"lastModified\":\"2022-11-15T04:05:40.7186965Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask800\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask801\",\"eTag\":\"0x8DAC6BEA8F6EC15\",\"lastModified\":\"2022-11-15T04:05:40.7186965Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask801\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask802\",\"eTag\":\"0x8DAC6BEA8F7133A\",\"lastModified\":\"2022-11-15T04:05:40.7196986Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask802\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask806\",\"eTag\":\"0x8DAC6BEA8F7885F\",\"lastModified\":\"2022-11-15T04:05:40.7226975Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask806\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask804\",\"eTag\":\"0x8DAC6BEA8F7133A\",\"lastModified\":\"2022-11-15T04:05:40.7196986Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask804\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask803\",\"eTag\":\"0x8DAC6BEA8F73A48\",\"lastModified\":\"2022-11-15T04:05:40.7206984Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask803\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask808\",\"eTag\":\"0x8DAC6BEA8F7FD94\",\"lastModified\":\"2022-11-15T04:05:40.725698Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask808\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask807\",\"eTag\":\"0x8DAC6BEA8F7AF6E\",\"lastModified\":\"2022-11-15T04:05:40.7236974Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask807\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask811\",\"eTag\":\"0x8DAC6BEA8F7D699\",\"lastModified\":\"2022-11-15T04:05:40.7247001Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask811\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask809\",\"eTag\":\"0x8DAC6BEA8F7D699\",\"lastModified\":\"2022-11-15T04:05:40.7247001Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask809\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask812\",\"eTag\":\"0x8DAC6BEA8F7FD94\",\"lastModified\":\"2022-11-15T04:05:40.725698Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask812\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask818\",\"eTag\":\"0x8DAC6BEA8F7FD94\",\"lastModified\":\"2022-11-15T04:05:40.725698Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask818\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask815\",\"eTag\":\"0x8DAC6BEA8F7FD94\",\"lastModified\":\"2022-11-15T04:05:40.725698Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask815\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask814\",\"eTag\":\"0x8DAC6BEA8F824A6\",\"lastModified\":\"2022-11-15T04:05:40.7266982Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask814\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask817\",\"eTag\":\"0x8DAC6BEA8F824A6\",\"lastModified\":\"2022-11-15T04:05:40.7266982Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask817\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask821\",\"eTag\":\"0x8DAC6BEA8F824A6\",\"lastModified\":\"2022-11-15T04:05:40.7266982Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask821\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask820\",\"eTag\":\"0x8DAC6BEA8F824A6\",\"lastModified\":\"2022-11-15T04:05:40.7266982Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask820\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask819\",\"eTag\":\"0x8DAC6BEA8F9841C\",\"lastModified\":\"2022-11-15T04:05:40.7356956Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask819\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask823\",\"eTag\":\"0x8DAC6BEA8F9841C\",\"lastModified\":\"2022-11-15T04:05:40.7356956Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask823\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask810\",\"eTag\":\"0x8DAC6BEA8F7D699\",\"lastModified\":\"2022-11-15T04:05:40.7247001Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask810\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask816\",\"eTag\":\"0x8DAC6BEA8F84BB7\",\"lastModified\":\"2022-11-15T04:05:40.7276983Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask816\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask822\",\"eTag\":\"0x8DAC6BEA8F84BB7\",\"lastModified\":\"2022-11-15T04:05:40.7276983Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask822\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask824\",\"eTag\":\"0x8DAC6BEA8F9AB5F\",\"lastModified\":\"2022-11-15T04:05:40.7367007Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask824\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask825\",\"eTag\":\"0x8DAC6BEA8FAE3C3\",\"lastModified\":\"2022-11-15T04:05:40.7446979Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask825\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask826\",\"eTag\":\"0x8DAC6BEA8FAE3C3\",\"lastModified\":\"2022-11-15T04:05:40.7446979Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask826\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask813\",\"eTag\":\"0x8DAC6BEA8F7FD94\",\"lastModified\":\"2022-11-15T04:05:40.725698Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask813\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask805\",\"eTag\":\"0x8DAC6BEA8F73A48\",\"lastModified\":\"2022-11-15T04:05:40.7206984Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask805\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask835\",\"eTag\":\"0x8DAC6BEA90A7434\",\"lastModified\":\"2022-11-15T04:05:40.8466996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask835\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask840\",\"eTag\":\"0x8DAC6BEA90A9B2E\",\"lastModified\":\"2022-11-15T04:05:40.8476974Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask840\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask836\",\"eTag\":\"0x8DAC6BEA90A7434\",\"lastModified\":\"2022-11-15T04:05:40.8466996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask836\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask845\",\"eTag\":\"0x8DAC6BEA90AC24C\",\"lastModified\":\"2022-11-15T04:05:40.8486988Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask845\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask832\",\"eTag\":\"0x8DAC6BEA90A4D13\",\"lastModified\":\"2022-11-15T04:05:40.8456979Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask832\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask837\",\"eTag\":\"0x8DAC6BEA90A9B2E\",\"lastModified\":\"2022-11-15T04:05:40.8476974Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask837\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask838\",\"eTag\":\"0x8DAC6BEA90A9B2E\",\"lastModified\":\"2022-11-15T04:05:40.8476974Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask838\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask842\",\"eTag\":\"0x8DAC6BEA90AC24C\",\"lastModified\":\"2022-11-15T04:05:40.8486988Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask842\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask834\",\"eTag\":\"0x8DAC6BEA90A7434\",\"lastModified\":\"2022-11-15T04:05:40.8466996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask834\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask848\",\"eTag\":\"0x8DAC6BEA90B8599\",\"lastModified\":\"2022-11-15T04:05:40.8536985Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask848\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask844\",\"eTag\":\"0x8DAC6BEA90AC24C\",\"lastModified\":\"2022-11-15T04:05:40.8486988Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask844\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask841\",\"eTag\":\"0x8DAC6BEA90AC24C\",\"lastModified\":\"2022-11-15T04:05:40.8486988Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask841\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask827\",\"eTag\":\"0x8DAC6BEA90BACA9\",\"lastModified\":\"2022-11-15T04:05:40.8546985Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask827\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask829\",\"eTag\":\"0x8DAC6BEA90BD3B6\",\"lastModified\":\"2022-11-15T04:05:40.8556982Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask829\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask847\",\"eTag\":\"0x8DAC6BEA90AC24C\",\"lastModified\":\"2022-11-15T04:05:40.8486988Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask847\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask849\",\"eTag\":\"0x8DAC6BEA90B8599\",\"lastModified\":\"2022-11-15T04:05:40.8536985Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask849\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask831\",\"eTag\":\"0x8DAC6BEA90BD3B6\",\"lastModified\":\"2022-11-15T04:05:40.8556982Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask831\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask833\",\"eTag\":\"0x8DAC6BEA90A7434\",\"lastModified\":\"2022-11-15T04:05:40.8466996Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask833\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask846\",\"eTag\":\"0x8DAC6BEA90BACA9\",\"lastModified\":\"2022-11-15T04:05:40.8546985Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask846\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask839\",\"eTag\":\"0x8DAC6BEA90BFACE\",\"lastModified\":\"2022-11-15T04:05:40.856699Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask839\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask843\",\"eTag\":\"0x8DAC6BEA90AC24C\",\"lastModified\":\"2022-11-15T04:05:40.8486988Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask843\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask828\",\"eTag\":\"0x8DAC6BEA90BD3B6\",\"lastModified\":\"2022-11-15T04:05:40.8556982Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask828\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask830\",\"eTag\":\"0x8DAC6BEA90BD3B6\",\"lastModified\":\"2022-11-15T04:05:40.8556982Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask830\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask900\",\"eTag\":\"0x8DB5B4B7C8FA1BA\",\"lastModified\":\"2023-05-23T05:06:37.3519802Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask900\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask903\",\"eTag\":\"0x8DB5B4B7C90B359\",\"lastModified\":\"2023-05-23T05:06:37.3589849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask903\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask901\",\"eTag\":\"0x8DB5B4B7C90651B\",\"lastModified\":\"2023-05-23T05:06:37.3569819Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask901\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask902\",\"eTag\":\"0x8DB5B4B7C908C20\",\"lastModified\":\"2023-05-23T05:06:37.3579808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask902\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask906\",\"eTag\":\"0x8DB5B4B7C90B359\",\"lastModified\":\"2023-05-23T05:06:37.3589849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask906\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask911\",\"eTag\":\"0x8DB5B4B7C90DA35\",\"lastModified\":\"2023-05-23T05:06:37.3599797Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask911\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask905\",\"eTag\":\"0x8DB5B4B7C90B359\",\"lastModified\":\"2023-05-23T05:06:37.3589849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask905\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask909\",\"eTag\":\"0x8DB5B4B7C9260DF\",\"lastModified\":\"2023-05-23T05:06:37.3699807Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask909\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask913\",\"eTag\":\"0x8DB5B4B7C92D629\",\"lastModified\":\"2023-05-23T05:06:37.3729833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask913\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask907\",\"eTag\":\"0x8DB5B4B7C928805\",\"lastModified\":\"2023-05-23T05:06:37.3709829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask907\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask910\",\"eTag\":\"0x8DB5B4B7C92FD39\",\"lastModified\":\"2023-05-23T05:06:37.3739833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask910\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask937\",\"eTag\":\"0x8DB5B4B7C92AF11\",\"lastModified\":\"2023-05-23T05:06:37.3719825Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask937\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask912\",\"eTag\":\"0x8DB5B4B7C932443\",\"lastModified\":\"2023-05-23T05:06:37.3749827Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask912\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask929\",\"eTag\":\"0x8DB5B4B7C932443\",\"lastModified\":\"2023-05-23T05:06:37.3749827Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask929\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask904\",\"eTag\":\"0x8DB5B4B7C95E358\",\"lastModified\":\"2023-05-23T05:06:37.3929816Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask904\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask908\",\"eTag\":\"0x8DB5B4B7C965880\",\"lastModified\":\"2023-05-23T05:06:37.3959808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask908\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask922\",\"eTag\":\"0x8DB5B4B7C965880\",\"lastModified\":\"2023-05-23T05:06:37.3959808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask922\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask941\",\"eTag\":\"0x8DB5B4B7C96CDC6\",\"lastModified\":\"2023-05-23T05:06:37.398983Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask941\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask931\",\"eTag\":\"0x8DB5B4B7C985479\",\"lastModified\":\"2023-05-23T05:06:37.4089849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask931\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask914\",\"eTag\":\"0x8DB5B4B7C993EC5\",\"lastModified\":\"2023-05-23T05:06:37.4149829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask914\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask933\",\"eTag\":\"0x8DB5B4B7C993EC5\",\"lastModified\":\"2023-05-23T05:06:37.4149829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask933\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask940\",\"eTag\":\"0x8DB5B4B7C9965CC\",\"lastModified\":\"2023-05-23T05:06:37.415982Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask940\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask935\",\"eTag\":\"0x8DB5B4B7C9917B5\",\"lastModified\":\"2023-05-23T05:06:37.4139829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask935\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask925\",\"eTag\":\"0x8DB5B4B7C9BAFCC\",\"lastModified\":\"2023-05-23T05:06:37.4309836Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask925\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask924\",\"eTag\":\"0x8DB5B4B7C9C2502\",\"lastModified\":\"2023-05-23T05:06:37.4339842Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask924\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask920\",\"eTag\":\"0x8DB5B4B7C9C4C21\",\"lastModified\":\"2023-05-23T05:06:37.4349857Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask920\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask916\",\"eTag\":\"0x8DB5B4B7C9D5D97\",\"lastModified\":\"2023-05-23T05:06:37.4419863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask916\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask918\",\"eTag\":\"0x8DB5B4B7C9D5D97\",\"lastModified\":\"2023-05-23T05:06:37.4419863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask918\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask938\",\"eTag\":\"0x8DB5B4B7C9D5D97\",\"lastModified\":\"2023-05-23T05:06:37.4419863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask938\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask921\",\"eTag\":\"0x8DB5B4B7C9D848A\",\"lastModified\":\"2023-05-23T05:06:37.4429834Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask921\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask915\",\"eTag\":\"0x8DB5B4B7C9DABA5\",\"lastModified\":\"2023-05-23T05:06:37.4439845Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask915\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask939\",\"eTag\":\"0x8DB5B4B7C9DD2B0\",\"lastModified\":\"2023-05-23T05:06:37.444984Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask939\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask919\",\"eTag\":\"0x8DB5B4B7C9D848A\",\"lastModified\":\"2023-05-23T05:06:37.4429834Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask919\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask926\",\"eTag\":\"0x8DB5B4B7C9DF9B1\",\"lastModified\":\"2023-05-23T05:06:37.4459825Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask926\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask928\",\"eTag\":\"0x8DB5B4B7C9E47CF\",\"lastModified\":\"2023-05-23T05:06:37.4479823Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask928\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask930\",\"eTag\":\"0x8DB5B4B7C9DF9B1\",\"lastModified\":\"2023-05-23T05:06:37.4459825Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask930\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask923\",\"eTag\":\"0x8DB5B4B7C9D848A\",\"lastModified\":\"2023-05-23T05:06:37.4429834Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask923\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask947\",\"eTag\":\"0x8DB5B4B7C9E47CF\",\"lastModified\":\"2023-05-23T05:06:37.4479823Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask947\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask946\",\"eTag\":\"0x8DB5B4B7C9FCE85\",\"lastModified\":\"2023-05-23T05:06:37.4579845Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask946\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask934\",\"eTag\":\"0x8DB5B4B7C9DF9B1\",\"lastModified\":\"2023-05-23T05:06:37.4459825Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask934\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask927\",\"eTag\":\"0x8DB5B4B7C9E20BA\",\"lastModified\":\"2023-05-23T05:06:37.4469818Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask927\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask949\",\"eTag\":\"0x8DB5B4B7C9FF589\",\"lastModified\":\"2023-05-23T05:06:37.4589833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask949\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask942\",\"eTag\":\"0x8DB5B4B7CA043A7\",\"lastModified\":\"2023-05-23T05:06:37.4609831Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask942\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask948\",\"eTag\":\"0x8DB5B4B7CA01CA2\",\"lastModified\":\"2023-05-23T05:06:37.4599842Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask948\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask917\",\"eTag\":\"0x8DB5B4B7CA091D3\",\"lastModified\":\"2023-05-23T05:06:37.4629843Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask917\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask943\",\"eTag\":\"0x8DB5B4B7CA043A7\",\"lastModified\":\"2023-05-23T05:06:37.4609831Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask943\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask936\",\"eTag\":\"0x8DB5B4B7C9DD2B0\",\"lastModified\":\"2023-05-23T05:06:37.444984Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask936\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask944\",\"eTag\":\"0x8DB5B4B7C9FA750\",\"lastModified\":\"2023-05-23T05:06:37.4569808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask944\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask945\",\"eTag\":\"0x8DB5B4B7C9FCE85\",\"lastModified\":\"2023-05-23T05:06:37.4579845Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask945\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask932\",\"eTag\":\"0x8DB5B4B7C9D848A\",\"lastModified\":\"2023-05-23T05:06:37.4429834Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask932\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "b0c1d714-73e0-4382-9591-10d0d7d2513d", + "client-request-id" : "bfeb1fb0-2b04-49de-80cb-d9cfe21c54ac", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "5f1a27c0-3665-465b-b1d5-763e85cd7909", + "request-id" : "8705f6ce-b74f-4ae3-81d6-738ffc473e35", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask900\",\"eTag\":\"0x8DAC6BEA90DC869\",\"lastModified\":\"2022-11-15T04:05:40.8685161Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask900\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask901\",\"eTag\":\"0x8DAC6BEA90DC869\",\"lastModified\":\"2022-11-15T04:05:40.8685161Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask901\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask905\",\"eTag\":\"0x8DAC6BEA90DEF72\",\"lastModified\":\"2022-11-15T04:05:40.8695154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask905\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask909\",\"eTag\":\"0x8DAC6BEA90F27F5\",\"lastModified\":\"2022-11-15T04:05:40.8775157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask909\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask903\",\"eTag\":\"0x8DAC6BEA90DEF72\",\"lastModified\":\"2022-11-15T04:05:40.8695154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask903\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask906\",\"eTag\":\"0x8DAC6BEA90F4F02\",\"lastModified\":\"2022-11-15T04:05:40.8785154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask906\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask908\",\"eTag\":\"0x8DAC6BEA90DEF72\",\"lastModified\":\"2022-11-15T04:05:40.8695154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask908\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask927\",\"eTag\":\"0x8DAC6BEA90F4F02\",\"lastModified\":\"2022-11-15T04:05:40.8785154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask927\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask902\",\"eTag\":\"0x8DAC6BEA90F00CB\",\"lastModified\":\"2022-11-15T04:05:40.8765131Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask902\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask914\",\"eTag\":\"0x8DAC6BEA90F27F5\",\"lastModified\":\"2022-11-15T04:05:40.8775157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask914\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask915\",\"eTag\":\"0x8DAC6BEA90F27F5\",\"lastModified\":\"2022-11-15T04:05:40.8775157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask915\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask907\",\"eTag\":\"0x8DAC6BEA90F00CB\",\"lastModified\":\"2022-11-15T04:05:40.8765131Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask907\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask932\",\"eTag\":\"0x8DAC6BEA90F4F02\",\"lastModified\":\"2022-11-15T04:05:40.8785154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask932\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask910\",\"eTag\":\"0x8DAC6BEA90F27F5\",\"lastModified\":\"2022-11-15T04:05:40.8775157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask910\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask913\",\"eTag\":\"0x8DAC6BEA90F27F5\",\"lastModified\":\"2022-11-15T04:05:40.8775157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask913\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask912\",\"eTag\":\"0x8DAC6BEA90F27F5\",\"lastModified\":\"2022-11-15T04:05:40.8775157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask912\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask938\",\"eTag\":\"0x8DAC6BEA90F4F02\",\"lastModified\":\"2022-11-15T04:05:40.8785154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask938\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask904\",\"eTag\":\"0x8DAC6BEA90F00CB\",\"lastModified\":\"2022-11-15T04:05:40.8765131Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask904\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask924\",\"eTag\":\"0x8DAC6BEA90F4F02\",\"lastModified\":\"2022-11-15T04:05:40.8785154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask924\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask936\",\"eTag\":\"0x8DAC6BEA90F4F02\",\"lastModified\":\"2022-11-15T04:05:40.8785154Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask936\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask933\",\"eTag\":\"0x8DAC6BEA90F7617\",\"lastModified\":\"2022-11-15T04:05:40.8795159Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask933\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask929\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask929\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask943\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask943\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask920\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask920\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask926\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask926\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask922\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask922\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask916\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask916\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask931\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask931\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask917\",\"eTag\":\"0x8DAC6BEA90F7617\",\"lastModified\":\"2022-11-15T04:05:40.8795159Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask917\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask923\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask923\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask925\",\"eTag\":\"0x8DAC6BEA90FC43D\",\"lastModified\":\"2022-11-15T04:05:40.8815165Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask925\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask935\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask935\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask930\",\"eTag\":\"0x8DAC6BEA9101260\",\"lastModified\":\"2022-11-15T04:05:40.8835168Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask930\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask942\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask942\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask911\",\"eTag\":\"0x8DAC6BEA90F27F5\",\"lastModified\":\"2022-11-15T04:05:40.8775157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask911\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask937\",\"eTag\":\"0x8DAC6BEA9103969\",\"lastModified\":\"2022-11-15T04:05:40.8845161Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask937\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask934\",\"eTag\":\"0x8DAC6BEA90FC43D\",\"lastModified\":\"2022-11-15T04:05:40.8815165Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask934\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask940\",\"eTag\":\"0x8DAC6BEA91171E0\",\"lastModified\":\"2022-11-15T04:05:40.8925152Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask940\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask941\",\"eTag\":\"0x8DAC6BEA9103969\",\"lastModified\":\"2022-11-15T04:05:40.8845161Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask941\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask928\",\"eTag\":\"0x8DAC6BEA90FEB3F\",\"lastModified\":\"2022-11-15T04:05:40.8825151Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask928\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask918\",\"eTag\":\"0x8DAC6BEA90FC43D\",\"lastModified\":\"2022-11-15T04:05:40.8815165Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask918\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask919\",\"eTag\":\"0x8DAC6BEA90F9D25\",\"lastModified\":\"2022-11-15T04:05:40.8805157Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask919\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask939\",\"eTag\":\"0x8DAC6BEA90FEB3F\",\"lastModified\":\"2022-11-15T04:05:40.8825151Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask939\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask948\",\"eTag\":\"0x8DAC6BEA916C901\",\"lastModified\":\"2022-11-15T04:05:40.9275137Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask948\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask944\",\"eTag\":\"0x8DAC6BEA9167B11\",\"lastModified\":\"2022-11-15T04:05:40.9255185Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask944\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask921\",\"eTag\":\"0x8DAC6BEA90FC43D\",\"lastModified\":\"2022-11-15T04:05:40.8815165Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask921\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask945\",\"eTag\":\"0x8DAC6BEA916C901\",\"lastModified\":\"2022-11-15T04:05:40.9275137Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask945\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask949\",\"eTag\":\"0x8DAC6BEA916C901\",\"lastModified\":\"2022-11-15T04:05:40.9275137Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask949\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask947\",\"eTag\":\"0x8DAC6BEA916C901\",\"lastModified\":\"2022-11-15T04:05:40.9275137Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask947\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask946\",\"eTag\":\"0x8DAC6BEA916C901\",\"lastModified\":\"2022-11-15T04:05:40.9275137Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask946\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask700\",\"eTag\":\"0x8DB5B4B7C8FC8DB\",\"lastModified\":\"2023-05-23T05:06:37.3529819Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask700\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask701\",\"eTag\":\"0x8DB5B4B7C90651B\",\"lastModified\":\"2023-05-23T05:06:37.3569819Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask701\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask703\",\"eTag\":\"0x8DB5B4B7C90651B\",\"lastModified\":\"2023-05-23T05:06:37.3569819Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask703\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask704\",\"eTag\":\"0x8DB5B4B7C908C20\",\"lastModified\":\"2023-05-23T05:06:37.3579808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask704\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask702\",\"eTag\":\"0x8DB5B4B7C92AF11\",\"lastModified\":\"2023-05-23T05:06:37.3719825Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask702\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask722\",\"eTag\":\"0x8DB5B4B7C932443\",\"lastModified\":\"2023-05-23T05:06:37.3749827Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask722\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask705\",\"eTag\":\"0x8DB5B4B7C963182\",\"lastModified\":\"2023-05-23T05:06:37.3949826Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask705\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask709\",\"eTag\":\"0x8DB5B4B7C92AF11\",\"lastModified\":\"2023-05-23T05:06:37.3719825Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask709\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask706\",\"eTag\":\"0x8DB5B4B7C967F87\",\"lastModified\":\"2023-05-23T05:06:37.3969799Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask706\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask707\",\"eTag\":\"0x8DB5B4B7C967F87\",\"lastModified\":\"2023-05-23T05:06:37.3969799Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask707\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask727\",\"eTag\":\"0x8DB5B4B7C965880\",\"lastModified\":\"2023-05-23T05:06:37.3959808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask727\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask711\",\"eTag\":\"0x8DB5B4B7C96CDC6\",\"lastModified\":\"2023-05-23T05:06:37.398983Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask711\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask715\",\"eTag\":\"0x8DB5B4B7C96A6A6\",\"lastModified\":\"2023-05-23T05:06:37.3979814Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask715\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask736\",\"eTag\":\"0x8DB5B4B7C98063B\",\"lastModified\":\"2023-05-23T05:06:37.4069819Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask736\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask710\",\"eTag\":\"0x8DB5B4B7C96A6A6\",\"lastModified\":\"2023-05-23T05:06:37.3979814Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask710\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask724\",\"eTag\":\"0x8DB5B4B7C985479\",\"lastModified\":\"2023-05-23T05:06:37.4089849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask724\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask729\",\"eTag\":\"0x8DB5B4B7C987B60\",\"lastModified\":\"2023-05-23T05:06:37.4099808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask729\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask737\",\"eTag\":\"0x8DB5B4B7C98C9A4\",\"lastModified\":\"2023-05-23T05:06:37.4119844Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask737\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask714\",\"eTag\":\"0x8DB5B4B7C982D54\",\"lastModified\":\"2023-05-23T05:06:37.4079828Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask714\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask717\",\"eTag\":\"0x8DB5B4B7C993EC5\",\"lastModified\":\"2023-05-23T05:06:37.4149829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask717\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask733\",\"eTag\":\"0x8DB5B4B7C9965CC\",\"lastModified\":\"2023-05-23T05:06:37.415982Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask733\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask718\",\"eTag\":\"0x8DB5B4B7C9B3A7A\",\"lastModified\":\"2023-05-23T05:06:37.4279802Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask718\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask713\",\"eTag\":\"0x8DB5B4B7C993EC5\",\"lastModified\":\"2023-05-23T05:06:37.4149829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask713\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask730\",\"eTag\":\"0x8DB5B4B7C9B61AD\",\"lastModified\":\"2023-05-23T05:06:37.4289837Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask730\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask708\",\"eTag\":\"0x8DB5B4B7C9B88AD\",\"lastModified\":\"2023-05-23T05:06:37.4299821Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask708\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask721\",\"eTag\":\"0x8DB5B4B7C9B61AD\",\"lastModified\":\"2023-05-23T05:06:37.4289837Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask721\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask720\",\"eTag\":\"0x8DB5B4B7C9BD6EF\",\"lastModified\":\"2023-05-23T05:06:37.4319855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask720\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask728\",\"eTag\":\"0x8DB5B4B7C9BAFCC\",\"lastModified\":\"2023-05-23T05:06:37.4309836Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask728\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask719\",\"eTag\":\"0x8DB5B4B7C9BD6EF\",\"lastModified\":\"2023-05-23T05:06:37.4319855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask719\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask723\",\"eTag\":\"0x8DB5B4B7C9BFDF9\",\"lastModified\":\"2023-05-23T05:06:37.4329849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask723\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask726\",\"eTag\":\"0x8DB5B4B7C9C4C21\",\"lastModified\":\"2023-05-23T05:06:37.4349857Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask726\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask731\",\"eTag\":\"0x8DB5B4B7C9D848A\",\"lastModified\":\"2023-05-23T05:06:37.4429834Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask731\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask712\",\"eTag\":\"0x8DB5B4B7C9C7323\",\"lastModified\":\"2023-05-23T05:06:37.4359843Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask712\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask716\",\"eTag\":\"0x8DB5B4B7C9D364B\",\"lastModified\":\"2023-05-23T05:06:37.4409803Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask716\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask741\",\"eTag\":\"0x8DB5B4B7C9FCE85\",\"lastModified\":\"2023-05-23T05:06:37.4579845Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask741\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask735\",\"eTag\":\"0x8DB5B4B7C9DD2B0\",\"lastModified\":\"2023-05-23T05:06:37.444984Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask735\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask732\",\"eTag\":\"0x8DB5B4B7C9DF9B1\",\"lastModified\":\"2023-05-23T05:06:37.4459825Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask732\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask743\",\"eTag\":\"0x8DB5B4B7C9E47CF\",\"lastModified\":\"2023-05-23T05:06:37.4479823Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask743\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask739\",\"eTag\":\"0x8DB5B4B7C9E47CF\",\"lastModified\":\"2023-05-23T05:06:37.4479823Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask739\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask738\",\"eTag\":\"0x8DB5B4B7C9FF589\",\"lastModified\":\"2023-05-23T05:06:37.4589833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask738\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask742\",\"eTag\":\"0x8DB5B4B7C9FF589\",\"lastModified\":\"2023-05-23T05:06:37.4589833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask742\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask725\",\"eTag\":\"0x8DB5B4B7C9DABA5\",\"lastModified\":\"2023-05-23T05:06:37.4439845Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask725\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask734\",\"eTag\":\"0x8DB5B4B7C9DD2B0\",\"lastModified\":\"2023-05-23T05:06:37.444984Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask734\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask744\",\"eTag\":\"0x8DB5B4B7CA01CA2\",\"lastModified\":\"2023-05-23T05:06:37.4599842Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask744\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask746\",\"eTag\":\"0x8DB5B4B7CA06AD1\",\"lastModified\":\"2023-05-23T05:06:37.4619857Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask746\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask740\",\"eTag\":\"0x8DB5B4B7CA01CA2\",\"lastModified\":\"2023-05-23T05:06:37.4599842Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask740\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask745\",\"eTag\":\"0x8DB5B4B7CA043A7\",\"lastModified\":\"2023-05-23T05:06:37.4609831Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask745\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask749\",\"eTag\":\"0x8DB5B4B7CA0B8D4\",\"lastModified\":\"2023-05-23T05:06:37.4639828Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask749\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask748\",\"eTag\":\"0x8DB5B4B7CA0DFFC\",\"lastModified\":\"2023-05-23T05:06:37.4649852Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask748\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask747\",\"eTag\":\"0x8DB5B4B7CA0B8D4\",\"lastModified\":\"2023-05-23T05:06:37.4639828Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask747\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "5240fb78-6ad9-493f-9586-45b186df817e", + "client-request-id" : "65348a74-586a-4cdc-b9f9-33fe6af26a10", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "0df2021f-b19c-4940-98e4-77966adf0dba", + "request-id" : "46c61a1f-20c8-48b6-84ec-a637166a8ffc", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask852\",\"eTag\":\"0x8DAC6BEA90BD7F2\",\"lastModified\":\"2022-11-15T04:05:40.8558066Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask852\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask851\",\"eTag\":\"0x8DAC6BEA90D1070\",\"lastModified\":\"2022-11-15T04:05:40.8638064Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask851\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask853\",\"eTag\":\"0x8DAC6BEA90D1070\",\"lastModified\":\"2022-11-15T04:05:40.8638064Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask853\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask855\",\"eTag\":\"0x8DAC6BEA90D1070\",\"lastModified\":\"2022-11-15T04:05:40.8638064Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask855\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask854\",\"eTag\":\"0x8DAC6BEA90D3791\",\"lastModified\":\"2022-11-15T04:05:40.8648081Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask854\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask862\",\"eTag\":\"0x8DAC6BEA90D5EA0\",\"lastModified\":\"2022-11-15T04:05:40.865808Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask862\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask860\",\"eTag\":\"0x8DAC6BEA90D5EA0\",\"lastModified\":\"2022-11-15T04:05:40.865808Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask860\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask868\",\"eTag\":\"0x8DAC6BEA90DACCD\",\"lastModified\":\"2022-11-15T04:05:40.8678093Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask868\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask861\",\"eTag\":\"0x8DAC6BEA90D5EA0\",\"lastModified\":\"2022-11-15T04:05:40.865808Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask861\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask866\",\"eTag\":\"0x8DAC6BEA90D85BE\",\"lastModified\":\"2022-11-15T04:05:40.8668094Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask866\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask857\",\"eTag\":\"0x8DAC6BEA90D3791\",\"lastModified\":\"2022-11-15T04:05:40.8648081Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask857\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask858\",\"eTag\":\"0x8DAC6BEA90D3791\",\"lastModified\":\"2022-11-15T04:05:40.8648081Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask858\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask865\",\"eTag\":\"0x8DAC6BEA90DACCD\",\"lastModified\":\"2022-11-15T04:05:40.8678093Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask865\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask863\",\"eTag\":\"0x8DAC6BEA90D85BE\",\"lastModified\":\"2022-11-15T04:05:40.8668094Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask863\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask867\",\"eTag\":\"0x8DAC6BEA90D85BE\",\"lastModified\":\"2022-11-15T04:05:40.8668094Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask867\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask872\",\"eTag\":\"0x8DAC6BEA90DD3E5\",\"lastModified\":\"2022-11-15T04:05:40.8688101Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask872\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask873\",\"eTag\":\"0x8DAC6BEA90DD3E5\",\"lastModified\":\"2022-11-15T04:05:40.8688101Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask873\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask864\",\"eTag\":\"0x8DAC6BEA90DD3E5\",\"lastModified\":\"2022-11-15T04:05:40.8688101Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask864\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask870\",\"eTag\":\"0x8DAC6BEA90E48FD\",\"lastModified\":\"2022-11-15T04:05:40.8718077Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask870\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask871\",\"eTag\":\"0x8DAC6BEA90E48FD\",\"lastModified\":\"2022-11-15T04:05:40.8718077Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask871\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask874\",\"eTag\":\"0x8DAC6BEA90F5A7C\",\"lastModified\":\"2022-11-15T04:05:40.8788092Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask874\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask850\",\"eTag\":\"0x8DAC6BEA90D5EA0\",\"lastModified\":\"2022-11-15T04:05:40.865808Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask850\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask878\",\"eTag\":\"0x8DAC6BEA90F5A7C\",\"lastModified\":\"2022-11-15T04:05:40.8788092Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask878\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask875\",\"eTag\":\"0x8DAC6BEA90F5A7C\",\"lastModified\":\"2022-11-15T04:05:40.8788092Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask875\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask877\",\"eTag\":\"0x8DAC6BEA90F5A7C\",\"lastModified\":\"2022-11-15T04:05:40.8788092Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask877\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask890\",\"eTag\":\"0x8DAC6BEA90FA89E\",\"lastModified\":\"2022-11-15T04:05:40.8808094Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask890\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask881\",\"eTag\":\"0x8DAC6BEA90F818A\",\"lastModified\":\"2022-11-15T04:05:40.879809Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask881\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask879\",\"eTag\":\"0x8DAC6BEA90FA89E\",\"lastModified\":\"2022-11-15T04:05:40.8808094Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask879\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask888\",\"eTag\":\"0x8DAC6BEA90FCFAB\",\"lastModified\":\"2022-11-15T04:05:40.8818091Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask888\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask886\",\"eTag\":\"0x8DAC6BEA90FA89E\",\"lastModified\":\"2022-11-15T04:05:40.8808094Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask886\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask884\",\"eTag\":\"0x8DAC6BEA90FCFAB\",\"lastModified\":\"2022-11-15T04:05:40.8818091Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask884\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask880\",\"eTag\":\"0x8DAC6BEA90F818A\",\"lastModified\":\"2022-11-15T04:05:40.879809Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask880\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask883\",\"eTag\":\"0x8DAC6BEA90FA89E\",\"lastModified\":\"2022-11-15T04:05:40.8808094Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask883\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask869\",\"eTag\":\"0x8DAC6BEA90DD3E5\",\"lastModified\":\"2022-11-15T04:05:40.8688101Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask869\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask894\",\"eTag\":\"0x8DAC6BEA9101DB9\",\"lastModified\":\"2022-11-15T04:05:40.8838073Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask894\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask896\",\"eTag\":\"0x8DAC6BEA9101DB9\",\"lastModified\":\"2022-11-15T04:05:40.8838073Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask896\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask893\",\"eTag\":\"0x8DAC6BEA90FF6C3\",\"lastModified\":\"2022-11-15T04:05:40.8828099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask893\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask882\",\"eTag\":\"0x8DAC6BEA90FCFAB\",\"lastModified\":\"2022-11-15T04:05:40.8818091Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask882\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask892\",\"eTag\":\"0x8DAC6BEA9101DB9\",\"lastModified\":\"2022-11-15T04:05:40.8838073Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask892\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask889\",\"eTag\":\"0x8DAC6BEA90FF6C3\",\"lastModified\":\"2022-11-15T04:05:40.8828099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask889\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask856\",\"eTag\":\"0x8DAC6BEA90BD7F2\",\"lastModified\":\"2022-11-15T04:05:40.8558066Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask856\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask859\",\"eTag\":\"0x8DAC6BEA90D3791\",\"lastModified\":\"2022-11-15T04:05:40.8648081Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask859\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask895\",\"eTag\":\"0x8DAC6BEA90FF6C3\",\"lastModified\":\"2022-11-15T04:05:40.8828099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask895\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask876\",\"eTag\":\"0x8DAC6BEA90F3365\",\"lastModified\":\"2022-11-15T04:05:40.8778085Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask876\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask887\",\"eTag\":\"0x8DAC6BEA91267AB\",\"lastModified\":\"2022-11-15T04:05:40.8988075Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask887\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask885\",\"eTag\":\"0x8DAC6BEA90FF6C3\",\"lastModified\":\"2022-11-15T04:05:40.8828099Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask885\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask891\",\"eTag\":\"0x8DAC6BEA9128EBE\",\"lastModified\":\"2022-11-15T04:05:40.8998078Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask891\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask898\",\"eTag\":\"0x8DAC6BEA912B5DF\",\"lastModified\":\"2022-11-15T04:05:40.9008095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask898\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask899\",\"eTag\":\"0x8DAC6BEA912B5DF\",\"lastModified\":\"2022-11-15T04:05:40.9008095Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask899\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask897\",\"eTag\":\"0x8DAC6BEA912DCEC\",\"lastModified\":\"2022-11-15T04:05:40.9018092Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask897\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask950\",\"eTag\":\"0x8DB5B4B7C8E1B0D\",\"lastModified\":\"2023-05-23T05:06:37.3419789Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask950\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask951\",\"eTag\":\"0x8DB5B4B7C9016FA\",\"lastModified\":\"2023-05-23T05:06:37.3549818Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask951\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask952\",\"eTag\":\"0x8DB5B4B7C90651B\",\"lastModified\":\"2023-05-23T05:06:37.3569819Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask952\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask953\",\"eTag\":\"0x8DB5B4B7C908C20\",\"lastModified\":\"2023-05-23T05:06:37.3579808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask953\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask956\",\"eTag\":\"0x8DB5B4B7C90B359\",\"lastModified\":\"2023-05-23T05:06:37.3589849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask956\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask960\",\"eTag\":\"0x8DB5B4B7C928805\",\"lastModified\":\"2023-05-23T05:06:37.3709829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask960\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask957\",\"eTag\":\"0x8DB5B4B7C92AF11\",\"lastModified\":\"2023-05-23T05:06:37.3719825Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask957\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask964\",\"eTag\":\"0x8DB5B4B7C92D629\",\"lastModified\":\"2023-05-23T05:06:37.3729833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask964\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask958\",\"eTag\":\"0x8DB5B4B7C963182\",\"lastModified\":\"2023-05-23T05:06:37.3949826Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask958\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask961\",\"eTag\":\"0x8DB5B4B7C928805\",\"lastModified\":\"2023-05-23T05:06:37.3709829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask961\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask955\",\"eTag\":\"0x8DB5B4B7C95E358\",\"lastModified\":\"2023-05-23T05:06:37.3929816Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask955\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask988\",\"eTag\":\"0x8DB5B4B7C92D629\",\"lastModified\":\"2023-05-23T05:06:37.3729833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask988\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask963\",\"eTag\":\"0x8DB5B4B7C960A5A\",\"lastModified\":\"2023-05-23T05:06:37.3939802Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask963\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask954\",\"eTag\":\"0x8DB5B4B7C9260DF\",\"lastModified\":\"2023-05-23T05:06:37.3699807Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask954\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask977\",\"eTag\":\"0x8DB5B4B7C965880\",\"lastModified\":\"2023-05-23T05:06:37.3959808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask977\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask966\",\"eTag\":\"0x8DB5B4B7C96A6A6\",\"lastModified\":\"2023-05-23T05:06:37.3979814Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask966\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask986\",\"eTag\":\"0x8DB5B4B7C967F87\",\"lastModified\":\"2023-05-23T05:06:37.3969799Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask986\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask962\",\"eTag\":\"0x8DB5B4B7C96F4DB\",\"lastModified\":\"2023-05-23T05:06:37.3999835Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask962\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask968\",\"eTag\":\"0x8DB5B4B7C96F4DB\",\"lastModified\":\"2023-05-23T05:06:37.3999835Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask968\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask989\",\"eTag\":\"0x8DB5B4B7C98063B\",\"lastModified\":\"2023-05-23T05:06:37.4069819Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask989\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask969\",\"eTag\":\"0x8DB5B4B7C985479\",\"lastModified\":\"2023-05-23T05:06:37.4089849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask969\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask973\",\"eTag\":\"0x8DB5B4B7C987B60\",\"lastModified\":\"2023-05-23T05:06:37.4099808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask973\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask965\",\"eTag\":\"0x8DB5B4B7C987B60\",\"lastModified\":\"2023-05-23T05:06:37.4099808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask965\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask959\",\"eTag\":\"0x8DB5B4B7C98C9A4\",\"lastModified\":\"2023-05-23T05:06:37.4119844Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask959\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask975\",\"eTag\":\"0x8DB5B4B7C982D54\",\"lastModified\":\"2023-05-23T05:06:37.4079828Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask975\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask983\",\"eTag\":\"0x8DB5B4B7C9917B5\",\"lastModified\":\"2023-05-23T05:06:37.4139829Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask983\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask985\",\"eTag\":\"0x8DB5B4B7C9965CC\",\"lastModified\":\"2023-05-23T05:06:37.415982Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask985\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask976\",\"eTag\":\"0x8DB5B4B7C9BAFCC\",\"lastModified\":\"2023-05-23T05:06:37.4309836Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask976\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask971\",\"eTag\":\"0x8DB5B4B7C9C2502\",\"lastModified\":\"2023-05-23T05:06:37.4339842Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask971\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask967\",\"eTag\":\"0x8DB5B4B7C9BFDF9\",\"lastModified\":\"2023-05-23T05:06:37.4329849Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask967\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask974\",\"eTag\":\"0x8DB5B4B7C9C2502\",\"lastModified\":\"2023-05-23T05:06:37.4339842Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask974\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask992\",\"eTag\":\"0x8DB5B4B7C9C2502\",\"lastModified\":\"2023-05-23T05:06:37.4339842Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask992\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask979\",\"eTag\":\"0x8DB5B4B7C9C7323\",\"lastModified\":\"2023-05-23T05:06:37.4359843Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask979\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask984\",\"eTag\":\"0x8DB5B4B7C9C7323\",\"lastModified\":\"2023-05-23T05:06:37.4359843Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask984\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask981\",\"eTag\":\"0x8DB5B4B7C9DD2B0\",\"lastModified\":\"2023-05-23T05:06:37.444984Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask981\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask970\",\"eTag\":\"0x8DB5B4B7C9D5D97\",\"lastModified\":\"2023-05-23T05:06:37.4419863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask970\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask990\",\"eTag\":\"0x8DB5B4B7C9DABA5\",\"lastModified\":\"2023-05-23T05:06:37.4439845Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask990\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask997\",\"eTag\":\"0x8DB5B4B7CA043A7\",\"lastModified\":\"2023-05-23T05:06:37.4609831Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask997\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask982\",\"eTag\":\"0x8DB5B4B7C9DD2B0\",\"lastModified\":\"2023-05-23T05:06:37.444984Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask982\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask987\",\"eTag\":\"0x8DB5B4B7C9DF9B1\",\"lastModified\":\"2023-05-23T05:06:37.4459825Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask987\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask972\",\"eTag\":\"0x8DB5B4B7C9E20BA\",\"lastModified\":\"2023-05-23T05:06:37.4469818Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask972\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask978\",\"eTag\":\"0x8DB5B4B7C9E20BA\",\"lastModified\":\"2023-05-23T05:06:37.4469818Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask978\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask993\",\"eTag\":\"0x8DB5B4B7CA043A7\",\"lastModified\":\"2023-05-23T05:06:37.4609831Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask993\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask980\",\"eTag\":\"0x8DB5B4B7C9FA750\",\"lastModified\":\"2023-05-23T05:06:37.4569808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask980\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask994\",\"eTag\":\"0x8DB5B4B7C9FF589\",\"lastModified\":\"2023-05-23T05:06:37.4589833Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask994\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask998\",\"eTag\":\"0x8DB5B4B7CA043A7\",\"lastModified\":\"2023-05-23T05:06:37.4609831Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask998\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask999\",\"eTag\":\"0x8DB5B4B7C9E47CF\",\"lastModified\":\"2023-05-23T05:06:37.4479823Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask999\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask995\",\"eTag\":\"0x8DB5B4B7C9FA750\",\"lastModified\":\"2023-05-23T05:06:37.4569808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask995\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask991\",\"eTag\":\"0x8DB5B4B7C9C7323\",\"lastModified\":\"2023-05-23T05:06:37.4359843Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask991\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask996\",\"eTag\":\"0x8DB5B4B7C9FA750\",\"lastModified\":\"2023-05-23T05:06:37.4569808Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask996\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "e33ece9c-edb1-4a44-b581-2108ebfaeec5", + "client-request-id" : "71659b08-41d7-4e90-8921-26a44c19a082", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "434d988a-9621-4070-be53-7aa7378ba4d6", + "request-id" : "55f5d07c-25bd-47c8-98ad-cd8e5f0b36cd", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask68\",\"eTag\":\"0x8DAC6BEA8F7D970\",\"lastModified\":\"2022-11-15T04:05:40.7247728Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask68\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask51\",\"eTag\":\"0x8DAC6BEA8F7D970\",\"lastModified\":\"2022-11-15T04:05:40.7247728Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask51\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask66\",\"eTag\":\"0x8DAC6BEA8F7D970\",\"lastModified\":\"2022-11-15T04:05:40.7247728Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask66\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask106\",\"eTag\":\"0x8DAC6BEA8FDA5EB\",\"lastModified\":\"2022-11-15T04:05:40.7627755Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask106\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask104\",\"eTag\":\"0x8DAC6BEA8FE1B1A\",\"lastModified\":\"2022-11-15T04:05:40.7657754Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask104\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask119\",\"eTag\":\"0x8DAC6BEA8FF2C89\",\"lastModified\":\"2022-11-15T04:05:40.7727753Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask119\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask118\",\"eTag\":\"0x8DAC6BEA90A5026\",\"lastModified\":\"2022-11-15T04:05:40.8457766Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask118\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask108\",\"eTag\":\"0x8DAC6BEA90A291D\",\"lastModified\":\"2022-11-15T04:05:40.8447773Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask108\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask117\",\"eTag\":\"0x8DAC6BEA90A291D\",\"lastModified\":\"2022-11-15T04:05:40.8447773Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask117\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask107\",\"eTag\":\"0x8DAC6BEA90B88BC\",\"lastModified\":\"2022-11-15T04:05:40.8537788Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask107\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask114\",\"eTag\":\"0x8DAC6BEA90BD6D6\",\"lastModified\":\"2022-11-15T04:05:40.8557782Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask114\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask111\",\"eTag\":\"0x8DAC6BEA90BD6D6\",\"lastModified\":\"2022-11-15T04:05:40.8557782Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask111\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask126\",\"eTag\":\"0x8DAC6BEA90C7312\",\"lastModified\":\"2022-11-15T04:05:40.8597778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask126\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask70\",\"eTag\":\"0x8DAC6BEA90BD6D6\",\"lastModified\":\"2022-11-15T04:05:40.8557782Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask70\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask109\",\"eTag\":\"0x8DAC6BEA90A9E49\",\"lastModified\":\"2022-11-15T04:05:40.8477769Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask109\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask105\",\"eTag\":\"0x8DAC6BEA90A5026\",\"lastModified\":\"2022-11-15T04:05:40.8457766Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask105\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask115\",\"eTag\":\"0x8DAC6BEA90C4C02\",\"lastModified\":\"2022-11-15T04:05:40.8587778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask115\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask122\",\"eTag\":\"0x8DAC6BEA90C4C02\",\"lastModified\":\"2022-11-15T04:05:40.8587778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask122\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask121\",\"eTag\":\"0x8DAC6BEA90C4C02\",\"lastModified\":\"2022-11-15T04:05:40.8587778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask121\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask110\",\"eTag\":\"0x8DAC6BEA90AC549\",\"lastModified\":\"2022-11-15T04:05:40.8487753Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask110\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask125\",\"eTag\":\"0x8DAC6BEA90C4C02\",\"lastModified\":\"2022-11-15T04:05:40.8587778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask125\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask116\",\"eTag\":\"0x8DAC6BEA90BFDE4\",\"lastModified\":\"2022-11-15T04:05:40.856778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask116\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask124\",\"eTag\":\"0x8DAC6BEA90C7312\",\"lastModified\":\"2022-11-15T04:05:40.8597778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask124\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask112\",\"eTag\":\"0x8DAC6BEA90BD6D6\",\"lastModified\":\"2022-11-15T04:05:40.8557782Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask112\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask127\",\"eTag\":\"0x8DAC6BEA90C7312\",\"lastModified\":\"2022-11-15T04:05:40.8597778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask127\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask120\",\"eTag\":\"0x8DAC6BEA90C4C02\",\"lastModified\":\"2022-11-15T04:05:40.8587778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask120\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask148\",\"eTag\":\"0x8DAC6BEA90C24F6\",\"lastModified\":\"2022-11-15T04:05:40.8577782Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask148\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask113\",\"eTag\":\"0x8DAC6BEA90C24F6\",\"lastModified\":\"2022-11-15T04:05:40.8577782Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask113\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask123\",\"eTag\":\"0x8DAC6BEA90C7312\",\"lastModified\":\"2022-11-15T04:05:40.8597778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask123\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask129\",\"eTag\":\"0x8DAC6BEA90CE843\",\"lastModified\":\"2022-11-15T04:05:40.8627779Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask129\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask128\",\"eTag\":\"0x8DAC6BEA90D0F49\",\"lastModified\":\"2022-11-15T04:05:40.8637769Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask128\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask133\",\"eTag\":\"0x8DAC6BEA90E6EE2\",\"lastModified\":\"2022-11-15T04:05:40.8727778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask133\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask135\",\"eTag\":\"0x8DAC6BEA90E95FA\",\"lastModified\":\"2022-11-15T04:05:40.8737786Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask135\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask141\",\"eTag\":\"0x8DAC6BEA910438D\",\"lastModified\":\"2022-11-15T04:05:40.8847757Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask141\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask136\",\"eTag\":\"0x8DAC6BEA90EE418\",\"lastModified\":\"2022-11-15T04:05:40.8757784Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask136\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask134\",\"eTag\":\"0x8DAC6BEA90EBD0D\",\"lastModified\":\"2022-11-15T04:05:40.8747789Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask134\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask132\",\"eTag\":\"0x8DAC6BEA90EBD0D\",\"lastModified\":\"2022-11-15T04:05:40.8747789Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask132\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask140\",\"eTag\":\"0x8DAC6BEA90F0B22\",\"lastModified\":\"2022-11-15T04:05:40.8767778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask140\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask143\",\"eTag\":\"0x8DAC6BEA90E6EE2\",\"lastModified\":\"2022-11-15T04:05:40.8727778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask143\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask144\",\"eTag\":\"0x8DAC6BEA9106ABF\",\"lastModified\":\"2022-11-15T04:05:40.8857791Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask144\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask146\",\"eTag\":\"0x8DAC6BEA910438D\",\"lastModified\":\"2022-11-15T04:05:40.8847757Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask146\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask147\",\"eTag\":\"0x8DAC6BEA9106ABF\",\"lastModified\":\"2022-11-15T04:05:40.8857791Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask147\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask130\",\"eTag\":\"0x8DAC6BEA90E95FA\",\"lastModified\":\"2022-11-15T04:05:40.8737786Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask130\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask142\",\"eTag\":\"0x8DAC6BEA910438D\",\"lastModified\":\"2022-11-15T04:05:40.8847757Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask142\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask139\",\"eTag\":\"0x8DAC6BEA90F0B22\",\"lastModified\":\"2022-11-15T04:05:40.8767778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask139\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask145\",\"eTag\":\"0x8DAC6BEA910438D\",\"lastModified\":\"2022-11-15T04:05:40.8847757Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask145\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask131\",\"eTag\":\"0x8DAC6BEA90E95FA\",\"lastModified\":\"2022-11-15T04:05:40.8737786Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask131\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask138\",\"eTag\":\"0x8DAC6BEA910B8C8\",\"lastModified\":\"2022-11-15T04:05:40.8877768Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask138\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask137\",\"eTag\":\"0x8DAC6BEA90F0B22\",\"lastModified\":\"2022-11-15T04:05:40.8767778Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask137\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask149\",\"eTag\":\"0x8DAC6BEA90C24F6\",\"lastModified\":\"2022-11-15T04:05:40.8577782Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask149\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask801\",\"eTag\":\"0x8DB5B4B7CA0DFFC\",\"lastModified\":\"2023-05-23T05:06:37.4649852Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask801\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask800\",\"eTag\":\"0x8DB5B4B7CA0B8D4\",\"lastModified\":\"2023-05-23T05:06:37.4639828Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask800\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask810\",\"eTag\":\"0x8DB5B4B7CA28DB7\",\"lastModified\":\"2023-05-23T05:06:37.4759863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask810\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask804\",\"eTag\":\"0x8DB5B4B7CA23F99\",\"lastModified\":\"2023-05-23T05:06:37.4739865Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask804\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask802\",\"eTag\":\"0x8DB5B4B7CA2187F\",\"lastModified\":\"2023-05-23T05:06:37.4729855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask802\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask811\",\"eTag\":\"0x8DB5B4B7CA2B4C3\",\"lastModified\":\"2023-05-23T05:06:37.4769859Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask811\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask821\",\"eTag\":\"0x8DB5B4B7CA302E4\",\"lastModified\":\"2023-05-23T05:06:37.478986Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask821\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask803\",\"eTag\":\"0x8DB5B4B7CA2187F\",\"lastModified\":\"2023-05-23T05:06:37.4729855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask803\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask805\",\"eTag\":\"0x8DB5B4B7CA2DBCB\",\"lastModified\":\"2023-05-23T05:06:37.4779851Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask805\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask816\",\"eTag\":\"0x8DB5B4B7CA302E4\",\"lastModified\":\"2023-05-23T05:06:37.478986Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask816\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask815\",\"eTag\":\"0x8DB5B4B7CA302E4\",\"lastModified\":\"2023-05-23T05:06:37.478986Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask815\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask809\",\"eTag\":\"0x8DB5B4B7CA2B4C3\",\"lastModified\":\"2023-05-23T05:06:37.4769859Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask809\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask808\",\"eTag\":\"0x8DB5B4B7CA28DB7\",\"lastModified\":\"2023-05-23T05:06:37.4759863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask808\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask807\",\"eTag\":\"0x8DB5B4B7CA28DB7\",\"lastModified\":\"2023-05-23T05:06:37.4759863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask807\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask812\",\"eTag\":\"0x8DB5B4B7CA302E4\",\"lastModified\":\"2023-05-23T05:06:37.478986Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask812\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask817\",\"eTag\":\"0x8DB5B4B7CA329EF\",\"lastModified\":\"2023-05-23T05:06:37.4799855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask817\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask819\",\"eTag\":\"0x8DB5B4B7CA329EF\",\"lastModified\":\"2023-05-23T05:06:37.4799855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask819\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask806\",\"eTag\":\"0x8DB5B4B7CA2B4C3\",\"lastModified\":\"2023-05-23T05:06:37.4769859Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask806\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask822\",\"eTag\":\"0x8DB5B4B7CA4B09C\",\"lastModified\":\"2023-05-23T05:06:37.4899868Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask822\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask814\",\"eTag\":\"0x8DB5B4B7CA2DBCB\",\"lastModified\":\"2023-05-23T05:06:37.4779851Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask814\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask823\",\"eTag\":\"0x8DB5B4B7CA329EF\",\"lastModified\":\"2023-05-23T05:06:37.4799855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask823\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask820\",\"eTag\":\"0x8DB5B4B7CA4896E\",\"lastModified\":\"2023-05-23T05:06:37.4889838Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask820\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask825\",\"eTag\":\"0x8DB5B4B7CA4D79F\",\"lastModified\":\"2023-05-23T05:06:37.4909855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask825\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask827\",\"eTag\":\"0x8DB5B4B7CA4FEC2\",\"lastModified\":\"2023-05-23T05:06:37.4919874Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask827\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask830\",\"eTag\":\"0x8DB5B4B7CA573EA\",\"lastModified\":\"2023-05-23T05:06:37.4949866Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask830\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask826\",\"eTag\":\"0x8DB5B4B7CA4FEC2\",\"lastModified\":\"2023-05-23T05:06:37.4919874Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask826\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask829\",\"eTag\":\"0x8DB5B4B7CA525D0\",\"lastModified\":\"2023-05-23T05:06:37.4929872Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask829\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask828\",\"eTag\":\"0x8DB5B4B7CA573EA\",\"lastModified\":\"2023-05-23T05:06:37.4949866Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask828\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask840\",\"eTag\":\"0x8DB5B4B7CA59AFD\",\"lastModified\":\"2023-05-23T05:06:37.4959869Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask840\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask824\",\"eTag\":\"0x8DB5B4B7CA4D79F\",\"lastModified\":\"2023-05-23T05:06:37.4909855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask824\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask836\",\"eTag\":\"0x8DB5B4B7CA573EA\",\"lastModified\":\"2023-05-23T05:06:37.4949866Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask836\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask833\",\"eTag\":\"0x8DB5B4B7CA59AFD\",\"lastModified\":\"2023-05-23T05:06:37.4959869Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask833\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask818\",\"eTag\":\"0x8DB5B4B7CA2DBCB\",\"lastModified\":\"2023-05-23T05:06:37.4779851Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask818\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask831\",\"eTag\":\"0x8DB5B4B7CA525D0\",\"lastModified\":\"2023-05-23T05:06:37.4929872Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask831\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask835\",\"eTag\":\"0x8DB5B4B7CA5C210\",\"lastModified\":\"2023-05-23T05:06:37.4969872Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask835\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask832\",\"eTag\":\"0x8DB5B4B7CA5E91F\",\"lastModified\":\"2023-05-23T05:06:37.4979871Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask832\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask813\",\"eTag\":\"0x8DB5B4B7CA2DBCB\",\"lastModified\":\"2023-05-23T05:06:37.4779851Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask813\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask839\",\"eTag\":\"0x8DB5B4B7CA748A5\",\"lastModified\":\"2023-05-23T05:06:37.5069861Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask839\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask837\",\"eTag\":\"0x8DB5B4B7CA748A5\",\"lastModified\":\"2023-05-23T05:06:37.5069861Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask837\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask834\",\"eTag\":\"0x8DB5B4B7CA76F9F\",\"lastModified\":\"2023-05-23T05:06:37.5079839Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask834\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask847\",\"eTag\":\"0x8DB5B4B7CA748A5\",\"lastModified\":\"2023-05-23T05:06:37.5069861Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask847\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask838\",\"eTag\":\"0x8DB5B4B7CA76F9F\",\"lastModified\":\"2023-05-23T05:06:37.5079839Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask838\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask843\",\"eTag\":\"0x8DB5B4B7CA7E4EF\",\"lastModified\":\"2023-05-23T05:06:37.5109871Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask843\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask841\",\"eTag\":\"0x8DB5B4B7CA796C0\",\"lastModified\":\"2023-05-23T05:06:37.5089856Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask841\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask844\",\"eTag\":\"0x8DB5B4B7CA796C0\",\"lastModified\":\"2023-05-23T05:06:37.5089856Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask844\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask842\",\"eTag\":\"0x8DB5B4B7CA80BFD\",\"lastModified\":\"2023-05-23T05:06:37.5119869Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask842\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask849\",\"eTag\":\"0x8DB5B4B7CA7E4EF\",\"lastModified\":\"2023-05-23T05:06:37.5109871Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask849\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask846\",\"eTag\":\"0x8DB5B4B7CA796C0\",\"lastModified\":\"2023-05-23T05:06:37.5089856Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask846\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask845\",\"eTag\":\"0x8DB5B4B7CA83304\",\"lastModified\":\"2023-05-23T05:06:37.512986Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask845\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask848\",\"eTag\":\"0x8DB5B4B7CA7E4EF\",\"lastModified\":\"2023-05-23T05:06:37.5109871Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask848\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/addtaskcollection?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:05:40 GMT", + "date" : "Tue, 23 May 2023 05:06:37 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "646ace1a-6e04-4fdc-aaff-58c824293ef3", + "client-request-id" : "7906f98e-b2ea-458a-8bc6-e969789d13a8", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "ce8793d5-4e5b-4b9b-bb77-ded91e378ef9", + "request-id" : "9e018a1f-28cc-4000-9cad-83da5fd9fab9", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask953\",\"eTag\":\"0x8DAC6BEA90C7CB1\",\"lastModified\":\"2022-11-15T04:05:40.8600241Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask953\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask950\",\"eTag\":\"0x8DAC6BEA90C5593\",\"lastModified\":\"2022-11-15T04:05:40.8590227Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask950\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask952\",\"eTag\":\"0x8DAC6BEA90C7CB1\",\"lastModified\":\"2022-11-15T04:05:40.8600241Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask952\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask962\",\"eTag\":\"0x8DAC6BEA90CA3C7\",\"lastModified\":\"2022-11-15T04:05:40.8610247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask962\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask954\",\"eTag\":\"0x8DAC6BEA90CA3C7\",\"lastModified\":\"2022-11-15T04:05:40.8610247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask954\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask956\",\"eTag\":\"0x8DAC6BEA90C7CB1\",\"lastModified\":\"2022-11-15T04:05:40.8600241Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask956\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask951\",\"eTag\":\"0x8DAC6BEA90C5593\",\"lastModified\":\"2022-11-15T04:05:40.8590227Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask951\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask959\",\"eTag\":\"0x8DAC6BEA90CA3C7\",\"lastModified\":\"2022-11-15T04:05:40.8610247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask959\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask958\",\"eTag\":\"0x8DAC6BEA90CA3C7\",\"lastModified\":\"2022-11-15T04:05:40.8610247Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask958\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask955\",\"eTag\":\"0x8DAC6BEA90CCABD\",\"lastModified\":\"2022-11-15T04:05:40.8620221Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask955\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask961\",\"eTag\":\"0x8DAC6BEA90DDC2F\",\"lastModified\":\"2022-11-15T04:05:40.8690223Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask961\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask963\",\"eTag\":\"0x8DAC6BEA90DDC2F\",\"lastModified\":\"2022-11-15T04:05:40.8690223Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask963\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask964\",\"eTag\":\"0x8DAC6BEA90DDC2F\",\"lastModified\":\"2022-11-15T04:05:40.8690223Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask964\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask965\",\"eTag\":\"0x8DAC6BEA90DDC2F\",\"lastModified\":\"2022-11-15T04:05:40.8690223Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask965\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask960\",\"eTag\":\"0x8DAC6BEA90E2A5C\",\"lastModified\":\"2022-11-15T04:05:40.8710236Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask960\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask971\",\"eTag\":\"0x8DAC6BEA90E5185\",\"lastModified\":\"2022-11-15T04:05:40.8720261Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask971\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask966\",\"eTag\":\"0x8DAC6BEA90E0349\",\"lastModified\":\"2022-11-15T04:05:40.8700233Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask966\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask970\",\"eTag\":\"0x8DAC6BEA90E0349\",\"lastModified\":\"2022-11-15T04:05:40.8700233Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask970\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask982\",\"eTag\":\"0x8DAC6BEA90E788D\",\"lastModified\":\"2022-11-15T04:05:40.8730253Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask982\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask974\",\"eTag\":\"0x8DAC6BEA90E5185\",\"lastModified\":\"2022-11-15T04:05:40.8720261Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask974\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask972\",\"eTag\":\"0x8DAC6BEA90E5185\",\"lastModified\":\"2022-11-15T04:05:40.8720261Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask972\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask976\",\"eTag\":\"0x8DAC6BEA90E5185\",\"lastModified\":\"2022-11-15T04:05:40.8720261Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask976\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask988\",\"eTag\":\"0x8DAC6BEA90E9FA1\",\"lastModified\":\"2022-11-15T04:05:40.8740257Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask988\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask981\",\"eTag\":\"0x8DAC6BEA90E788D\",\"lastModified\":\"2022-11-15T04:05:40.8730253Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask981\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask985\",\"eTag\":\"0x8DAC6BEA90E9FA1\",\"lastModified\":\"2022-11-15T04:05:40.8740257Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask985\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask986\",\"eTag\":\"0x8DAC6BEA90E788D\",\"lastModified\":\"2022-11-15T04:05:40.8730253Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask986\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask977\",\"eTag\":\"0x8DAC6BEA90E788D\",\"lastModified\":\"2022-11-15T04:05:40.8730253Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask977\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask973\",\"eTag\":\"0x8DAC6BEA90E5185\",\"lastModified\":\"2022-11-15T04:05:40.8720261Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask973\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask979\",\"eTag\":\"0x8DAC6BEA90E788D\",\"lastModified\":\"2022-11-15T04:05:40.8730253Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask979\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask980\",\"eTag\":\"0x8DAC6BEA90E788D\",\"lastModified\":\"2022-11-15T04:05:40.8730253Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask980\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask983\",\"eTag\":\"0x8DAC6BEA90E788D\",\"lastModified\":\"2022-11-15T04:05:40.8730253Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask983\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask978\",\"eTag\":\"0x8DAC6BEA90E5185\",\"lastModified\":\"2022-11-15T04:05:40.8720261Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask978\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask991\",\"eTag\":\"0x8DAC6BEA90EC6AA\",\"lastModified\":\"2022-11-15T04:05:40.875025Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask991\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask975\",\"eTag\":\"0x8DAC6BEA90E5185\",\"lastModified\":\"2022-11-15T04:05:40.8720261Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask975\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask969\",\"eTag\":\"0x8DAC6BEA90E2A5C\",\"lastModified\":\"2022-11-15T04:05:40.8710236Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask969\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask987\",\"eTag\":\"0x8DAC6BEA90E9FA1\",\"lastModified\":\"2022-11-15T04:05:40.8740257Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask987\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask984\",\"eTag\":\"0x8DAC6BEA90E9FA1\",\"lastModified\":\"2022-11-15T04:05:40.8740257Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask984\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask967\",\"eTag\":\"0x8DAC6BEA90E9FA1\",\"lastModified\":\"2022-11-15T04:05:40.8740257Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask967\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask968\",\"eTag\":\"0x8DAC6BEA90E2A5C\",\"lastModified\":\"2022-11-15T04:05:40.8710236Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask968\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask998\",\"eTag\":\"0x8DAC6BEA90EC6AA\",\"lastModified\":\"2022-11-15T04:05:40.875025Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask998\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask989\",\"eTag\":\"0x8DAC6BEA90E9FA1\",\"lastModified\":\"2022-11-15T04:05:40.8740257Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask989\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask993\",\"eTag\":\"0x8DAC6BEA90EC6AA\",\"lastModified\":\"2022-11-15T04:05:40.875025Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask993\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask994\",\"eTag\":\"0x8DAC6BEA90EC6AA\",\"lastModified\":\"2022-11-15T04:05:40.875025Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask994\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask996\",\"eTag\":\"0x8DAC6BEA9102629\",\"lastModified\":\"2022-11-15T04:05:40.8840233Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask996\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask990\",\"eTag\":\"0x8DAC6BEA90EC6AA\",\"lastModified\":\"2022-11-15T04:05:40.875025Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask990\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask995\",\"eTag\":\"0x8DAC6BEA90EEDAC\",\"lastModified\":\"2022-11-15T04:05:40.8760236Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask995\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask997\",\"eTag\":\"0x8DAC6BEA90EEDAC\",\"lastModified\":\"2022-11-15T04:05:40.8760236Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask997\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask957\",\"eTag\":\"0x8DAC6BEA9102629\",\"lastModified\":\"2022-11-15T04:05:40.8840233Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask957\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask999\",\"eTag\":\"0x8DAC6BEA9109B5D\",\"lastModified\":\"2022-11-15T04:05:40.8870237Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask999\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask992\",\"eTag\":\"0x8DAC6BEA9290581\",\"lastModified\":\"2022-11-15T04:05:41.0470273Z\",\"location\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask992\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n {\r\n \"status\":\"Success\",\"taskId\":\"mytask850\",\"eTag\":\"0x8DB5B4B7CA091D3\",\"lastModified\":\"2023-05-23T05:06:37.4629843Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask850\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask851\",\"eTag\":\"0x8DB5B4B7CA0B8D4\",\"lastModified\":\"2023-05-23T05:06:37.4639828Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask851\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask852\",\"eTag\":\"0x8DB5B4B7CA0DFFC\",\"lastModified\":\"2023-05-23T05:06:37.4649852Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask852\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask855\",\"eTag\":\"0x8DB5B4B7CA23F99\",\"lastModified\":\"2023-05-23T05:06:37.4739865Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask855\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask859\",\"eTag\":\"0x8DB5B4B7CA28DB7\",\"lastModified\":\"2023-05-23T05:06:37.4759863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask859\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask865\",\"eTag\":\"0x8DB5B4B7CA28DB7\",\"lastModified\":\"2023-05-23T05:06:37.4759863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask865\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask858\",\"eTag\":\"0x8DB5B4B7CA2669C\",\"lastModified\":\"2023-05-23T05:06:37.4749852Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask858\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask861\",\"eTag\":\"0x8DB5B4B7CA28DB7\",\"lastModified\":\"2023-05-23T05:06:37.4759863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask861\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask856\",\"eTag\":\"0x8DB5B4B7CA23F99\",\"lastModified\":\"2023-05-23T05:06:37.4739865Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask856\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask857\",\"eTag\":\"0x8DB5B4B7CA2669C\",\"lastModified\":\"2023-05-23T05:06:37.4749852Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask857\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask853\",\"eTag\":\"0x8DB5B4B7CA2187F\",\"lastModified\":\"2023-05-23T05:06:37.4729855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask853\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask860\",\"eTag\":\"0x8DB5B4B7CA28DB7\",\"lastModified\":\"2023-05-23T05:06:37.4759863Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask860\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask863\",\"eTag\":\"0x8DB5B4B7CA2B4C3\",\"lastModified\":\"2023-05-23T05:06:37.4769859Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask863\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask866\",\"eTag\":\"0x8DB5B4B7CA329EF\",\"lastModified\":\"2023-05-23T05:06:37.4799855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask866\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask867\",\"eTag\":\"0x8DB5B4B7CA4D79F\",\"lastModified\":\"2023-05-23T05:06:37.4909855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask867\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask869\",\"eTag\":\"0x8DB5B4B7CA4D79F\",\"lastModified\":\"2023-05-23T05:06:37.4909855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask869\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask862\",\"eTag\":\"0x8DB5B4B7CA4B09C\",\"lastModified\":\"2023-05-23T05:06:37.4899868Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask862\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask864\",\"eTag\":\"0x8DB5B4B7CA350FF\",\"lastModified\":\"2023-05-23T05:06:37.4809855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask864\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask880\",\"eTag\":\"0x8DB5B4B7CA573EA\",\"lastModified\":\"2023-05-23T05:06:37.4949866Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask880\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask876\",\"eTag\":\"0x8DB5B4B7CA54CE6\",\"lastModified\":\"2023-05-23T05:06:37.4939878Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask876\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask872\",\"eTag\":\"0x8DB5B4B7CA525D0\",\"lastModified\":\"2023-05-23T05:06:37.4929872Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask872\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask874\",\"eTag\":\"0x8DB5B4B7CA54CE6\",\"lastModified\":\"2023-05-23T05:06:37.4939878Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask874\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask873\",\"eTag\":\"0x8DB5B4B7CA525D0\",\"lastModified\":\"2023-05-23T05:06:37.4929872Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask873\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask884\",\"eTag\":\"0x8DB5B4B7CA573EA\",\"lastModified\":\"2023-05-23T05:06:37.4949866Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask884\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask878\",\"eTag\":\"0x8DB5B4B7CA573EA\",\"lastModified\":\"2023-05-23T05:06:37.4949866Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask878\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask871\",\"eTag\":\"0x8DB5B4B7CA4D79F\",\"lastModified\":\"2023-05-23T05:06:37.4909855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask871\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask886\",\"eTag\":\"0x8DB5B4B7CA5C210\",\"lastModified\":\"2023-05-23T05:06:37.4969872Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask886\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask877\",\"eTag\":\"0x8DB5B4B7CA525D0\",\"lastModified\":\"2023-05-23T05:06:37.4929872Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask877\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask875\",\"eTag\":\"0x8DB5B4B7CA54CE6\",\"lastModified\":\"2023-05-23T05:06:37.4939878Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask875\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask870\",\"eTag\":\"0x8DB5B4B7CA4D79F\",\"lastModified\":\"2023-05-23T05:06:37.4909855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask870\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask887\",\"eTag\":\"0x8DB5B4B7CA59AFD\",\"lastModified\":\"2023-05-23T05:06:37.4959869Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask887\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask889\",\"eTag\":\"0x8DB5B4B7CA5C210\",\"lastModified\":\"2023-05-23T05:06:37.4969872Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask889\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask879\",\"eTag\":\"0x8DB5B4B7CA5E91F\",\"lastModified\":\"2023-05-23T05:06:37.4979871Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask879\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask890\",\"eTag\":\"0x8DB5B4B7CA748A5\",\"lastModified\":\"2023-05-23T05:06:37.5069861Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask890\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask883\",\"eTag\":\"0x8DB5B4B7CA5E91F\",\"lastModified\":\"2023-05-23T05:06:37.4979871Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask883\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask888\",\"eTag\":\"0x8DB5B4B7CA7BDD6\",\"lastModified\":\"2023-05-23T05:06:37.5099862Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask888\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask882\",\"eTag\":\"0x8DB5B4B7CA76F9F\",\"lastModified\":\"2023-05-23T05:06:37.5079839Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask882\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask881\",\"eTag\":\"0x8DB5B4B7CA796C0\",\"lastModified\":\"2023-05-23T05:06:37.5089856Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask881\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask895\",\"eTag\":\"0x8DB5B4B7CA7E4EF\",\"lastModified\":\"2023-05-23T05:06:37.5109871Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask895\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask885\",\"eTag\":\"0x8DB5B4B7CA76F9F\",\"lastModified\":\"2023-05-23T05:06:37.5079839Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask885\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask893\",\"eTag\":\"0x8DB5B4B7CA7E4EF\",\"lastModified\":\"2023-05-23T05:06:37.5109871Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask893\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask892\",\"eTag\":\"0x8DB5B4B7CA796C0\",\"lastModified\":\"2023-05-23T05:06:37.5089856Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask892\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask897\",\"eTag\":\"0x8DB5B4B7CA7E4EF\",\"lastModified\":\"2023-05-23T05:06:37.5109871Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask897\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask896\",\"eTag\":\"0x8DB5B4B7CA7BDD6\",\"lastModified\":\"2023-05-23T05:06:37.5099862Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask896\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask894\",\"eTag\":\"0x8DB5B4B7CA7BDD6\",\"lastModified\":\"2023-05-23T05:06:37.5099862Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask894\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask854\",\"eTag\":\"0x8DB5B4B7CA23F99\",\"lastModified\":\"2023-05-23T05:06:37.4739865Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask854\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask898\",\"eTag\":\"0x8DB5B4B7CA80BFD\",\"lastModified\":\"2023-05-23T05:06:37.5119869Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask898\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask899\",\"eTag\":\"0x8DB5B4B7CA85A19\",\"lastModified\":\"2023-05-23T05:06:37.5139865Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask899\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask868\",\"eTag\":\"0x8DB5B4B7CA329EF\",\"lastModified\":\"2023-05-23T05:06:37.4799855Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask868\"\r\n },{\r\n \"status\":\"Success\",\"taskId\":\"mytask891\",\"eTag\":\"0x8DB5B4B7CA80BFD\",\"lastModified\":\"2023-05-23T05:06:37.5119869Z\",\"location\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/tasks/mytask891\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/taskcounts?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts/taskcounts?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:06:10 GMT", + "date" : "Tue, 23 May 2023 05:07:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "11369ebd-6ef2-425f-b91d-5952a4cb4596", + "client-request-id" : "a1e1518c-4a98-4cb3-be58-e7d70e402c90", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "fd16e89d-3711-490a-a5ec-f22561eda9a6", + "request-id" : "22e30067-36c8-48da-8861-b04249021fd9", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#taskcountsresult/@Element\",\"taskCounts\":{\r\n \"active\":990,\"running\":1,\"completed\":9,\"succeeded\":0,\"failed\":9\r\n },\"taskSlotCounts\":{\r\n \"active\":990,\"running\":1,\"completed\":9,\"succeeded\":0,\"failed\":9\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testGetTaskCounts?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testGetTaskCounts?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:06:10 GMT", + "date" : "Tue, 23 May 2023 05:07:07 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "4436ab9e-73c7-405a-ae19-babe84586db3", + "client-request-id" : "71ffc261-f673-491c-82ae-34fdf62fbe74", "retry-after" : "0", - "request-id" : "0ec6c073-f031-4fb9-8586-ae9da58c1010", + "request-id" : "ca9c973f-e533-4fd7-8f5f-4364a992d543", "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 fec527e30270..80256b1c0757 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,90 +1,86 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:04:58 GMT", + "date" : "Tue, 23 May 2023 05:05:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "eff4631e-212c-4067-9782-9b607b9d72cb", + "request-id" : "0d680127-7604-4f77-b5a0-d53118939506", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 04:04:58 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:56 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "6be495e2-5c11-4c69-aac1-9d76a7ae934e", - "etag" : "0x8DAC6BE8FCE4600", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "a0d9ff41-127d-47e0-9383-7c459afd1015", + "etag" : "0x8DB5B4B6400F4DE", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testJobUser/tasks?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testJobUser/tasks?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:04:58 GMT", + "date" : "Tue, 23 May 2023 05:05:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask", "retry-after" : "0", - "request-id" : "b5bb337f-72c7-4ae0-9a3a-de4d8a86dc47", + "request-id" : "7d307f6c-49b7-4ea0-bbe2-bb56c6748034", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 04:04:58 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:56 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a78ad9cd-9861-4c34-944e-2b72158d693c", - "etag" : "0x8DAC6BE8FE84290", - "location" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask", + "client-request-id" : "020800c8-7526-42fc-bf7a-9412df2118ad", + "etag" : "0x8DB5B4B641D3E4D", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:04:58 GMT", + "date" : "Tue, 23 May 2023 05:05:55 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "1ac3e9ee-3d37-46e0-a501-09c0e7448558", + "request-id" : "3bc5f58b-4324-479b-8dbf-2d60d09d6e08", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 15 Nov 2022 04:04:58 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:56 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f5cc15e1-f855-427f-89ae-c249516c8353", + "client-request-id" : "3e9625e8-41a0-4cf3-bf40-91da1013d28c", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC6BE8FE84290", + "etag" : "0x8DB5B4B641D3E4D", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask\",\"eTag\":\"0x8DAC6BE8FE84290\",\"creationTime\":\"2022-11-15T04:04:58.6795664Z\",\"lastModified\":\"2022-11-15T04:04:58.6795664Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-15T04:04:58.6795664Z\",\"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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testJobUser/tasks/mytask\",\"eTag\":\"0x8DB5B4B641D3E4D\",\"creationTime\":\"2023-05-23T05:05:56.3370061Z\",\"lastModified\":\"2023-05-23T05:05:56.3370061Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T05:05:56.3370061Z\",\"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://sdktest.westus.batch.azure.com/jobs/BatchUser-testJobUser?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testJobUser?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 04:04:58 GMT", + "date" : "Tue, 23 May 2023 05:05:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "24a0d72a-907d-4184-a56e-c300e084f37c", + "client-request-id" : "0e3ebc6e-135e-4049-95be-55e26d88944e", "retry-after" : "0", - "request-id" : "b940ec38-fc60-4a11-bd38-1046d444e0f9", + "request-id" : "19fa4a36-c2e2-44a9-9f5b-e24c18126356", "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 deada1bf3f08..0661dfb9408c 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,221 +1,211 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:03 GMT", + "date" : "Tue, 23 May 2023 05:05:56 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "cca81be2-7980-447e-ad8c-183bcdaf774b", + "request-id" : "31f9b2c5-98bd-4704-8127-fbb320b222ac", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:04 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:57 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "61375ea1-f442-40d6-bd74-e139459d4ca4", - "etag" : "0x8DAC8D2B008A428", - "location" : "https://sdktest.westus.batch.azure.com/jobs/job-1", + "client-request-id" : "64ff51a3-bd5c-4ed3-9a42-36b62f7f6a26", + "etag" : "0x8DB5B4B64F0CC59", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:04 GMT", + "date" : "Tue, 23 May 2023 05:05:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask", "retry-after" : "0", - "request-id" : "306b22ff-0161-4f0d-99cb-3c2c3757fcc8", + "request-id" : "49c4b5f6-9018-4085-b3b2-90e9f18e193d", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:05 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:58 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f794e8fd-b3ca-4041-af51-4b8160d566b4", - "etag" : "0x8DAC8D2B042BFA8", - "location" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask", + "client-request-id" : "e13cecc2-976c-4e11-865e-7b4325ec3235", + "etag" : "0x8DB5B4B654091A0", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-10-01.16.0&%24select=id%2C%20state", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:04 GMT", + "date" : "Tue, 23 May 2023 05:05:58 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "1813c61e-4a4d-49de-bb6f-b869b61ab827", + "client-request-id" : "80f11326-17c7-45b0-a3d3-4a02881ce6a6", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "404435f7-148a-4204-b841-c48fb06e077e", + "request-id" : "46709582-3f08-411e-bfc6-aed72d83ee49", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"running\"\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-10-01.16.0&%24select=id%2C%20state", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:15 GMT", + "date" : "Tue, 23 May 2023 05:06:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "94678295-97cd-4d84-bfa9-d1d8fd6a5805", + "client-request-id" : "5b69e7ef-018c-4d22-bc7b-8c7fffcce3f4", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "5226cb4d-a912-45ab-b586-12a094c22cf5", + "request-id" : "3f2ae8d7-f028-4a73-a16d-0368a2672882", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:15 GMT", + "date" : "Tue, 23 May 2023 05:06:08 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "5341f915-e0b2-486a-9094-0ccc05dfc0c4", + "request-id" : "00e9e172-6191-453d-a199-96bf6d5c95c2", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:05 GMT", + "last-modified" : "Tue, 23 May 2023 05:05:58 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "a5e219cb-d493-400a-95da-ef759388327d", + "client-request-id" : "b6e2c261-0873-4ee0-901f-6a6e866f8808", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D2B042BFA8", + "etag" : "0x8DB5B4B654091A0", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask\",\"eTag\":\"0x8DAC8D2B042BFA8\",\"creationTime\":\"2022-11-17T19:34:05.2198312Z\",\"lastModified\":\"2022-11-17T19:34:05.2198312Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-11-17T19:34:07.153484Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2022-11-17T19:34:06.571188Z\",\"commandLine\":\"bash -c \\\"echo hello\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"../stdout.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"sig=fakeSig&se=2022-11-18T19%3A34%3A05Z&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\":\"sig=fakeSig&se=2022-11-18T19%3A34%3A05Z&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-11-17T19:34:06.623359Z\",\"endTime\":\"2022-11-17T19:34:07.153484Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"nodeUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"taskRootDirectory\":\"workitems/BatchUser-testOutputFiles/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d/files/workitems/BatchUser-testOutputFiles/job-1/mytask\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask\",\"eTag\":\"0x8DB5B4B654091A0\",\"creationTime\":\"2023-05-23T05:05:58.2462368Z\",\"lastModified\":\"2023-05-23T05:05:58.2462368Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2023-05-23T05:05:58.898576Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2023-05-23T05:05:58.341572Z\",\"commandLine\":\"bash -c \\\"echo hello\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"../stdout.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A58Z&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\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A58Z&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\":\"2023-05-23T05:05:58.383828Z\",\"endTime\":\"2023-05-23T05:05:58.898576Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"nodeUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"taskRootDirectory\":\"workitems/BatchUser-testOutputFiles/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d/files/workitems/BatchUser-testOutputFiles/job-1/mytask\"\r\n }\r\n}" } }, { "Method" : "POST", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:16 GMT", + "date" : "Tue, 23 May 2023 05:06:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", - "dataserviceid" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1", "retry-after" : "0", - "request-id" : "4553f3d7-6bc0-4993-97ec-82887f562258", + "request-id" : "09b15a2f-7cc4-441c-8134-297a646f5d04", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:16 GMT", + "last-modified" : "Tue, 23 May 2023 05:06:09 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "3fdf6955-93a0-4572-8032-9a35f7dd7d42", - "etag" : "0x8DAC8D2B6FD55D6", - "location" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1", + "client-request-id" : "2f48f85c-8a3d-4e88-bfbd-5566e1ed2398", + "etag" : "0x8DB5B4B6C156FBD", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1", "dataserviceversion" : "3.0", "Body" : "" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-10-01.16.0&%24select=id%2C%20state", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:16 GMT", + "date" : "Tue, 23 May 2023 05:06:09 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "fb98850c-c696-4c68-a8ad-729fbe28ad22", + "client-request-id" : "e13f5d44-0d97-4420-8ff1-e491f44ba36e", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "07a0a751-c6d9-4b0e-8ba5-1b3cb7ff6d04", + "request-id" : "0fbcae49-42bd-409f-86fb-fab980ad65cc", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2022-10-01.16.0&%24select=id%2C%20state", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:25 GMT", + "date" : "Tue, 23 May 2023 05:06:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "087badf9-811b-4f16-acba-c57a86b1d689", + "client-request-id" : "120cab31-2bfd-41f5-9c1c-dddfd2ebe0bb", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "aae3041c-590d-4c95-8c02-2bee11bf47fa", + "request-id" : "699fabf9-9ab6-45a2-9ecc-b9502d901c5d", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.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://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:26 GMT", + "date" : "Tue, 23 May 2023 05:06:19 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "9095bb9a-19a1-4065-8a76-be68f92a96e5", + "request-id" : "4a2eda80-6bf8-421d-a29a-7f718255c4cf", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Thu, 17 Nov 2022 19:34:16 GMT", + "last-modified" : "Tue, 23 May 2023 05:06:09 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "9c667a61-f207-4fc5-9663-4d37eee69220", + "client-request-id" : "f64a7ea8-3b74-4b97-afd6-c6bb26c8ac42", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC8D2B6FD55D6", + "etag" : "0x8DB5B4B6C156FBD", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask1\",\"url\":\"https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1\",\"eTag\":\"0x8DAC8D2B6FD55D6\",\"creationTime\":\"2022-11-17T19:34:16.508975Z\",\"lastModified\":\"2022-11-17T19:34:16.508975Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-11-17T19:34:19.311215Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2022-11-17T19:34:18.751711Z\",\"commandLine\":\"bash -c \\\"bad command\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"../stdout.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"sig=fakeSig&se=2022-11-18T19%3A34%3A05Z&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\":\"sig=fakeSig&se=2022-11-18T19%3A34%3A05Z&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-11-17T19:34:18.79337Z\",\"endTime\":\"2022-11-17T19:34:19.311215Z\",\"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_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"nodeUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d\",\"taskRootDirectory\":\"workitems/BatchUser-testOutputFiles/job-1/mytask1\",\"taskRootDirectoryUrl\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_174bbecd948b59bdee9f6269edd409a223a90ce03ef1b910296bc05c526ced52_d/files/workitems/BatchUser-testOutputFiles/job-1/mytask1\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask1\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles/tasks/mytask1\",\"eTag\":\"0x8DB5B4B6C156FBD\",\"creationTime\":\"2023-05-23T05:06:09.7076157Z\",\"lastModified\":\"2023-05-23T05:06:09.7076157Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2023-05-23T05:06:14.932941Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2023-05-23T05:06:14.384304Z\",\"commandLine\":\"bash -c \\\"bad command\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"../stdout.txt\",\"destination\":{\r\n \"container\":{\r\n \"containerUrl\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A58Z&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\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A58Z&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\":\"2023-05-23T05:06:14.428204Z\",\"endTime\":\"2023-05-23T05:06:14.932941Z\",\"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_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"nodeUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"taskRootDirectory\":\"workitems/BatchUser-testOutputFiles/job-1/mytask1\",\"taskRootDirectoryUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d/files/workitems/BatchUser-testOutputFiles/job-1/mytask1\"\r\n }\r\n}" } }, { "Method" : "DELETE", - "Uri" : "https://sdktest.westus.batch.azure.com/jobs/BatchUser-testOutputFiles?api-version=2022-10-01.16.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-testOutputFiles?api-version=2023-05-01.17.0", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Thu, 17 Nov 2022 19:34:26 GMT", + "date" : "Tue, 23 May 2023 05:06:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "346e1ed8-5ca5-4151-b902-b36b87bb7861", + "client-request-id" : "43c61200-f765-4240-88b9-56f1f1ed1420", "retry-after" : "0", - "request-id" : "39a1c7a4-8285-4f93-a550-85f1adc4cbc6", + "request-id" : "684d11af-0514-4e87-a338-21bc7a70435d", "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 5260c17c811d..2c4642b57902 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,67 +1,64 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool?api-version=2022-10-01.16.0&%24expand=stats", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool?api-version=2023-05-01.17.0&%24expand=stats", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:40 GMT", + "date" : "Tue, 23 May 2023 04:42:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "retry-after" : "0", - "request-id" : "aba7fb19-0a7c-43c0-8321-962981fb665c", + "request-id" : "609e8508-8fee-424a-85cd-b7dfe3cc697c", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Sat, 12 Nov 2022 01:50:49 GMT", + "last-modified" : "Fri, 19 May 2023 07:53:39 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "45259586-e783-467e-b856-1570ace79b0a", + "client-request-id" : "5055d5ad-6c6f-409a-a763-65a49e819adf", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DAC45052EE8723", + "etag" : "0x8DB583E289D3448", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-testpool\",\"eTag\":\"0x8DAC45052EE8723\",\"lastModified\":\"2022-11-12T01:50:49.4138147Z\",\"creationTime\":\"2022-11-12T01:50:49.4138147Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-11-12T01:50:49.4138147Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-11-12T01:51:50.0098849Z\",\"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/65634139-3762-476b-946d-e221f4cdc2bf/resourceGroups/nikoudsiSDKTest/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/MySubnet\",\"dynamicVNetAssignmentScope\":\"none\"\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-testpool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testpool\",\"eTag\":\"0x8DB583E289D3448\",\"lastModified\":\"2023-05-19T07:53:39.5664968Z\",\"creationTime\":\"2023-05-19T07:53:39.5664968Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-19T07:53:39.5664968Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-19T07:54:32.2100715Z\",\"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/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", - "Uri" : "https://sdktest.westus.batch.azure.com/pools?api-version=2022-10-01.16.0&%24select=id%2C%20state", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0&%24select=id%2C%20state", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:41 GMT", + "date" : "Tue, 23 May 2023 04:42:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "7e8eba88-fdfc-455a-89e1-9ea90dc15479", + "client-request-id" : "b72eb263-df36-4ec7-88f9-f30961541939", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "29d8f4be-dfd9-4caf-9357-e98594eb651f", + "request-id" : "c09deeba-3957-4d8d-ad50-dc78c80bfceb", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-nodeCommunicationMode-testPool\",\"state\":\"deleting\"\r\n },{\r\n \"id\":\"BatchUser-testIaaSpool\",\"state\":\"active\"\r\n },{\r\n \"id\":\"BatchUser-testpool\",\"state\":\"active\"\r\n },{\r\n \"id\":\"C15D0760-3E08-435B-970B-135FC2678EDC\",\"state\":\"active\"\r\n },{\r\n \"id\":\"linuxperfpool\",\"state\":\"active\"\r\n },{\r\n \"id\":\"nikoudsi-pooltest\",\"state\":\"active\"\r\n },{\r\n \"id\":\"PersistOutputsSamplePool\",\"state\":\"active\"\r\n },{\r\n \"id\":\"TopNWordsPool\",\"state\":\"active\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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://sdktest.westus.batch.azure.com/pools?api-version=2022-10-01.16.0&%24filter=state%20eq%20%27deleting%27", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0&%24filter=state%20eq%20%27deleting%27", "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 10/10.0 MacAddressHash:25f5a46ce747e9ac1a28bab51f3971a29d824d064d699b4ac530b6e156af3ba8 Java:1.8.0_202 (BatchServiceClient, 2022-10-01.16.0)", + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 15 Nov 2022 16:10:41 GMT", + "date" : "Tue, 23 May 2023 04:42:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", - "transfer-encoding" : "chunked", "x-content-type-options" : "nosniff", - "client-request-id" : "be9cde8e-cc5f-46b3-a005-a17fd8d507d5", + "client-request-id" : "8a029189-bb69-4157-9bdd-56966e377ad4", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "1ee84b5f-0798-4071-bf3e-62617abf8b5d", + "request-id" : "2b096424-ae55-42b5-8f73-642a69786c09", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdktest.westus.batch.azure.com/$metadata#pools\",\"value\":[\r\n {\r\n \"id\":\"BatchUser-nodeCommunicationMode-testPool\",\"url\":\"https://sdktest.westus.batch.azure.com/pools/BatchUser-nodeCommunicationMode-testPool\",\"eTag\":\"0x8DAC723EECBB074\",\"lastModified\":\"2022-11-15T16:10:37.0455668Z\",\"creationTime\":\"2022-11-15T16:09:35.7325016Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2022-11-15T16:10:37.0455668Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-11-15T16:10:37.0615622Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":3,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"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 },\"targetNodeCommunicationMode\":\"classic\",\"currentNodeCommunicationMode\":\"classic\"\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools\",\"value\":[]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } } ], From 59e9eb3e24687883803294efee8673c4c895cf52 Mon Sep 17 00:00:00 2001 From: ljiaqi Date: Fri, 26 May 2023 07:01:17 +0000 Subject: [PATCH 3/8] Bump the version to a new Major version --- eng/spotbugs-aggregate-report/pom.xml | 2 +- eng/versioning/version_data.txt | 2 +- sdk/batch/microsoft-azure-batch/CHANGELOG.md | 2 +- sdk/batch/microsoft-azure-batch/pom.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/eng/spotbugs-aggregate-report/pom.xml b/eng/spotbugs-aggregate-report/pom.xml index f07edbfe980b..360c7ec67135 100644 --- a/eng/spotbugs-aggregate-report/pom.xml +++ b/eng/spotbugs-aggregate-report/pom.xml @@ -107,7 +107,7 @@ com.microsoft.azure azure-batch - 10.2.0 + 11.0.0 com.microsoft.azure diff --git a/eng/versioning/version_data.txt b/eng/versioning/version_data.txt index b969b541238d..990fb81e90c4 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.1.0;10.2.0 +com.microsoft.azure:azure-batch;10.1.0;11.0.0 com.microsoft.azure:azure-applicationinsights-query;1.0.0-Preview-1;1.0.0-Preview-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 391c1ffe898b..7bb0147abf21 100644 --- a/sdk/batch/microsoft-azure-batch/CHANGELOG.md +++ b/sdk/batch/microsoft-azure-batch/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 10.2.0 (2023-05-23) +## 11.0.0 (2023-05-23) ### Features diff --git a/sdk/batch/microsoft-azure-batch/pom.xml b/sdk/batch/microsoft-azure-batch/pom.xml index 9b02f075ce89..ebdbedf6e47e 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.2.0 + 11.0.0 Microsoft Azure Batch SDK Root This package contains the root module of Microsoft Azure Batch SDK. From 65b3ec0b4f891894036801889063d608cd50e312 Mon Sep 17 00:00:00 2001 From: ljiaqi Date: Fri, 26 May 2023 07:23:48 +0000 Subject: [PATCH 4/8] refined assertion in canCRUDTest and canInstallVMExtension --- .../com/microsoft/azure/batch/PoolTests.java | 4 +- .../test-recordings/canCRUDTest.json | 122 ++++++------ .../canInstallVMExtension.json | 180 ++++++++---------- 3 files changed, 142 insertions(+), 164 deletions(-) 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 959e2642731d..fc41d46ee805 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 @@ -110,7 +110,7 @@ public void canCRUDLowPriIaaSPool() throws Exception { Assert.assertEquals(POOL_LOW_PRI_VM_COUNT, (long) pool.currentLowPriorityNodes()); Assert.assertNotNull("CurrentNodeCommunicationMode should be defined for pool with more than one target dedicated node", pool.currentNodeCommunicationMode()); Assert.assertEquals(NodeCommunicationMode.DEFAULT, pool.targetNodeCommunicationMode()); - Assert.assertNotNull("Should have option on whether to use accelerated networking",pool.networkConfiguration().enableAcceleratedNetworking()); + Assert.assertTrue(pool.networkConfiguration().enableAcceleratedNetworking()); List computeNodes = batchClient.computeNodeOperations().listComputeNodes(poolId); List inboundEndpoints = computeNodes.get(0).endpointConfiguration().inboundEndpoints(); @@ -242,7 +242,7 @@ public void canInstallVMExtension() throws Exception { for(ComputeNode node : computeNodes){ NodeVMExtension nodeVMExtension = batchClient.protocolLayer().computeNodeExtensions().get(poolId, node.id(), VM_EXTENSION_NAME); Assert.assertNotNull(nodeVMExtension); - Assert.assertNotNull("Should have the option on whether to enable vm extension auto upgrade",nodeVMExtension.vmExtension().enableAutomaticUpgrade()); + Assert.assertTrue(nodeVMExtension.vmExtension().enableAutomaticUpgrade()); } // DELETE 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 7ca1a200070e..d208683871c1 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 @@ -7,17 +7,17 @@ "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:40 GMT", + "date" : "Fri, 26 May 2023 07:11:20 GMT", "server" : "Microsoft-HTTPAPI/2.0", "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "retry-after" : "0", - "request-id" : "d9ef2c3e-9599-4c56-ac32-1b8d2b2f851c", + "request-id" : "b7bfef0b-2379-418c-b61e-be8002cd029d", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 05:05:40 GMT", + "last-modified" : "Fri, 26 May 2023 07:11:21 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "2eed979e-7565-4368-9034-5b41c02cdeac", - "etag" : "0x8DB5B4B5AA77004", + "client-request-id" : "cfe80fe3-a17a-48ac-869c-f6e5235c91c3", + "etag" : "0x8DB5DB8687E2D9B", "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/job-1", "dataserviceversion" : "3.0", "Body" : "" @@ -30,17 +30,17 @@ "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:41 GMT", + "date" : "Fri, 26 May 2023 07:11:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", "retry-after" : "0", - "request-id" : "b6138aaa-1d55-470c-9073-ad4f6106ad92", + "request-id" : "0f55d935-aae2-4e32-b7cb-d432cd7d61c3", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 05:05:41 GMT", + "last-modified" : "Fri, 26 May 2023 07:11:22 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0f7adc4e-3f4d-422c-a750-59ad9462d728", - "etag" : "0x8DB5B4B5B56CEC4", + "client-request-id" : "51852262-63f3-43d2-9bca-d863d3352401", + "etag" : "0x8DB5DB8692AD0BF", "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", "dataserviceversion" : "3.0", "Body" : "" @@ -53,19 +53,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:41 GMT", + "date" : "Fri, 26 May 2023 07:11:21 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "085d49bd-be44-4344-8e00-b5dfc4577d77", + "request-id" : "4ba83d68-36c9-4d34-94a0-0b4dbcd82e7e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 05:05:41 GMT", + "last-modified" : "Fri, 26 May 2023 07:11:22 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "d6a25e3f-24cf-48ec-b933-1b82851a0c3f", + "client-request-id" : "fe95e1ff-36b4-4394-b69f-6bee72054d20", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B4B5B56CEC4", + "etag" : "0x8DB5DB8692AD0BF", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5B4B5B56CEC4\",\"creationTime\":\"2023-05-23T05:05:41.6147652Z\",\"lastModified\":\"2023-05-23T05:05:41.6147652Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T05:05:41.6147652Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A41Z&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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5DB8692AD0BF\",\"creationTime\":\"2023-05-26T07:11:22.2836415Z\",\"lastModified\":\"2023-05-26T07:11:22.2836415Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-26T07:11:22.2836415Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-27T07%3A11%3A22Z&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", @@ -75,17 +75,17 @@ "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:41 GMT", + "date" : "Fri, 26 May 2023 07:11:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask", "retry-after" : "0", - "request-id" : "98d07b8c-4ad7-493d-bace-829406893af0", + "request-id" : "ef128e10-d214-418a-814f-a8e823ad93b7", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 05:05:42 GMT", + "last-modified" : "Fri, 26 May 2023 07:11:22 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "93a908e5-a1d5-4c79-b8d5-cdf1bf21e79b", - "etag" : "0x8DB5B4B5B98A24A", + "client-request-id" : "b9294fca-a756-4286-993f-0990a8f85d36", + "etag" : "0x8DB5DB86970E062", "dataserviceversion" : "3.0", "Body" : "" } @@ -97,19 +97,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:41 GMT", + "date" : "Fri, 26 May 2023 07:11:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "3a1f4d95-b047-4c74-af9f-b0a091e27e34", + "request-id" : "e557b62a-63fb-4a3a-9cf5-adfa00a9ffb9", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 05:05:42 GMT", + "last-modified" : "Fri, 26 May 2023 07:11:22 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "f3d88228-cd52-4bec-aac4-6452651ac729", + "client-request-id" : "772cb821-45f6-49c0-bce2-f84d8aea485b", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B4B5B98A24A", + "etag" : "0x8DB5DB86970E062", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5B4B5B98A24A\",\"creationTime\":\"2023-05-23T05:05:41.6147652Z\",\"lastModified\":\"2023-05-23T05:05:42.0461642Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T05:05:41.6147652Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A41Z&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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5DB86970E062\",\"creationTime\":\"2023-05-26T07:11:22.2836415Z\",\"lastModified\":\"2023-05-26T07:11:22.7427938Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-26T07:11:22.2836415Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-27T07%3A11%3A22Z&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", @@ -119,16 +119,16 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:41 GMT", + "date" : "Fri, 26 May 2023 07:11:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "2417c03f-c9d6-435f-87b1-5e0f5c3e2e3f", + "client-request-id" : "5cf300c9-9d4d-461f-951b-e3c85fe4741d", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "bc23b808-2b10-4f63-98e5-56648710bfbf", + "request-id" : "44ed53ae-16ac-442d-b691-fe6a076b56f7", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5B4B5B98A24A\",\"creationTime\":\"2023-05-23T05:05:41.6147652Z\",\"lastModified\":\"2023-05-23T05:05:42.0461642Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T05:05:41.6147652Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A41Z&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://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5DB86970E062\",\"creationTime\":\"2023-05-26T07:11:22.2836415Z\",\"lastModified\":\"2023-05-26T07:11:22.7427938Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-26T07:11:22.2836415Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-27T07%3A11%3A22Z&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" } }, { @@ -139,13 +139,13 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:41 GMT", + "date" : "Fri, 26 May 2023 07:11:22 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "1d99515b-e50c-4528-8f3d-7f4228e17b51", + "client-request-id" : "789e71b9-c8cf-459e-9df4-2d484360da6a", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "1b1a68c4-7172-434c-a9ad-93e995ae2dda", + "request-id" : "903526a7-83f3-4270-a992-f7498e86b739", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"active\"\r\n }\r\n ]\r\n}", @@ -159,13 +159,13 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:52 GMT", + "date" : "Fri, 26 May 2023 07:11:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "925b6db6-2f2b-458a-868b-50634b48f582", + "client-request-id" : "7dfa321a-644f-4435-9d4a-192e8080f65c", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "2fee51f7-97f0-4745-bec0-3211ca5ee8c3", + "request-id" : "1ce721e9-1b2c-4cc6-b4a8-7d08fb542cc0", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n {\r\n \"id\":\"mytask\",\"state\":\"completed\"\r\n }\r\n ]\r\n}", @@ -179,19 +179,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:52 GMT", + "date" : "Fri, 26 May 2023 07:11:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "f21fe0c1-405b-4731-bcc6-d7d5472a2c54", + "request-id" : "58585ed8-3010-4f5e-bea0-bdcfff8002eb", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 05:05:42 GMT", + "last-modified" : "Fri, 26 May 2023 07:11:22 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "bca63540-7ff3-4081-9e70-1a5edb8457d7", + "client-request-id" : "ab09645f-c03d-444d-a514-6c4d63763ca3", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B4B5B98A24A", + "etag" : "0x8DB5DB86970E062", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5B4B5B98A24A\",\"creationTime\":\"2023-05-23T05:05:41.6147652Z\",\"lastModified\":\"2023-05-23T05:05:42.0461642Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2023-05-23T05:05:43.493008Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2023-05-23T05:05:43.357366Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-24T05%3A05%3A41Z&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\":\"2023-05-23T05:05:43.399362Z\",\"endTime\":\"2023-05-23T05:05:43.493008Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"nodeUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"taskRootDirectory\":\"workitems/BatchUser-canCRUDTest/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d/files/workitems/BatchUser-canCRUDTest/job-1/mytask\"\r\n }\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"mytask\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/jobs/BatchUser-canCRUDTest/tasks/mytask\",\"eTag\":\"0x8DB5DB86970E062\",\"creationTime\":\"2023-05-26T07:11:22.2836415Z\",\"lastModified\":\"2023-05-26T07:11:22.7427938Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2023-05-26T07:11:23.773484Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2023-05-26T07:11:23.611487Z\",\"commandLine\":\"/bin/bash -c 'set -e; set -o pipefail; cat test.txt'\",\"resourceFiles\":[\r\n {\r\n \"httpUrl\":\"sig=fakeSig&se=2023-05-27T07%3A11%3A22Z&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\":\"2023-05-26T07:11:23.669737Z\",\"endTime\":\"2023-05-26T07:11:23.773484Z\",\"exitCode\":0,\"result\":\"success\",\"retryCount\":0,\"requeueCount\":0\r\n },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"nodeUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"poolId\":\"BatchUser-testIaaSpool\",\"nodeId\":\"tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d\",\"taskRootDirectory\":\"workitems/BatchUser-canCRUDTest/job-1/mytask\",\"taskRootDirectoryUrl\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-testIaaSpool/nodes/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d/files/workitems/BatchUser-canCRUDTest/job-1/mytask\"\r\n }\r\n}" } }, { "Method" : "GET", @@ -201,18 +201,18 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:52 GMT", + "date" : "Fri, 26 May 2023 07:11:33 GMT", "server" : "Microsoft-HTTPAPI/2.0", "ocp-batch-file-mode" : "0o100644", "ocp-batch-file-isdirectory" : "False", "ocp-batch-file-url" : "https%3A%2F%2Fsdkbatchaccount.westcentralus.batch.azure.com%2Fjobs%2FBatchUser-canCRUDTest%2Ftasks%2Fmytask%2Ffiles%2Fstdout.txt", "retry-after" : "0", - "request-id" : "fd1d7dc3-5afe-44b4-8939-0b797303825c", + "request-id" : "de47fbd4-6528-4c9a-aaf6-76c6ec626f87", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 05:05:43 GMT", + "last-modified" : "Fri, 26 May 2023 07:11:23 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "26163b46-18fe-457b-aafb-770a2fb17395", + "client-request-id" : "22825bd8-9659-4841-9e40-7d07631cb85a", "content-type" : "text/plain", "dataserviceversion" : "3.0", "Body" : "This is an example" @@ -225,16 +225,16 @@ "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:53 GMT", + "date" : "Fri, 26 May 2023 07:11:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "68c9c25e-ef34-4aa0-943e-98468855e32f", + "client-request-id" : "4d891e41-8fa5-4013-92be-74a4447d90a6", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "c5daaf6a-b8a6-494f-8826-40bc53e60d54", + "request-id" : "17ae6b66-1012-4d9b-b46d-7254ad56e2ac", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.UploadBatchServiceLogsResult\",\"virtualDirectoryName\":\"sdkbatchaccount-22EED04E5AF66D02/batchuser-testiaaspool/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d/c5daaf6a-b8a6-494f-8826-40bc53e60d54\",\"numberOfFilesUploaded\":1\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.UploadBatchServiceLogsResult\",\"virtualDirectoryName\":\"sdkbatchaccount-22EED04E5AF66D02/batchuser-testiaaspool/tvmps_344ddde05e8271a209117b11463b1d0bc6d50595feda7f9d73c827cd1697fe45_d/17ae6b66-1012-4d9b-b46d-7254ad56e2ac\",\"numberOfFilesUploaded\":1\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { @@ -245,12 +245,12 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:53 GMT", + "date" : "Fri, 26 May 2023 07:11:34 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "7d1f3e53-186f-407c-9ec7-c768f3c33742", + "client-request-id" : "35d89ac9-6937-4d30-b4fc-e4467a817b45", "retry-after" : "0", - "request-id" : "d5da534a-f195-4fdb-b829-de69f747d360", + "request-id" : "95e07e3f-c80c-4131-8407-c27686d2ff7c", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "", @@ -264,17 +264,17 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:53 GMT", + "date" : "Fri, 26 May 2023 07:11:34 GMT", "content-length" : "343", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "b77da486-06cc-4768-a5a1-d879183d460e", + "client-request-id" : "5cbb1a2c-e194-42e7-90bf-2c02cd4b8bed", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "f262a9e5-98ab-47d0-a8c5-588f3214d1b9", + "request-id" : "344cb526-3b9d-4ad7-844a-9c747655d051", "StatusCode" : "404", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:f262a9e5-98ab-47d0-a8c5-588f3214d1b9\\nTime:2023-05-23T05:05:54.5606011Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:344cb526-3b9d-4ad7-844a-9c747655d051\\nTime:2023-05-26T07:11:35.3578624Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { @@ -285,12 +285,12 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 05:05:53 GMT", + "date" : "Fri, 26 May 2023 07:11:35 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "3968a189-2a9c-49b6-8031-329d299dc0a7", + "client-request-id" : "b078573e-5559-4d80-bf3b-58a20da24a23", "retry-after" : "0", - "request-id" : "0886f98c-097b-44dd-9b5c-0d8d788c04ca", + "request-id" : "82b79fe9-1c20-488c-bba8-19ce9f873dc7", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canInstallVMExtension.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canInstallVMExtension.json index e4fa8863364b..5d445d51fecc 100644 --- a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canInstallVMExtension.json +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canInstallVMExtension.json @@ -7,17 +7,17 @@ "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:42:36 GMT", + "date" : "Fri, 26 May 2023 07:07:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension", "retry-after" : "0", - "request-id" : "7fd0c7bf-ad2a-4a8e-a4fe-80b123378078", + "request-id" : "36ab4dc1-0555-439d-b062-2699975a6138", "StatusCode" : "201", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:42:37 GMT", + "last-modified" : "Fri, 26 May 2023 07:07:43 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "c734206e-8ae5-4904-b8fc-b58d54c29331", - "etag" : "0x8DB5B48220D94F2", + "client-request-id" : "8f989bfd-d037-44d0-a11a-829adff16fdc", + "etag" : "0x8DB5DB7E6E1C5BD", "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension", "dataserviceversion" : "3.0", "Body" : "" @@ -30,19 +30,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:42:37 GMT", + "date" : "Fri, 26 May 2023 07:07:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "1c0ed484-0015-428a-8140-02b3a09d76ea", + "request-id" : "7f989dd0-4e82-4527-9106-6cbb88ffb318", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:42:37 GMT", + "last-modified" : "Fri, 26 May 2023 07:07:43 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "da210bca-9fa0-481a-924a-6b5df9261f40", + "client-request-id" : "9b9c428f-f5a8-4cc5-9fd1-6499b7d3f5b0", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B48220D94F2", + "etag" : "0x8DB5DB7E6E1C5BD", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B48220D94F2\",\"lastModified\":\"2023-05-23T04:42:37.0145522Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:42:37.0145522Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:42:37.0145522Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"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\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5DB7E6E1C5BD\",\"lastModified\":\"2023-05-26T07:07:43.7011389Z\",\"creationTime\":\"2023-05-26T07:07:43.7011389Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-26T07:07:43.7011389Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-26T07:07:43.7011389Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"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\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\"\r\n}" } }, { "Method" : "GET", @@ -52,19 +52,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:43:07 GMT", + "date" : "Fri, 26 May 2023 07:08:14 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "82fdd577-795c-460e-a5d9-9b515e7a10bc", + "request-id" : "caa8cf4c-b00a-4b70-bacd-5af406edad0a", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:42:37 GMT", + "last-modified" : "Fri, 26 May 2023 07:07:43 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "ab4d214f-248c-414d-9752-1d3160894f6b", + "client-request-id" : "fceb84a4-3cf2-4c65-b43e-b297e4c93ba6", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B48220D94F2", + "etag" : "0x8DB5DB7E6E1C5BD", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B48220D94F2\",\"lastModified\":\"2023-05-23T04:42:37.0145522Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:42:37.0145522Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:42:37.0145522Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"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\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5DB7E6E1C5BD\",\"lastModified\":\"2023-05-26T07:07:43.7011389Z\",\"creationTime\":\"2023-05-26T07:07:43.7011389Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-26T07:07:43.7011389Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-26T07:07:43.7011389Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"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\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\"\r\n}" } }, { "Method" : "GET", @@ -74,19 +74,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:43:37 GMT", + "date" : "Fri, 26 May 2023 07:08:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "be6e2dae-3a9a-4cc4-b9d8-15edceb8b9ef", + "request-id" : "d13a8e5f-f2df-4df3-baab-d33f5a02a8fb", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:42:37 GMT", + "last-modified" : "Fri, 26 May 2023 07:07:43 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "eb5aa351-8ac4-48b1-bf84-14f25a812432", + "client-request-id" : "fcaa1293-032d-4c78-a7d7-975ce3546baf", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B48220D94F2", + "etag" : "0x8DB5DB7E6E1C5BD", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B48220D94F2\",\"lastModified\":\"2023-05-23T04:42:37.0145522Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-23T04:42:37.0145522Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:34.5089649Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":1,\"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\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5DB7E6E1C5BD\",\"lastModified\":\"2023-05-26T07:07:43.7011389Z\",\"creationTime\":\"2023-05-26T07:07:43.7011389Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-05-26T07:07:43.7011389Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-05-26T07:08:40.4179036Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":1,\"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\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", @@ -96,32 +96,32 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:43:37 GMT", + "date" : "Fri, 26 May 2023 07:08:43 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "e1797ba5-0de1-4a80-ae3d-a3604ea99741", + "client-request-id" : "cdfc37ca-3d0b-4a43-b679-35de8fbd2c67", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "d56c2062-da18-4c03-971e-92979880a374", + "request-id" : "707f1d9e-01d0-48f1-a36e-91555ed1fad7", "StatusCode" : "200", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_5d83eb1bd23a5c99890f40b74a29d056fa67d0430c300f796ac03380517fc5c4_p\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_5d83eb1bd23a5c99890f40b74a29d056fa67d0430c300f796ac03380517fc5c4_p\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2023-05-23T04:43:34.5372822Z\",\"allocationTime\":\"2023-05-23T04:43:33.5841201Z\",\"ipAddress\":\"10.0.0.7\",\"affinityId\":\"TVM:tvmps_5d83eb1bd23a5c99890f40b74a29d056fa67d0430c300f796ac03380517fc5c4_p\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":false,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.69.17.78\",\"publicFQDN\":\"dnsd9221449-1fd9-4a4c-a39f-b3ddb10f6498-azurebatch-cloudservice.westcentralus.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.202305220\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_cdae8dde77e87891bf52af307a9a3d1cd04f54e9ef6f4bd60d0e335d9dd77052_d\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_cdae8dde77e87891bf52af307a9a3d1cd04f54e9ef6f4bd60d0e335d9dd77052_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2023-05-23T04:43:29.4587127Z\",\"allocationTime\":\"2023-05-23T04:43:28.561738Z\",\"ipAddress\":\"10.0.0.6\",\"affinityId\":\"TVM:tvmps_cdae8dde77e87891bf52af307a9a3d1cd04f54e9ef6f4bd60d0e335d9dd77052_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.69.17.51\",\"publicFQDN\":\"dns9d6d8128-f762-45cc-bb79-1296d18c3e17-azurebatch-cloudservice.westcentralus.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.202305220\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n {\r\n \"id\":\"tvmps_2f7c121b21ffeeae448f8f212e0e5f23d316d779f804f6d526d46855637daf6b_d\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_2f7c121b21ffeeae448f8f212e0e5f23d316d779f804f6d526d46855637daf6b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2023-05-26T07:08:40.4805868Z\",\"allocationTime\":\"2023-05-26T07:08:40.1039003Z\",\"ipAddress\":\"10.0.0.7\",\"affinityId\":\"TVM:tvmps_2f7c121b21ffeeae448f8f212e0e5f23d316d779f804f6d526d46855637daf6b_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"4.255.200.109\",\"publicFQDN\":\"dns1b5d797d-1c75-4dcf-b2ad-5b32d79ccefc-azurebatch-cloudservice.westcentralus.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.202305220\"\r\n }\r\n }\r\n },{\r\n \"id\":\"tvmps_d2e269fbf89ba49268413f9fbfe6805ec6758743c9c5a7292de70e4cf0b23ef1_p\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_d2e269fbf89ba49268413f9fbfe6805ec6758743c9c5a7292de70e4cf0b23ef1_p\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2023-05-26T07:08:35.6221143Z\",\"allocationTime\":\"2023-05-26T07:08:35.1209451Z\",\"ipAddress\":\"10.0.0.6\",\"affinityId\":\"TVM:tvmps_d2e269fbf89ba49268413f9fbfe6805ec6758743c9c5a7292de70e4cf0b23ef1_p\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":false,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"4.255.200.94\",\"publicFQDN\":\"dnse5d9c488-5a02-4852-adea-dc59325b9bfb-azurebatch-cloudservice.westcentralus.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.202305220\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { "Method" : "GET", - "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_5d83eb1bd23a5c99890f40b74a29d056fa67d0430c300f796ac03380517fc5c4_p/extensions/secretext?api-version=2023-05-01.17.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_2f7c121b21ffeeae448f8f212e0e5f23d316d779f804f6d526d46855637daf6b_d/extensions/secretext?api-version=2023-05-01.17.0", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:43:41 GMT", + "date" : "Fri, 26 May 2023 07:08:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "e97cb2ed-fa6b-4f9f-9623-403ce46c27cf", + "request-id" : "e9add905-bce3-439b-8cc5-51326cc70c35", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#extensions/@Element\",\"provisioningState\":\"Creating\",\"instanceView\":{},\"vmExtension\":{\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":false,\"enableAutomaticUpgrade\":true\r\n }\r\n}", @@ -129,18 +129,18 @@ } }, { "Method" : "GET", - "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_cdae8dde77e87891bf52af307a9a3d1cd04f54e9ef6f4bd60d0e335d9dd77052_d/extensions/secretext?api-version=2023-05-01.17.0", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension/nodes/tvmps_d2e269fbf89ba49268413f9fbfe6805ec6758743c9c5a7292de70e4cf0b23ef1_p/extensions/secretext?api-version=2023-05-01.17.0", "Headers" : { "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:43:41 GMT", + "date" : "Fri, 26 May 2023 07:08:44 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "26fb3bd3-be6b-49fd-88a6-7b8a2c0dd84c", + "request-id" : "54ceffd9-2599-4b3e-a9c7-5a3a48e67ec7", "StatusCode" : "200", "dataserviceversion" : "3.0", "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#extensions/@Element\",\"provisioningState\":\"Creating\",\"instanceView\":{},\"vmExtension\":{\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":false,\"enableAutomaticUpgrade\":true\r\n }\r\n}", @@ -154,12 +154,12 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:43:42 GMT", + "date" : "Fri, 26 May 2023 07:08:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "4a815f56-2214-4fdb-b02d-176c178fdfdd", + "client-request-id" : "c7f58038-1491-4b1e-9392-8f094b73022f", "retry-after" : "0", - "request-id" : "03f3bc24-30c3-445c-85ba-d3696044f73a", + "request-id" : "4aff743e-34b3-48f9-8fa2-8a41e2a25f9c", "StatusCode" : "202", "dataserviceversion" : "3.0", "Body" : "", @@ -173,19 +173,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:43:42 GMT", + "date" : "Fri, 26 May 2023 07:08:45 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "b1b06a6a-fe0c-43a7-b063-2dc90a3532f4", + "request-id" : "2b6feaaf-58e0-4683-b154-660eba9fb0be", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "last-modified" : "Fri, 26 May 2023 07:08:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "4ec96902-8ae1-4eab-8e77-091c831e78e1", + "client-request-id" : "333d3310-75ca-440b-a944-98e2b550c491", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B4848FA761E", + "etag" : "0x8DB5DB80BD4D04A", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5DB80BD4D04A\",\"lastModified\":\"2023-05-26T07:08:45.6919114Z\",\"creationTime\":\"2023-05-26T07:07:43.7011389Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-26T07:08:45.6919114Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-26T07:08:45.7059062Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", @@ -195,19 +195,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:43:57 GMT", + "date" : "Fri, 26 May 2023 07:09:00 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "23966f9c-c4c8-4890-8f14-2702eec8fce5", + "request-id" : "ce00dc92-c6a7-42d5-9f33-dcb03666181e", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "last-modified" : "Fri, 26 May 2023 07:08:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0eec9a60-d3cf-41fa-a1d1-b403138ceacc", + "client-request-id" : "eaa77d7c-6667-46fc-8e87-38c53bdda4a0", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B4848FA761E", + "etag" : "0x8DB5DB80BD4D04A", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5DB80BD4D04A\",\"lastModified\":\"2023-05-26T07:08:45.6919114Z\",\"creationTime\":\"2023-05-26T07:07:43.7011389Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-26T07:08:45.6919114Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-26T07:08:45.7059062Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", @@ -217,19 +217,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:44:12 GMT", + "date" : "Fri, 26 May 2023 07:09:15 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "e3a4da77-2ae7-4e68-9c3a-b7f727351d78", + "request-id" : "e3f0a505-c8a6-48f9-a5c1-d4eedd47e58f", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "last-modified" : "Fri, 26 May 2023 07:08:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "b8de2b95-463a-4ec5-9508-96186c31dc0b", + "client-request-id" : "532a4134-5015-4f21-8f89-79fa0c2e1c13", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B4848FA761E", + "etag" : "0x8DB5DB80BD4D04A", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5DB80BD4D04A\",\"lastModified\":\"2023-05-26T07:08:45.6919114Z\",\"creationTime\":\"2023-05-26T07:07:43.7011389Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-26T07:08:45.6919114Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-26T07:08:45.7059062Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", @@ -239,19 +239,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:44:27 GMT", + "date" : "Fri, 26 May 2023 07:09:31 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "4eb936b0-000b-44eb-8304-65974b65c65b", + "request-id" : "52cb4210-0262-4a9a-b8b0-bd2970ce3afc", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "last-modified" : "Fri, 26 May 2023 07:08:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "18f32586-be10-4e13-826d-e5c26aac363e", + "client-request-id" : "2d0140d4-0cce-4fde-a9ed-d089f01a9b0c", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B4848FA761E", + "etag" : "0x8DB5DB80BD4D04A", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5DB80BD4D04A\",\"lastModified\":\"2023-05-26T07:08:45.6919114Z\",\"creationTime\":\"2023-05-26T07:07:43.7011389Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-26T07:08:45.6919114Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-26T07:08:45.7059062Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", @@ -261,19 +261,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:44:43 GMT", + "date" : "Fri, 26 May 2023 07:09:46 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "199d6f78-5816-47a4-81cc-99ba31b5ddfd", + "request-id" : "49cf818e-ee5e-430e-b516-42b8ce473b3c", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "last-modified" : "Fri, 26 May 2023 07:08:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "0c3cb1fe-09ab-4414-a955-bad061e32249", + "client-request-id" : "7267bd17-7c38-40cc-a468-19138007baae", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B4848FA761E", + "etag" : "0x8DB5DB80BD4D04A", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5DB80BD4D04A\",\"lastModified\":\"2023-05-26T07:08:45.6919114Z\",\"creationTime\":\"2023-05-26T07:07:43.7011389Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-26T07:08:45.6919114Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-26T07:08:45.7059062Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", @@ -283,19 +283,19 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:44:57 GMT", + "date" : "Fri, 26 May 2023 07:10:01 GMT", "server" : "Microsoft-HTTPAPI/2.0", "retry-after" : "0", - "request-id" : "a075db51-dec8-42b6-a500-5f54a770c19e", + "request-id" : "ead7137c-9f9d-4dea-af4a-c3bd1923d8e9", "StatusCode" : "200", "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", + "last-modified" : "Fri, 26 May 2023 07:08:45 GMT", "x-content-type-options" : "nosniff", - "client-request-id" : "782a7fa7-833b-4add-b48a-c90efb40e41c", + "client-request-id" : "f9dd84ef-97dc-46d8-82fe-6b6213ecb952", "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B4848FA761E", + "etag" : "0x8DB5DB80BD4D04A", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5DB80BD4D04A\",\"lastModified\":\"2023-05-26T07:08:45.6919114Z\",\"creationTime\":\"2023-05-26T07:07:43.7011389Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-26T07:08:45.6919114Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-26T07:08:45.7059062Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" } }, { "Method" : "GET", @@ -305,39 +305,17 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:45:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "retry-after" : "0", - "request-id" : "eb96d068-c900-44fb-b1d7-4519312a7ca2", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "last-modified" : "Tue, 23 May 2023 04:43:42 GMT", - "x-content-type-options" : "nosniff", - "client-request-id" : "e96b9718-0e48-4e51-ba2f-61f26de5ffbd", - "content-type" : "application/json;odata=minimalmetadata", - "etag" : "0x8DB5B4848FA761E", - "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-installVMExtension\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension\",\"eTag\":\"0x8DB5B4848FA761E\",\"lastModified\":\"2023-05-23T04:43:42.320387Z\",\"creationTime\":\"2023-05-23T04:42:37.0145522Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-05-23T04:43:42.320387Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-05-23T04:43:42.3353874Z\",\"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 },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"extensions\":[\r\n {\r\n \"name\":\"secretext\",\"publisher\":\"Microsoft.Azure.KeyVault\",\"type\":\"KeyVaultForLinux\",\"typeHandlerVersion\":\"1.0\",\"enableAutomaticUpgrade\":true\r\n }\r\n ]\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"targetNodeCommunicationMode\":\"default\",\"currentNodeCommunicationMode\":\"classic\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-installVMExtension?api-version=2023-05-01.17.0", - "Headers" : { - "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_361 (BatchServiceClient, 2023-05-01.17.0)", - "Content-Type" : "application/json; charset=utf-8" - }, - "Response" : { - "date" : "Tue, 23 May 2023 04:45:28 GMT", + "date" : "Fri, 26 May 2023 07:10:16 GMT", "content-length" : "343", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "62778cde-8d6d-498a-a829-29be9d396a75", + "client-request-id" : "63763018-bae4-40ce-bb7b-5a08f3c1163f", "content-type" : "application/json;odata=minimalmetadata", "retry-after" : "0", - "request-id" : "d2be7118-b0f3-4f5e-ada6-455428d57a9a", + "request-id" : "98362910-583b-4293-9ae6-89baad2be2c4", "StatusCode" : "404", "dataserviceversion" : "3.0", - "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:d2be7118-b0f3-4f5e-ada6-455428d57a9a\\nTime:2023-05-23T04:45:28.8427600Z\"\r\n }\r\n}", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:98362910-583b-4293-9ae6-89baad2be2c4\\nTime:2023-05-26T07:10:17.0048862Z\"\r\n }\r\n}", "strict-transport-security" : "max-age=31536000; includeSubDomains" } }, { @@ -348,12 +326,12 @@ "Content-Type" : "application/json; charset=utf-8" }, "Response" : { - "date" : "Tue, 23 May 2023 04:45:28 GMT", + "date" : "Fri, 26 May 2023 07:10:16 GMT", "server" : "Microsoft-HTTPAPI/2.0", "x-content-type-options" : "nosniff", - "client-request-id" : "f7b5af62-7c75-4469-848c-2aeb8b084d6e", + "client-request-id" : "ba82b782-1dc2-49e3-9a1c-f08f9d5b43ba", "retry-after" : "0", - "request-id" : "34e7267f-3e01-4247-bdf9-bc47c214ea71", + "request-id" : "e9e4fda0-82ea-467e-a0ca-368a87cdb9be", "StatusCode" : "404", "dataserviceversion" : "3.0", "Body" : "", From 7f3e14ac18cb661175efb21d8cda0de92a71ca25 Mon Sep 17 00:00:00 2001 From: ljiaqi Date: Tue, 30 May 2023 05:07:22 +0000 Subject: [PATCH 5/8] =?UTF-8?q?Included=20the=20Certificate=20Deprecation?= =?UTF-8?q?=20notice=20in=20CHANGELOG.md=20and=20removed=20the=20@Deprecat?= =?UTF-8?q?ed=20annotation=20of=20private=20feild=20=E2=80=9CcertificateOp?= =?UTF-8?q?erations=E2=80=9D=20in=20BatchClient.java?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sdk/batch/microsoft-azure-batch/CHANGELOG.md | 3 +++ .../src/main/java/com/microsoft/azure/batch/BatchClient.java | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/sdk/batch/microsoft-azure-batch/CHANGELOG.md b/sdk/batch/microsoft-azure-batch/CHANGELOG.md index 7bb0147abf21..7e58492a2596 100644 --- a/sdk/batch/microsoft-azure-batch/CHANGELOG.md +++ b/sdk/batch/microsoft-azure-batch/CHANGELOG.md @@ -22,6 +22,9 @@ ### Other Changes +- Added @Deprecated annotation to the `CertificateOperations` class. + - This operation is deprecated and will be removed after February 2024. Please use the [Azure KeyVault Extension](https://learn.microsoft.com/azure/batch/batch-certificate-migration-guide) instead. + ## 10.1.0 (2022-11-15) diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/BatchClient.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/BatchClient.java index 90084c5b57f7..4fb2d88751a9 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/BatchClient.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/BatchClient.java @@ -23,7 +23,6 @@ public class BatchClient { private final BatchServiceClient protocolLayer; - @Deprecated private final CertificateOperations certificateOperations; private final JobOperations jobOperations; private final TaskOperations taskOperations; From c457a07797c1e656c01da1d5941eb9d5c25de5e1 Mon Sep 17 00:00:00 2001 From: ljiaqi Date: Fri, 2 Jun 2023 06:36:44 +0000 Subject: [PATCH 6/8] Updated CHANGELOG.md: remove content about container type in Breaking Changes --- sdk/batch/microsoft-azure-batch/CHANGELOG.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sdk/batch/microsoft-azure-batch/CHANGELOG.md b/sdk/batch/microsoft-azure-batch/CHANGELOG.md index 7e58492a2596..c8a38282cf1e 100644 --- a/sdk/batch/microsoft-azure-batch/CHANGELOG.md +++ b/sdk/batch/microsoft-azure-batch/CHANGELOG.md @@ -4,15 +4,12 @@ ### Features -- Added new customer enum type `ContainerType`. - - This property determines the container technology to be used. - - Possible values: docker_compatible, cri_compatible. +- Added a new enum `CriCompatible` to type `ContainerType`. - Added boolean property `enableAutomaticUpgrade` to the `VMExtension` model to determine whether the extension should be automatically upgraded by the platform if there is a newer version of the extension available. - Added boolean property `enableAcceleratedNetworking` to the `NetworkConfiguration` model to determine whether this pool should enable accelerated networking. ### Breaking Changes -- Changed property `type` in `ContainerConfiguration` from string type to enum type `ContainerType`. - Remove the following methods in `JobOperations`. - `getAllJobsLifetimeStatistics()`. - `getAllJobsLifetimeStatistics(Iterable additionalBehaviors)`. From 664388746958296f1585df3f10f596469988a7cc Mon Sep 17 00:00:00 2001 From: ljiaqi Date: Wed, 7 Jun 2023 05:29:31 +0000 Subject: [PATCH 7/8] Modify definition of ContainerType and add a test according to new API changes --- .../batch/protocol/models/ContainerType.java | 46 +-- .../com/microsoft/azure/batch/PoolTests.java | 80 ++++ .../canCreateContainerPool.json | 346 ++++++++++++++++++ 3 files changed, 443 insertions(+), 29 deletions(-) create mode 100644 sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateContainerPool.json diff --git a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerType.java b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerType.java index 075ae38ad9f6..bdb67d756bf1 100644 --- a/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerType.java +++ b/sdk/batch/microsoft-azure-batch/src/main/java/com/microsoft/azure/batch/protocol/models/ContainerType.java @@ -8,46 +8,34 @@ package com.microsoft.azure.batch.protocol.models; +import java.util.Collection; import com.fasterxml.jackson.annotation.JsonCreator; -import com.fasterxml.jackson.annotation.JsonValue; +import com.microsoft.rest.ExpandableStringEnum; /** * Defines values for ContainerType. */ -public enum ContainerType { - /** A Docker compatible container technology will be used to launch the containers. */ - DOCKER_COMPATIBLE("dockerCompatible"), +public final class ContainerType extends ExpandableStringEnum { + /** Static value dockerCompatible for ContainerType. */ + public static final ContainerType DOCKER_COMPATIBLE = fromString("dockerCompatible"); - /** A CRI based technology will be used to launch the containers. */ - CRI_COMPATIBLE("criCompatible"); - - /** The actual serialized value for a ContainerType instance. */ - private String value; - - ContainerType(String value) { - this.value = value; - } + /** Static value criCompatible for ContainerType. */ + public static final ContainerType CRI_COMPATIBLE = fromString("criCompatible"); /** - * Parses a serialized value to a ContainerType instance. - * - * @param value the serialized value to parse. - * @return the parsed ContainerType object, or null if unable to parse. + * Creates or finds a ContainerType from its string representation. + * @param name a name to look for + * @return the corresponding ContainerType */ @JsonCreator - public static ContainerType fromString(String value) { - ContainerType[] items = ContainerType.values(); - for (ContainerType item : items) { - if (item.toString().equalsIgnoreCase(value)) { - return item; - } - } - return null; + public static ContainerType fromString(String name) { + return fromString(name, ContainerType.class); } - @JsonValue - @Override - public String toString() { - return this.value; + /** + * @return known ContainerType values + */ + public static Collection values() { + return values(ContainerType.class); } } 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 fc41d46ee805..bdeb1146b146 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 @@ -278,6 +278,86 @@ public void canInstallVMExtension() throws Exception { } + @Test + public void canCreateContainerPool() throws Exception { + String poolId = getStringIdWithUserNamePrefix("-createContainerPool"); + + // Create a pool with 0 Small VMs + String POOL_VM_SIZE = "STANDARD_D1_V2"; + int POOL_VM_COUNT = 1; + + // 10 minutes + long POOL_STEADY_TIMEOUT_IN_MILLISECONDS = 10 * 60 * 1000; + TimeUnit.SECONDS.toMillis(30); + + if (!batchClient.poolOperations().existsPool(poolId)){ + List images = new ArrayList(); + images.add("tensorflow/tensorflow:latest-gpu"); + VirtualMachineConfiguration configuration = new VirtualMachineConfiguration(); + configuration + .withImageReference( + new ImageReference().withPublisher("microsoft-azure-batch").withOffer("ubuntu-server-container").withSku("20-04-lts")) + .withNodeAgentSKUId("batch.node.ubuntu 20.04") + .withContainerConfiguration(new ContainerConfiguration().withContainerImageNames(images).withType(ContainerType.DOCKER_COMPATIBLE)); + PoolAddParameter addParameter = new PoolAddParameter() + .withId(poolId) + .withVmSize(POOL_VM_SIZE) + .withTargetDedicatedNodes(POOL_VM_COUNT) + .withVirtualMachineConfiguration(configuration) + .withNetworkConfiguration(networkConfiguration); + batchClient.poolOperations().createPool(addParameter); + } + + + try { + // GET + Assert.assertTrue(batchClient.poolOperations().existsPool(poolId)); + + long startTime = System.currentTimeMillis(); + long elapsedTime = 0L; + + // Wait for the VM to be allocated + CloudPool pool = waitForPoolState(poolId, AllocationState.STEADY, POOL_STEADY_TIMEOUT_IN_MILLISECONDS); + + Assert.assertEquals(POOL_VM_COUNT, (long) pool.currentDedicatedNodes()); + // Check container type + Assert.assertEquals(ContainerType.DOCKER_COMPATIBLE,pool.virtualMachineConfiguration().containerConfiguration().type()); + // DELETE + boolean deleted = false; + elapsedTime = 0L; + batchClient.poolOperations().deletePool(poolId); + + // Wait for the VM to be deallocated + while (elapsedTime < POOL_STEADY_TIMEOUT_IN_MILLISECONDS) { + try { + batchClient.poolOperations().getPool(poolId); + } catch (BatchErrorException err) { + if (err.body().code().equals(BatchErrorCodeStrings.PoolNotFound)) { + deleted = true; + break; + } else { + throw err; + } + } + + System.out.println("wait 15 seconds for pool delete..."); + threadSleepInRecordMode(15 * 1000); + elapsedTime = (new Date()).getTime() - startTime; + } + Assert.assertTrue(deleted); + } + finally { + try { + if (batchClient.poolOperations().existsPool(poolId)) { + batchClient.poolOperations().deletePool(poolId); + } + } catch (Exception e) { + // Ignore exception + } + } + + } + @Test public void canCreateDataDisk() throws Exception { String poolId = getStringIdWithUserNamePrefix("-testpool3"); diff --git a/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateContainerPool.json b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateContainerPool.json new file mode 100644 index 000000000000..2612d5592e91 --- /dev/null +++ b/sdk/batch/microsoft-azure-batch/src/test/resources/test-recordings/canCreateContainerPool.json @@ -0,0 +1,346 @@ +{ + "networkCallRecords" : [ { + "Method" : "HEAD", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:22:57 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "client-request-id" : "906cf38c-7551-491d-8db1-92ff96c4534b", + "retry-after" : "0", + "request-id" : "44708082-5140-4455-b3e6-6e5df1fc813d", + "StatusCode" : "404", + "dataserviceversion" : "3.0", + "Body" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" + } + }, { + "Method" : "POST", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; odata=minimalmetadata; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:22:59 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "dataserviceid" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool", + "retry-after" : "0", + "request-id" : "323af4c8-715f-4441-b070-4c02a9315745", + "StatusCode" : "201", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:22:59 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "6fe5cb78-a90b-4d18-bf98-d1af78d9d9c3", + "etag" : "0x8DB671742101860", + "location" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool", + "dataserviceversion" : "3.0", + "Body" : "" + } + }, { + "Method" : "HEAD", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:22:59 GMT", + "last-modified" : "Wed, 07 Jun 2023 05:22:59 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "client-request-id" : "0317d48f-91e1-4777-9c27-1dbba3dfc7c8", + "etag" : "0x8DB671742101860", + "retry-after" : "0", + "request-id" : "57e7ed1f-4a45-40b0-b937-180c601ad6b4", + "StatusCode" : "200", + "dataserviceversion" : "3.0", + "Body" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:22:59 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "7e7cd6cb-7f0a-4003-8b49-1bbf3f45bae3", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:22:59 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "99326b23-7958-4011-85d5-10a5427e994c", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB671742101860", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-createContainerPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool\",\"eTag\":\"0x8DB671742101860\",\"lastModified\":\"2023-06-07T05:22:59.331696Z\",\"creationTime\":\"2023-06-07T05:22:59.331696Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-06-07T05:22:59.331696Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-06-07T05:22:59.331696Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerImageNames\":[\r\n \"tensorflow/tensorflow:latest-gpu\"\r\n ]\r\n }\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n }\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:23:29 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "b734ee57-8a38-4962-a563-4148329011ee", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:22:59 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "554949d5-acfd-427c-a381-47b3c8a8131d", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB671742101860", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-createContainerPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool\",\"eTag\":\"0x8DB671742101860\",\"lastModified\":\"2023-06-07T05:22:59.331696Z\",\"creationTime\":\"2023-06-07T05:22:59.331696Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-06-07T05:22:59.331696Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-06-07T05:22:59.331696Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerImageNames\":[\r\n \"tensorflow/tensorflow:latest-gpu\"\r\n ]\r\n }\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n }\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:23:59 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "4f850028-30e9-4557-8d1e-ac01b017f44d", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:22:59 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "0c932e62-86e5-4940-bc60-fb22eba8a337", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB671742101860", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-createContainerPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool\",\"eTag\":\"0x8DB671742101860\",\"lastModified\":\"2023-06-07T05:22:59.331696Z\",\"creationTime\":\"2023-06-07T05:22:59.331696Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-06-07T05:22:59.331696Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-06-07T05:22:59.331696Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerImageNames\":[\r\n \"tensorflow/tensorflow:latest-gpu\"\r\n ]\r\n }\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n }\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:24:29 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "99450f41-a3a8-4073-9b06-0f71391a4ec3", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:22:59 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "875af4fa-742f-4703-822a-31a08492fcf4", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB671742101860", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-createContainerPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool\",\"eTag\":\"0x8DB671742101860\",\"lastModified\":\"2023-06-07T05:22:59.331696Z\",\"creationTime\":\"2023-06-07T05:22:59.331696Z\",\"state\":\"active\",\"stateTransitionTime\":\"2023-06-07T05:22:59.331696Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2023-06-07T05:24:11.9156484Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerImageNames\":[\r\n \"tensorflow/tensorflow:latest-gpu\"\r\n ]\r\n }\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "DELETE", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:24:29 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "client-request-id" : "3c55fe4c-e74d-4ec1-8498-4c04b052af5c", + "retry-after" : "0", + "request-id" : "19249f3f-09fe-4b46-b16d-f67520a952a5", + "StatusCode" : "202", + "dataserviceversion" : "3.0", + "Body" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:24:29 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "37b0c089-289f-4ac4-b011-950cf9f1cd13", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:24:30 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "8dbba2f1-2c7b-45c9-963a-72e5185e0710", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB671778616CC1", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-createContainerPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool\",\"eTag\":\"0x8DB671778616CC1\",\"lastModified\":\"2023-06-07T05:24:30.4616641Z\",\"creationTime\":\"2023-06-07T05:22:59.331696Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-06-07T05:24:30.4616641Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-06-07T05:24:30.4836666Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"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\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerImageNames\":[\r\n \"tensorflow/tensorflow:latest-gpu\"\r\n ]\r\n }\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:24:44 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "246b1b83-8186-492b-8fb7-0b516da4c664", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:24:30 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "3f5df06e-684e-4aaf-bd8c-ab71f91082f0", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB671778616CC1", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-createContainerPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool\",\"eTag\":\"0x8DB671778616CC1\",\"lastModified\":\"2023-06-07T05:24:30.4616641Z\",\"creationTime\":\"2023-06-07T05:22:59.331696Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-06-07T05:24:30.4616641Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-06-07T05:24:30.4836666Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"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\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerImageNames\":[\r\n \"tensorflow/tensorflow:latest-gpu\"\r\n ]\r\n }\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:25:00 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "8f2da884-d5d5-46e7-a7c0-7f8c888ac6e2", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:24:30 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "2d961aaf-f9bd-4f0d-aa90-91577e2c0300", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB671778616CC1", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-createContainerPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool\",\"eTag\":\"0x8DB671778616CC1\",\"lastModified\":\"2023-06-07T05:24:30.4616641Z\",\"creationTime\":\"2023-06-07T05:22:59.331696Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-06-07T05:24:30.4616641Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-06-07T05:24:30.4836666Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"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\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerImageNames\":[\r\n \"tensorflow/tensorflow:latest-gpu\"\r\n ]\r\n }\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:25:15 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "5b3db9d2-655f-44bb-ac8c-dcd7d2fc4ae2", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:24:30 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "dc4a495d-b4bb-4a1a-87e2-23756da1296d", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB671778616CC1", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-createContainerPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool\",\"eTag\":\"0x8DB671778616CC1\",\"lastModified\":\"2023-06-07T05:24:30.4616641Z\",\"creationTime\":\"2023-06-07T05:22:59.331696Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-06-07T05:24:30.4616641Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-06-07T05:24:30.4836666Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"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\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerImageNames\":[\r\n \"tensorflow/tensorflow:latest-gpu\"\r\n ]\r\n }\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:25:30 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "5e2fb257-dae0-4397-bf5f-0839066d8de7", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:24:30 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "97746b3e-8d88-4080-b656-4fd7b2296924", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB671778616CC1", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-createContainerPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool\",\"eTag\":\"0x8DB671778616CC1\",\"lastModified\":\"2023-06-07T05:24:30.4616641Z\",\"creationTime\":\"2023-06-07T05:22:59.331696Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-06-07T05:24:30.4616641Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-06-07T05:24:30.4836666Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"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\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerImageNames\":[\r\n \"tensorflow/tensorflow:latest-gpu\"\r\n ]\r\n }\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:25:45 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "retry-after" : "0", + "request-id" : "b68e34a3-4933-4ea3-9c27-9375bd18d7a0", + "StatusCode" : "200", + "strict-transport-security" : "max-age=31536000; includeSubDomains", + "last-modified" : "Wed, 07 Jun 2023 05:24:30 GMT", + "x-content-type-options" : "nosniff", + "client-request-id" : "a1e7ab73-3822-4f5e-ae6d-20415d992dac", + "content-type" : "application/json;odata=minimalmetadata", + "etag" : "0x8DB671778616CC1", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"BatchUser-createContainerPool\",\"url\":\"https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool\",\"eTag\":\"0x8DB671778616CC1\",\"lastModified\":\"2023-06-07T05:24:30.4616641Z\",\"creationTime\":\"2023-06-07T05:22:59.331696Z\",\"state\":\"deleting\",\"stateTransitionTime\":\"2023-06-07T05:24:30.4616641Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2023-06-07T05:24:30.4836666Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT7M9.497S\",\"currentDedicatedNodes\":1,\"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\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"20-04-lts\",\"version\":\"latest\"\r\n },\"nodeAgentSKUId\":\"batch.node.ubuntu 20.04\",\"containerConfiguration\":{\r\n \"type\":\"dockerCompatible\",\"containerImageNames\":[\r\n \"tensorflow/tensorflow:latest-gpu\"\r\n ]\r\n }\r\n },\"networkConfiguration\":{\r\n \"subnetId\":\"/subscriptions/2a0bcf2a-e173-4d51-9d17-6286e2c2aa94/resourceGroups/javasdktest/providers/Microsoft.Network/virtualNetworks/sdkvnet/subnets/default\",\"dynamicVNetAssignmentScope\":\"none\",\"enableAcceleratedNetworking\":false\r\n },\"currentNodeCommunicationMode\":\"classic\"\r\n}" + } + }, { + "Method" : "GET", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:26:01 GMT", + "content-length" : "343", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "client-request-id" : "099325ac-66db-48e9-bd56-1eb9e45a9dcb", + "content-type" : "application/json;odata=minimalmetadata", + "retry-after" : "0", + "request-id" : "cde9f553-67f9-4585-ac56-3493b2ab2ca7", + "StatusCode" : "404", + "dataserviceversion" : "3.0", + "Body" : "{\r\n \"odata.metadata\":\"https://sdkbatchaccount.westcentralus.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:cde9f553-67f9-4585-ac56-3493b2ab2ca7\\nTime:2023-06-07T05:26:01.7894043Z\"\r\n }\r\n}", + "strict-transport-security" : "max-age=31536000; includeSubDomains" + } + }, { + "Method" : "HEAD", + "Uri" : "https://sdkbatchaccount.westcentralus.batch.azure.com/pools/BatchUser-createContainerPool?api-version=2023-05-01.17.0", + "Headers" : { + "User-Agent" : "Azure-SDK-For-Java/null OS:Windows 11/10.0 MacAddressHash:acd385f7c12bd773b927be7c3a04f69120c9439caa24ed8be1c62aa5788a2140 Java:1.8.0_371 (BatchServiceClient, 2023-05-01.17.0)", + "Content-Type" : "application/json; charset=utf-8" + }, + "Response" : { + "date" : "Wed, 07 Jun 2023 05:26:01 GMT", + "server" : "Microsoft-HTTPAPI/2.0", + "x-content-type-options" : "nosniff", + "client-request-id" : "cafa147a-273b-4f0d-bf34-3e0f28853b8c", + "retry-after" : "0", + "request-id" : "e320506c-3e09-4167-8855-00eaf90c9dd8", + "StatusCode" : "404", + "dataserviceversion" : "3.0", + "Body" : "", + "strict-transport-security" : "max-age=31536000; includeSubDomains" + } + } ], + "variables" : [ ] +} \ No newline at end of file From bc953b40c8d1b36c65189fbbe4f3492eecea268e Mon Sep 17 00:00:00 2001 From: ljiaqi Date: Thu, 8 Jun 2023 12:48:17 +0000 Subject: [PATCH 8/8] Updated CHANGELOG.md --- sdk/batch/microsoft-azure-batch/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/batch/microsoft-azure-batch/CHANGELOG.md b/sdk/batch/microsoft-azure-batch/CHANGELOG.md index c8a38282cf1e..c3bf92ba6b25 100644 --- a/sdk/batch/microsoft-azure-batch/CHANGELOG.md +++ b/sdk/batch/microsoft-azure-batch/CHANGELOG.md @@ -10,6 +10,7 @@ ### Breaking Changes +- Changed property `type` in `ContainerConfiguration` from string type to enum type `ContainerType`. - Remove the following methods in `JobOperations`. - `getAllJobsLifetimeStatistics()`. - `getAllJobsLifetimeStatistics(Iterable additionalBehaviors)`.