From c506edc9a793a0ca53938ef674ca28215364c9bc Mon Sep 17 00:00:00 2001 From: wiboris <54044985+wiboris@users.noreply.github.com> Date: Tue, 1 Feb 2022 14:05:34 -0800 Subject: [PATCH] [Batch] Data plane SDK v12.0.0 (#22730) * updating library for 2022-01-015 changes * update to tests * new test recordings * fixing tests * updating vm * updating changelong * updating doc links * updates based on feedback --- sdk/batch/azure-batch/CHANGELOG.md | 18 +- .../azure/batch/_batch_service_client.py | 4 +- sdk/batch/azure-batch/azure/batch/_version.py | 2 +- .../azure/batch/models/__init__.py | 3 + .../models/_batch_service_client_enums.py | 2 +- .../azure-batch/azure/batch/models/_models.py | 132 +- .../azure/batch/models/_models_py3.py | 142 +- .../batch/operations/_account_operations.py | 4 +- .../operations/_application_operations.py | 4 +- .../operations/_certificate_operations.py | 4 +- .../_compute_node_extension_operations.py | 4 +- .../operations/_compute_node_operations.py | 4 +- .../batch/operations/_file_operations.py | 4 +- .../azure/batch/operations/_job_operations.py | 4 +- .../operations/_job_schedule_operations.py | 4 +- .../batch/operations/_pool_operations.py | 4 +- .../batch/operations/_task_operations.py | 4 +- .../azure-batch/tests/batch_preparers.py | 6 +- .../test_batch.test_batch_applications.yaml | 58 +- .../test_batch.test_batch_certificates.yaml | 66 +- ...st_batch.test_batch_compute_node_user.yaml | 192 +- .../test_batch.test_batch_compute_nodes.yaml | 244 +- ...batch_create_pool_with_blobfuse_mount.yaml | 34 +- .../test_batch.test_batch_create_pools.yaml | 308 +- .../test_batch.test_batch_files.yaml | 271 +- .../test_batch.test_batch_job_schedules.yaml | 180 +- .../test_batch.test_batch_jobs.yaml | 218 +- ...atch.test_batch_network_configuration.yaml | 404 +-- .../test_batch.test_batch_scale_pools.yaml | 3140 ++++++++++++++++- .../test_batch.test_batch_tasks.yaml | 2062 +++++------ .../test_batch.test_batch_update_pools.yaml | 112 +- sdk/batch/azure-batch/tests/test_batch.py | 30 +- 32 files changed, 5157 insertions(+), 2511 deletions(-) diff --git a/sdk/batch/azure-batch/CHANGELOG.md b/sdk/batch/azure-batch/CHANGELOG.md index bc7b160790d9..3ceb20b7953b 100644 --- a/sdk/batch/azure-batch/CHANGELOG.md +++ b/sdk/batch/azure-batch/CHANGELOG.md @@ -1,6 +1,22 @@ # Release History -## 11.0.1 (Unreleased) +## 12.0.0 (2022-02-01) + +### Features + +- Added property uploadHeaders to `OutputFileBlobContainerDestination`. + - Allows users to set custom HTTP headers on resource file uploads. + - Array of type HttpHeader (also being added). +- Added boolean property `allow_task_preemption` to `JobSpecification`, `CloudJob`, `JobAddParameter`, `JobPatchParameter`, `JobUpdateParameter` + - Mark Tasks as preemptible for higher priority Tasks (requires Comms-Enabled or Single Tenant Pool). +- Replaced comment (title, description, etc.) references of "low-priority" with "Spot/Low-Priority", to reflect new service behavior. + - No API change required. + - Low-Priority Compute Nodes (VMs) will continue to be used for User Subscription pools (and only User Subscription pools), as before. + - Spot Compute Nodes (VMs) will now be used for Batch Managed (and only Batch Managed pools) pools. + - Relevant docs: + https://docs.microsoft.com/azure/batch/nodes-and-pools + - https://docs.microsoft.com/azure/batch/batch-spot-vms + ### Features Added diff --git a/sdk/batch/azure-batch/azure/batch/_batch_service_client.py b/sdk/batch/azure-batch/azure/batch/_batch_service_client.py index 166c44b883b6..05cdb5457fac 100644 --- a/sdk/batch/azure-batch/azure/batch/_batch_service_client.py +++ b/sdk/batch/azure-batch/azure/batch/_batch_service_client.py @@ -67,7 +67,7 @@ def __init__( super(BatchServiceClient, self).__init__(self.config.credentials, self.config) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} - self.api_version = '2021-06-01.14.0' + self.api_version = '2022-01-01.15.0' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) @@ -92,4 +92,4 @@ def __init__( self.compute_node_extension = ComputeNodeExtensionOperations( self._client, self.config, self._serialize, self._deserialize) -patch_client() +patch_client() \ No newline at end of file diff --git a/sdk/batch/azure-batch/azure/batch/_version.py b/sdk/batch/azure-batch/azure/batch/_version.py index 1c3c7fba409c..2a860fabbb5d 100644 --- a/sdk/batch/azure-batch/azure/batch/_version.py +++ b/sdk/batch/azure-batch/azure/batch/_version.py @@ -9,5 +9,5 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "11.0.1" +VERSION = "12.0.0" diff --git a/sdk/batch/azure-batch/azure/batch/models/__init__.py b/sdk/batch/azure-batch/azure/batch/models/__init__.py index d93a10b33b78..79d43f97089b 100644 --- a/sdk/batch/azure-batch/azure/batch/models/__init__.py +++ b/sdk/batch/azure-batch/azure/batch/models/__init__.py @@ -84,6 +84,7 @@ from ._models_py3 import FileListFromComputeNodeOptions from ._models_py3 import FileListFromTaskOptions from ._models_py3 import FileProperties + from ._models_py3 import HttpHeader from ._models_py3 import ImageInformation from ._models_py3 import ImageReference from ._models_py3 import InboundEndpoint @@ -307,6 +308,7 @@ from ._models import FileListFromComputeNodeOptions from ._models import FileListFromTaskOptions from ._models import FileProperties + from ._models import HttpHeader from ._models import ImageInformation from ._models import ImageReference from ._models import InboundEndpoint @@ -595,6 +597,7 @@ 'FileListFromComputeNodeOptions', 'FileListFromTaskOptions', 'FileProperties', + 'HttpHeader', 'ImageInformation', 'ImageReference', 'InboundEndpoint', diff --git a/sdk/batch/azure-batch/azure/batch/models/_batch_service_client_enums.py b/sdk/batch/azure-batch/azure/batch/models/_batch_service_client_enums.py index 293bf6af17c4..5c89edf4c8be 100644 --- a/sdk/batch/azure-batch/azure/batch/models/_batch_service_client_enums.py +++ b/sdk/batch/azure-batch/azure/batch/models/_batch_service_client_enums.py @@ -295,7 +295,7 @@ class ComputeNodeState(str, Enum): unknown = "unknown" #: The Batch service has lost contact with the Compute Node, and does not know its true state. leaving_pool = "leavingpool" #: The Compute Node is leaving the Pool, either because the user explicitly removed it or because the Pool is resizing or autoscaling down. offline = "offline" #: The Compute Node is not currently running a Task, and scheduling of new Tasks to the Compute Node is disabled. - preempted = "preempted" #: The low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available. + preempted = "preempted" #: The Spot/Low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available. class SchedulingState(str, Enum): diff --git a/sdk/batch/azure-batch/azure/batch/models/_models.py b/sdk/batch/azure-batch/azure/batch/models/_models.py index 001e9b7037ba..bbffa31b1a9d 100644 --- a/sdk/batch/azure-batch/azure/batch/models/_models.py +++ b/sdk/batch/azure-batch/azure/batch/models/_models.py @@ -1039,6 +1039,12 @@ class CloudJob(Model): -1000 to 1000, with -1000 being the lowest priority and 1000 being the highest priority. The default value is 0. :type priority: int + :param allow_task_preemption: Whether Tasks in this job can be preempted + by other high priority jobs. If the value is set to True, other high + priority jobs submitted to the system will take precedence and will be + able requeue tasks from this job. You can update a job's + allowTaskPreemption after it has been created using the update job API. + :type allow_task_preemption: bool :param max_parallel_tasks: The maximum number of tasks that can be executed in parallel for the job. The value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, @@ -1106,6 +1112,7 @@ class CloudJob(Model): 'previous_state': {'key': 'previousState', 'type': 'JobState'}, 'previous_state_transition_time': {'key': 'previousStateTransitionTime', 'type': 'iso-8601'}, 'priority': {'key': 'priority', 'type': 'int'}, + 'allow_task_preemption': {'key': 'allowTaskPreemption', 'type': 'bool'}, 'max_parallel_tasks': {'key': 'maxParallelTasks', 'type': 'int'}, 'constraints': {'key': 'constraints', 'type': 'JobConstraints'}, 'job_manager_task': {'key': 'jobManagerTask', 'type': 'JobManagerTask'}, @@ -1135,6 +1142,7 @@ def __init__(self, **kwargs): self.previous_state = kwargs.get('previous_state', None) self.previous_state_transition_time = kwargs.get('previous_state_transition_time', None) self.priority = kwargs.get('priority', None) + self.allow_task_preemption = kwargs.get('allow_task_preemption', None) self.max_parallel_tasks = kwargs.get('max_parallel_tasks', -1) self.constraints = kwargs.get('constraints', None) self.job_manager_task = kwargs.get('job_manager_task', None) @@ -1186,7 +1194,9 @@ class CloudJobSchedule(Model): :param previous_state_transition_time: This property is not present if the Job Schedule is in its initial active state. :type previous_state_transition_time: datetime - :param schedule: The schedule according to which Jobs will be created. + :param schedule: The schedule according to which Jobs will be created. All + times are fixed respective to UTC and are not impacted by daylight saving + time. :type schedule: ~azure.batch.models.Schedule :param job_specification: The details of the Jobs to be created on this schedule. @@ -1302,14 +1312,14 @@ class CloudPool(Model): :param current_dedicated_nodes: The number of dedicated Compute Nodes currently in the Pool. :type current_dedicated_nodes: int - :param current_low_priority_nodes: The number of low-priority Compute - Nodes currently in the Pool. low-priority Compute Nodes which have been - preempted are included in this count. + :param current_low_priority_nodes: The number of Spot/Low-priority Compute + Nodes currently in the Pool. Spot/Low-priority Compute Nodes which have + been preempted are included in this count. :type current_low_priority_nodes: int :param target_dedicated_nodes: The desired number of dedicated Compute Nodes in the Pool. :type target_dedicated_nodes: int - :param target_low_priority_nodes: The desired number of low-priority + :param target_low_priority_nodes: The desired number of Spot/Low-priority Compute Nodes in the Pool. :type target_low_priority_nodes: int :param enable_auto_scale: Whether the Pool size should automatically @@ -1723,7 +1733,7 @@ class ComputeNode(Model): :type id: str :param url: :type url: str - :param state: The low-priority Compute Node has been preempted. Tasks + :param state: The Spot/Low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available. Possible values include: 'idle', 'rebooting', 'reimaging', 'running', 'unusable', @@ -1794,7 +1804,7 @@ class ComputeNode(Model): :param errors: :type errors: list[~azure.batch.models.ComputeNodeError] :param is_dedicated: Whether this Compute Node is a dedicated Compute - Node. If false, the Compute Node is a low-priority Compute Node. + Node. If false, the Compute Node is a Spot/Low-priority Compute Node. :type is_dedicated: bool :param endpoint_configuration: The endpoint configuration for the Compute Node. @@ -3308,6 +3318,32 @@ def __init__(self, **kwargs): self.file_mode = kwargs.get('file_mode', None) +class HttpHeader(Model): + """An HTTP header name-value pair. + + All required parameters must be populated in order to send to Azure. + + :param name: Required. + :type name: str + :param value: + :type value: str + """ + + _validation = { + 'name': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'value': {'key': 'value', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(HttpHeader, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.value = kwargs.get('value', None) + + class ImageInformation(Model): """A reference to the Azure Virtual Machines Marketplace Image and additional information about the Image. @@ -3627,6 +3663,12 @@ class JobAddParameter(Model): once. You can update a job's maxParallelTasks after it has been created using the update job API. Default value: -1 . :type max_parallel_tasks: int + :param allow_task_preemption: Whether Tasks in this job can be preempted + by other high priority jobs. If the value is set to True, other high + priority jobs submitted to the system will take precedence and will be + able requeue tasks from this job. You can update a job's + allowTaskPreemption after it has been created using the update job API. + :type allow_task_preemption: bool :param constraints: The execution constraints for the Job. :type constraints: ~azure.batch.models.JobConstraints :param job_manager_task: Details of a Job Manager Task to be launched when @@ -3701,6 +3743,7 @@ class JobAddParameter(Model): 'display_name': {'key': 'displayName', 'type': 'str'}, 'priority': {'key': 'priority', 'type': 'int'}, 'max_parallel_tasks': {'key': 'maxParallelTasks', 'type': 'int'}, + 'allow_task_preemption': {'key': 'allowTaskPreemption', 'type': 'bool'}, 'constraints': {'key': 'constraints', 'type': 'JobConstraints'}, 'job_manager_task': {'key': 'jobManagerTask', 'type': 'JobManagerTask'}, 'job_preparation_task': {'key': 'jobPreparationTask', 'type': 'JobPreparationTask'}, @@ -3720,6 +3763,7 @@ def __init__(self, **kwargs): self.display_name = kwargs.get('display_name', None) self.priority = kwargs.get('priority', None) self.max_parallel_tasks = kwargs.get('max_parallel_tasks', -1) + self.allow_task_preemption = kwargs.get('allow_task_preemption', None) self.constraints = kwargs.get('constraints', None) self.job_manager_task = kwargs.get('job_manager_task', None) self.job_preparation_task = kwargs.get('job_preparation_task', None) @@ -4450,7 +4494,7 @@ class JobManagerTask(Model): :type authentication_token_settings: ~azure.batch.models.AuthenticationTokenSettings :param allow_low_priority_node: Whether the Job Manager Task may run on a - low-priority Compute Node. The default value is true. + Spot/Low-priority Compute Node. The default value is true. :type allow_low_priority_node: bool """ @@ -4612,6 +4656,12 @@ class JobPatchParameter(Model): once. You can update a job's maxParallelTasks after it has been created using the update job API. :type max_parallel_tasks: int + :param allow_task_preemption: Whether Tasks in this job can be preempted + by other high priority jobs. If the value is set to True, other high + priority jobs submitted to the system will take precedence and will be + able requeue tasks from this job. You can update a job's + allowTaskPreemption after it has been created using the update job API. + :type allow_task_preemption: bool :param on_all_tasks_complete: The action the Batch service should take when all Tasks in the Job are in the completed state. If omitted, the completion behavior is left unchanged. You may not change the value from @@ -4640,6 +4690,7 @@ class JobPatchParameter(Model): _attribute_map = { 'priority': {'key': 'priority', 'type': 'int'}, 'max_parallel_tasks': {'key': 'maxParallelTasks', 'type': 'int'}, + 'allow_task_preemption': {'key': 'allowTaskPreemption', 'type': 'bool'}, 'on_all_tasks_complete': {'key': 'onAllTasksComplete', 'type': 'OnAllTasksComplete'}, 'constraints': {'key': 'constraints', 'type': 'JobConstraints'}, 'pool_info': {'key': 'poolInfo', 'type': 'PoolInformation'}, @@ -4650,6 +4701,7 @@ def __init__(self, **kwargs): super(JobPatchParameter, self).__init__(**kwargs) self.priority = kwargs.get('priority', None) self.max_parallel_tasks = kwargs.get('max_parallel_tasks', None) + self.allow_task_preemption = kwargs.get('allow_task_preemption', None) self.on_all_tasks_complete = kwargs.get('on_all_tasks_complete', None) self.constraints = kwargs.get('constraints', None) self.pool_info = kwargs.get('pool_info', None) @@ -5132,7 +5184,8 @@ class JobScheduleAddParameter(Model): any Unicode characters up to a maximum length of 1024. :type display_name: str :param schedule: Required. The schedule according to which Jobs will be - created. + created. All times are fixed respective to UTC and are not impacted by + daylight saving time. :type schedule: ~azure.batch.models.Schedule :param job_specification: Required. The details of the Jobs to be created on this schedule. @@ -5626,8 +5679,10 @@ def __init__(self, **kwargs): class JobSchedulePatchParameter(Model): """The set of changes to be made to a Job Schedule. - :param schedule: The schedule according to which Jobs will be created. If - you do not specify this element, the existing schedule is left unchanged. + :param schedule: The schedule according to which Jobs will be created. All + times are fixed respective to UTC and are not impacted by daylight saving + time. If you do not specify this element, the existing schedule is left + unchanged. :type schedule: ~azure.batch.models.Schedule :param job_specification: The details of the Jobs to be created on this schedule. Updates affect only Jobs that are started after the update has @@ -5882,8 +5937,10 @@ class JobScheduleUpdateParameter(Model): All required parameters must be populated in order to send to Azure. :param schedule: Required. The schedule according to which Jobs will be - created. If you do not specify this element, it is equivalent to passing - the default schedule: that is, a single Job scheduled to run immediately. + created. All times are fixed respective to UTC and are not impacted by + daylight saving time. If you do not specify this element, it is equivalent + to passing the default schedule: that is, a single Job scheduled to run + immediately. :type schedule: ~azure.batch.models.Schedule :param job_specification: Required. Details of the Jobs to be created on this schedule. Updates affect only Jobs that are started after the update @@ -5960,6 +6017,12 @@ class JobSpecification(Model): can update a Job's priority after it has been created using by using the update Job API. :type priority: int + :param allow_task_preemption: Whether Tasks in this job can be preempted + by other high priority jobs. If the value is set to True, other high + priority jobs submitted to the system will take precedence and will be + able requeue tasks from this job. You can update a job's + allowTaskPreemption after it has been created using the update job API. + :type allow_task_preemption: bool :param max_parallel_tasks: The maximum number of tasks that can be executed in parallel for the job. The value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, @@ -6036,6 +6099,7 @@ class JobSpecification(Model): _attribute_map = { 'priority': {'key': 'priority', 'type': 'int'}, + 'allow_task_preemption': {'key': 'allowTaskPreemption', 'type': 'bool'}, 'max_parallel_tasks': {'key': 'maxParallelTasks', 'type': 'int'}, 'display_name': {'key': 'displayName', 'type': 'str'}, 'uses_task_dependencies': {'key': 'usesTaskDependencies', 'type': 'bool'}, @@ -6054,6 +6118,7 @@ class JobSpecification(Model): def __init__(self, **kwargs): super(JobSpecification, self).__init__(**kwargs) self.priority = kwargs.get('priority', None) + self.allow_task_preemption = kwargs.get('allow_task_preemption', None) self.max_parallel_tasks = kwargs.get('max_parallel_tasks', -1) self.display_name = kwargs.get('display_name', None) self.uses_task_dependencies = kwargs.get('uses_task_dependencies', None) @@ -6320,6 +6385,19 @@ class JobUpdateParameter(Model): -1000 to 1000, with -1000 being the lowest priority and 1000 being the highest priority. If omitted, it is set to the default value 0. :type priority: int + :param max_parallel_tasks: The maximum number of tasks that can be + executed in parallel for the job. The value of maxParallelTasks must be -1 + or greater than 0 if specified. If not specified, the default value is -1, + which means there's no limit to the number of tasks that can be run at + once. You can update a job's maxParallelTasks after it has been created + using the update job API. Default value: -1 . + :type max_parallel_tasks: int + :param allow_task_preemption: Whether Tasks in this job can be preempted + by other high priority jobs. If the value is set to True, other high + priority jobs submitted to the system will take precedence and will be + able requeue tasks from this job. You can update a job's + allowTaskPreemption after it has been created using the update job API. + :type allow_task_preemption: bool :param constraints: The execution constraints for the Job. If omitted, the constraints are cleared. :type constraints: ~azure.batch.models.JobConstraints @@ -6356,6 +6434,8 @@ class JobUpdateParameter(Model): _attribute_map = { 'priority': {'key': 'priority', 'type': 'int'}, + 'max_parallel_tasks': {'key': 'maxParallelTasks', 'type': 'int'}, + 'allow_task_preemption': {'key': 'allowTaskPreemption', 'type': 'bool'}, 'constraints': {'key': 'constraints', 'type': 'JobConstraints'}, 'pool_info': {'key': 'poolInfo', 'type': 'PoolInformation'}, 'metadata': {'key': 'metadata', 'type': '[MetadataItem]'}, @@ -6365,6 +6445,8 @@ class JobUpdateParameter(Model): def __init__(self, **kwargs): super(JobUpdateParameter, self).__init__(**kwargs) self.priority = kwargs.get('priority', None) + self.max_parallel_tasks = kwargs.get('max_parallel_tasks', -1) + self.allow_task_preemption = kwargs.get('allow_task_preemption', None) self.constraints = kwargs.get('constraints', None) self.pool_info = kwargs.get('pool_info', None) self.metadata = kwargs.get('metadata', None) @@ -7108,6 +7190,11 @@ class OutputFileBlobContainerDestination(Model): use to access Azure Blob Storage specified by containerUrl. The identity must have write access to the Azure Blob Storage container :type identity_reference: ~azure.batch.models.ComputeNodeIdentityReference + :param upload_headers: These headers will be specified when uploading + files to Azure Storage. For more information, see [Request Headers (All + Blob + Types)](https://docs.microsoft.com/rest/api/storageservices/put-blob#request-headers-all-blob-types). + :type upload_headers: list[~azure.batch.models.HttpHeader] """ _validation = { @@ -7118,6 +7205,7 @@ class OutputFileBlobContainerDestination(Model): 'path': {'key': 'path', 'type': 'str'}, 'container_url': {'key': 'containerUrl', 'type': 'str'}, 'identity_reference': {'key': 'identityReference', 'type': 'ComputeNodeIdentityReference'}, + 'upload_headers': {'key': 'uploadHeaders', 'type': '[HttpHeader]'}, } def __init__(self, **kwargs): @@ -7125,6 +7213,7 @@ def __init__(self, **kwargs): self.path = kwargs.get('path', None) self.container_url = kwargs.get('container_url', None) self.identity_reference = kwargs.get('identity_reference', None) + self.upload_headers = kwargs.get('upload_headers', None) class OutputFileDestination(Model): @@ -7255,7 +7344,7 @@ class PoolAddParameter(Model): is set to true. If enableAutoScale is set to false, then you must set either targetDedicatedNodes, targetLowPriorityNodes, or both. :type target_dedicated_nodes: int - :param target_low_priority_nodes: The desired number of low-priority + :param target_low_priority_nodes: The desired number of Spot/Low-priority Compute Nodes in the Pool. This property must not be specified if enableAutoScale is set to true. If enableAutoScale is set to false, then you must set either targetDedicatedNodes, targetLowPriorityNodes, or both. @@ -7979,7 +8068,7 @@ class PoolNodeCounts(Model): :type pool_id: str :param dedicated: The number of dedicated Compute Nodes in each state. :type dedicated: ~azure.batch.models.NodeCounts - :param low_priority: The number of low-priority Compute Nodes in each + :param low_priority: The number of Spot/Low-priority Compute Nodes in each state. :type low_priority: ~azure.batch.models.NodeCounts """ @@ -8240,7 +8329,7 @@ class PoolResizeParameter(Model): :param target_dedicated_nodes: The desired number of dedicated Compute Nodes in the Pool. :type target_dedicated_nodes: int - :param target_low_priority_nodes: The desired number of low-priority + :param target_low_priority_nodes: The desired number of Spot/Low-priority Compute Nodes in the Pool. :type target_low_priority_nodes: int :param resize_timeout: The default value is 15 minutes. The minimum value @@ -8320,7 +8409,7 @@ class PoolSpecification(Model): is set to true. If enableAutoScale is set to false, then you must set either targetDedicatedNodes, targetLowPriorityNodes, or both. :type target_dedicated_nodes: int - :param target_low_priority_nodes: The desired number of low-priority + :param target_low_priority_nodes: The desired number of Spot/Low-priority Compute Nodes in the Pool. This property must not be specified if enableAutoScale is set to true. If enableAutoScale is set to false, then you must set either targetDedicatedNodes, targetLowPriorityNodes, or both. @@ -8695,8 +8784,8 @@ class PublicIPAddressConfiguration(Model): 'batchManaged', 'userManaged', 'noPublicIPAddresses' :type provision: str or ~azure.batch.models.IPAddressProvisioningType :param ip_address_ids: The number of IPs specified here limits the maximum - size of the Pool - 100 dedicated nodes or 100 low-priority nodes can be - allocated for each public IP. For example, a pool needing 250 dedicated + size of the Pool - 100 dedicated nodes or 100 Spot/Low-priority nodes can + be allocated for each public IP. For example, a pool needing 250 dedicated VMs would need at least 3 public IPs specified. Each element of this collection is of the form: /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/publicIPAddresses/{ip}. @@ -8923,7 +9012,8 @@ def __init__(self, **kwargs): class Schedule(Model): - """The schedule according to which Jobs will be created. + """The schedule according to which Jobs will be created. All times are fixed + respective to UTC and are not impacted by daylight saving time. :param do_not_run_until: If you do not specify a doNotRunUntil time, the schedule becomes ready to create Jobs immediately. @@ -9873,7 +9963,7 @@ class TaskExecutionInformation(Model): :param last_requeue_time: This property is set only if the requeueCount is nonzero. :type last_requeue_time: datetime - :param result: The result of the Task execution. If the value is 'failure', + :param result: The result of the Task execution. If the value is 'failed', then the details of the failure can be found in the failureInfo property. Possible values include: 'success', 'failure' :type result: str or ~azure.batch.models.TaskExecutionResult diff --git a/sdk/batch/azure-batch/azure/batch/models/_models_py3.py b/sdk/batch/azure-batch/azure/batch/models/_models_py3.py index 57064767c960..ac07059cf66b 100644 --- a/sdk/batch/azure-batch/azure/batch/models/_models_py3.py +++ b/sdk/batch/azure-batch/azure/batch/models/_models_py3.py @@ -1039,6 +1039,12 @@ class CloudJob(Model): -1000 to 1000, with -1000 being the lowest priority and 1000 being the highest priority. The default value is 0. :type priority: int + :param allow_task_preemption: Whether Tasks in this job can be preempted + by other high priority jobs. If the value is set to True, other high + priority jobs submitted to the system will take precedence and will be + able requeue tasks from this job. You can update a job's + allowTaskPreemption after it has been created using the update job API. + :type allow_task_preemption: bool :param max_parallel_tasks: The maximum number of tasks that can be executed in parallel for the job. The value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, @@ -1106,6 +1112,7 @@ class CloudJob(Model): 'previous_state': {'key': 'previousState', 'type': 'JobState'}, 'previous_state_transition_time': {'key': 'previousStateTransitionTime', 'type': 'iso-8601'}, 'priority': {'key': 'priority', 'type': 'int'}, + 'allow_task_preemption': {'key': 'allowTaskPreemption', 'type': 'bool'}, 'max_parallel_tasks': {'key': 'maxParallelTasks', 'type': 'int'}, 'constraints': {'key': 'constraints', 'type': 'JobConstraints'}, 'job_manager_task': {'key': 'jobManagerTask', 'type': 'JobManagerTask'}, @@ -1121,7 +1128,7 @@ class CloudJob(Model): 'stats': {'key': 'stats', 'type': 'JobStatistics'}, } - def __init__(self, *, id: str=None, display_name: str=None, uses_task_dependencies: bool=None, url: str=None, e_tag: str=None, last_modified=None, creation_time=None, state=None, state_transition_time=None, previous_state=None, previous_state_transition_time=None, priority: int=None, max_parallel_tasks: int=-1, constraints=None, job_manager_task=None, job_preparation_task=None, job_release_task=None, common_environment_settings=None, pool_info=None, on_all_tasks_complete=None, on_task_failure=None, network_configuration=None, metadata=None, execution_info=None, stats=None, **kwargs) -> None: + def __init__(self, *, id: str=None, display_name: str=None, uses_task_dependencies: bool=None, url: str=None, e_tag: str=None, last_modified=None, creation_time=None, state=None, state_transition_time=None, previous_state=None, previous_state_transition_time=None, priority: int=None, allow_task_preemption: bool=None, max_parallel_tasks: int=-1, constraints=None, job_manager_task=None, job_preparation_task=None, job_release_task=None, common_environment_settings=None, pool_info=None, on_all_tasks_complete=None, on_task_failure=None, network_configuration=None, metadata=None, execution_info=None, stats=None, **kwargs) -> None: super(CloudJob, self).__init__(**kwargs) self.id = id self.display_name = display_name @@ -1135,6 +1142,7 @@ def __init__(self, *, id: str=None, display_name: str=None, uses_task_dependenci self.previous_state = previous_state self.previous_state_transition_time = previous_state_transition_time self.priority = priority + self.allow_task_preemption = allow_task_preemption self.max_parallel_tasks = max_parallel_tasks self.constraints = constraints self.job_manager_task = job_manager_task @@ -1186,7 +1194,9 @@ class CloudJobSchedule(Model): :param previous_state_transition_time: This property is not present if the Job Schedule is in its initial active state. :type previous_state_transition_time: datetime - :param schedule: The schedule according to which Jobs will be created. + :param schedule: The schedule according to which Jobs will be created. All + times are fixed respective to UTC and are not impacted by daylight saving + time. :type schedule: ~azure.batch.models.Schedule :param job_specification: The details of the Jobs to be created on this schedule. @@ -1302,14 +1312,14 @@ class CloudPool(Model): :param current_dedicated_nodes: The number of dedicated Compute Nodes currently in the Pool. :type current_dedicated_nodes: int - :param current_low_priority_nodes: The number of low-priority Compute - Nodes currently in the Pool. low-priority Compute Nodes which have been - preempted are included in this count. + :param current_low_priority_nodes: The number of Spot/Low-priority Compute + Nodes currently in the Pool. Spot/Low-priority Compute Nodes which have + been preempted are included in this count. :type current_low_priority_nodes: int :param target_dedicated_nodes: The desired number of dedicated Compute Nodes in the Pool. :type target_dedicated_nodes: int - :param target_low_priority_nodes: The desired number of low-priority + :param target_low_priority_nodes: The desired number of Spot/Low-priority Compute Nodes in the Pool. :type target_low_priority_nodes: int :param enable_auto_scale: Whether the Pool size should automatically @@ -1723,7 +1733,7 @@ class ComputeNode(Model): :type id: str :param url: :type url: str - :param state: The low-priority Compute Node has been preempted. Tasks + :param state: The Spot/Low-priority Compute Node has been preempted. Tasks which were running on the Compute Node when it was preempted will be rescheduled when another Compute Node becomes available. Possible values include: 'idle', 'rebooting', 'reimaging', 'running', 'unusable', @@ -1794,7 +1804,7 @@ class ComputeNode(Model): :param errors: :type errors: list[~azure.batch.models.ComputeNodeError] :param is_dedicated: Whether this Compute Node is a dedicated Compute - Node. If false, the Compute Node is a low-priority Compute Node. + Node. If false, the Compute Node is a Spot/Low-priority Compute Node. :type is_dedicated: bool :param endpoint_configuration: The endpoint configuration for the Compute Node. @@ -3308,6 +3318,32 @@ def __init__(self, *, last_modified, content_length: int, creation_time=None, co self.file_mode = file_mode +class HttpHeader(Model): + """An HTTP header name-value pair. + + All required parameters must be populated in order to send to Azure. + + :param name: Required. + :type name: str + :param value: + :type value: str + """ + + _validation = { + 'name': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'value': {'key': 'value', 'type': 'str'}, + } + + def __init__(self, *, name: str, value: str=None, **kwargs) -> None: + super(HttpHeader, self).__init__(**kwargs) + self.name = name + self.value = value + + class ImageInformation(Model): """A reference to the Azure Virtual Machines Marketplace Image and additional information about the Image. @@ -3627,6 +3663,12 @@ class JobAddParameter(Model): once. You can update a job's maxParallelTasks after it has been created using the update job API. Default value: -1 . :type max_parallel_tasks: int + :param allow_task_preemption: Whether Tasks in this job can be preempted + by other high priority jobs. If the value is set to True, other high + priority jobs submitted to the system will take precedence and will be + able requeue tasks from this job. You can update a job's + allowTaskPreemption after it has been created using the update job API. + :type allow_task_preemption: bool :param constraints: The execution constraints for the Job. :type constraints: ~azure.batch.models.JobConstraints :param job_manager_task: Details of a Job Manager Task to be launched when @@ -3701,6 +3743,7 @@ class JobAddParameter(Model): 'display_name': {'key': 'displayName', 'type': 'str'}, 'priority': {'key': 'priority', 'type': 'int'}, 'max_parallel_tasks': {'key': 'maxParallelTasks', 'type': 'int'}, + 'allow_task_preemption': {'key': 'allowTaskPreemption', 'type': 'bool'}, 'constraints': {'key': 'constraints', 'type': 'JobConstraints'}, 'job_manager_task': {'key': 'jobManagerTask', 'type': 'JobManagerTask'}, 'job_preparation_task': {'key': 'jobPreparationTask', 'type': 'JobPreparationTask'}, @@ -3714,12 +3757,13 @@ class JobAddParameter(Model): 'network_configuration': {'key': 'networkConfiguration', 'type': 'JobNetworkConfiguration'}, } - def __init__(self, *, id: str, pool_info, display_name: str=None, priority: int=None, max_parallel_tasks: int=-1, constraints=None, job_manager_task=None, job_preparation_task=None, job_release_task=None, common_environment_settings=None, on_all_tasks_complete=None, on_task_failure=None, metadata=None, uses_task_dependencies: bool=None, network_configuration=None, **kwargs) -> None: + def __init__(self, *, id: str, pool_info, display_name: str=None, priority: int=None, max_parallel_tasks: int=-1, allow_task_preemption: bool=None, constraints=None, job_manager_task=None, job_preparation_task=None, job_release_task=None, common_environment_settings=None, on_all_tasks_complete=None, on_task_failure=None, metadata=None, uses_task_dependencies: bool=None, network_configuration=None, **kwargs) -> None: super(JobAddParameter, self).__init__(**kwargs) self.id = id self.display_name = display_name self.priority = priority self.max_parallel_tasks = max_parallel_tasks + self.allow_task_preemption = allow_task_preemption self.constraints = constraints self.job_manager_task = job_manager_task self.job_preparation_task = job_preparation_task @@ -4450,7 +4494,7 @@ class JobManagerTask(Model): :type authentication_token_settings: ~azure.batch.models.AuthenticationTokenSettings :param allow_low_priority_node: Whether the Job Manager Task may run on a - low-priority Compute Node. The default value is true. + Spot/Low-priority Compute Node. The default value is true. :type allow_low_priority_node: bool """ @@ -4612,6 +4656,12 @@ class JobPatchParameter(Model): once. You can update a job's maxParallelTasks after it has been created using the update job API. :type max_parallel_tasks: int + :param allow_task_preemption: Whether Tasks in this job can be preempted + by other high priority jobs. If the value is set to True, other high + priority jobs submitted to the system will take precedence and will be + able requeue tasks from this job. You can update a job's + allowTaskPreemption after it has been created using the update job API. + :type allow_task_preemption: bool :param on_all_tasks_complete: The action the Batch service should take when all Tasks in the Job are in the completed state. If omitted, the completion behavior is left unchanged. You may not change the value from @@ -4640,16 +4690,18 @@ class JobPatchParameter(Model): _attribute_map = { 'priority': {'key': 'priority', 'type': 'int'}, 'max_parallel_tasks': {'key': 'maxParallelTasks', 'type': 'int'}, + 'allow_task_preemption': {'key': 'allowTaskPreemption', 'type': 'bool'}, 'on_all_tasks_complete': {'key': 'onAllTasksComplete', 'type': 'OnAllTasksComplete'}, 'constraints': {'key': 'constraints', 'type': 'JobConstraints'}, 'pool_info': {'key': 'poolInfo', 'type': 'PoolInformation'}, 'metadata': {'key': 'metadata', 'type': '[MetadataItem]'}, } - def __init__(self, *, priority: int=None, max_parallel_tasks: int=None, on_all_tasks_complete=None, constraints=None, pool_info=None, metadata=None, **kwargs) -> None: + def __init__(self, *, priority: int=None, max_parallel_tasks: int=None, allow_task_preemption: bool=None, on_all_tasks_complete=None, constraints=None, pool_info=None, metadata=None, **kwargs) -> None: super(JobPatchParameter, self).__init__(**kwargs) self.priority = priority self.max_parallel_tasks = max_parallel_tasks + self.allow_task_preemption = allow_task_preemption self.on_all_tasks_complete = on_all_tasks_complete self.constraints = constraints self.pool_info = pool_info @@ -5132,7 +5184,8 @@ class JobScheduleAddParameter(Model): any Unicode characters up to a maximum length of 1024. :type display_name: str :param schedule: Required. The schedule according to which Jobs will be - created. + created. All times are fixed respective to UTC and are not impacted by + daylight saving time. :type schedule: ~azure.batch.models.Schedule :param job_specification: Required. The details of the Jobs to be created on this schedule. @@ -5626,8 +5679,10 @@ def __init__(self, *, timeout: int=30, client_request_id: str=None, return_clien class JobSchedulePatchParameter(Model): """The set of changes to be made to a Job Schedule. - :param schedule: The schedule according to which Jobs will be created. If - you do not specify this element, the existing schedule is left unchanged. + :param schedule: The schedule according to which Jobs will be created. All + times are fixed respective to UTC and are not impacted by daylight saving + time. If you do not specify this element, the existing schedule is left + unchanged. :type schedule: ~azure.batch.models.Schedule :param job_specification: The details of the Jobs to be created on this schedule. Updates affect only Jobs that are started after the update has @@ -5882,8 +5937,10 @@ class JobScheduleUpdateParameter(Model): All required parameters must be populated in order to send to Azure. :param schedule: Required. The schedule according to which Jobs will be - created. If you do not specify this element, it is equivalent to passing - the default schedule: that is, a single Job scheduled to run immediately. + created. All times are fixed respective to UTC and are not impacted by + daylight saving time. If you do not specify this element, it is equivalent + to passing the default schedule: that is, a single Job scheduled to run + immediately. :type schedule: ~azure.batch.models.Schedule :param job_specification: Required. Details of the Jobs to be created on this schedule. Updates affect only Jobs that are started after the update @@ -5960,6 +6017,12 @@ class JobSpecification(Model): can update a Job's priority after it has been created using by using the update Job API. :type priority: int + :param allow_task_preemption: Whether Tasks in this job can be preempted + by other high priority jobs. If the value is set to True, other high + priority jobs submitted to the system will take precedence and will be + able requeue tasks from this job. You can update a job's + allowTaskPreemption after it has been created using the update job API. + :type allow_task_preemption: bool :param max_parallel_tasks: The maximum number of tasks that can be executed in parallel for the job. The value of maxParallelTasks must be -1 or greater than 0 if specified. If not specified, the default value is -1, @@ -6036,6 +6099,7 @@ class JobSpecification(Model): _attribute_map = { 'priority': {'key': 'priority', 'type': 'int'}, + 'allow_task_preemption': {'key': 'allowTaskPreemption', 'type': 'bool'}, 'max_parallel_tasks': {'key': 'maxParallelTasks', 'type': 'int'}, 'display_name': {'key': 'displayName', 'type': 'str'}, 'uses_task_dependencies': {'key': 'usesTaskDependencies', 'type': 'bool'}, @@ -6051,9 +6115,10 @@ class JobSpecification(Model): 'metadata': {'key': 'metadata', 'type': '[MetadataItem]'}, } - def __init__(self, *, pool_info, priority: int=None, max_parallel_tasks: int=-1, display_name: str=None, uses_task_dependencies: bool=None, on_all_tasks_complete=None, on_task_failure=None, network_configuration=None, constraints=None, job_manager_task=None, job_preparation_task=None, job_release_task=None, common_environment_settings=None, metadata=None, **kwargs) -> None: + def __init__(self, *, pool_info, priority: int=None, allow_task_preemption: bool=None, max_parallel_tasks: int=-1, display_name: str=None, uses_task_dependencies: bool=None, on_all_tasks_complete=None, on_task_failure=None, network_configuration=None, constraints=None, job_manager_task=None, job_preparation_task=None, job_release_task=None, common_environment_settings=None, metadata=None, **kwargs) -> None: super(JobSpecification, self).__init__(**kwargs) self.priority = priority + self.allow_task_preemption = allow_task_preemption self.max_parallel_tasks = max_parallel_tasks self.display_name = display_name self.uses_task_dependencies = uses_task_dependencies @@ -6320,6 +6385,19 @@ class JobUpdateParameter(Model): -1000 to 1000, with -1000 being the lowest priority and 1000 being the highest priority. If omitted, it is set to the default value 0. :type priority: int + :param max_parallel_tasks: The maximum number of tasks that can be + executed in parallel for the job. The value of maxParallelTasks must be -1 + or greater than 0 if specified. If not specified, the default value is -1, + which means there's no limit to the number of tasks that can be run at + once. You can update a job's maxParallelTasks after it has been created + using the update job API. Default value: -1 . + :type max_parallel_tasks: int + :param allow_task_preemption: Whether Tasks in this job can be preempted + by other high priority jobs. If the value is set to True, other high + priority jobs submitted to the system will take precedence and will be + able requeue tasks from this job. You can update a job's + allowTaskPreemption after it has been created using the update job API. + :type allow_task_preemption: bool :param constraints: The execution constraints for the Job. If omitted, the constraints are cleared. :type constraints: ~azure.batch.models.JobConstraints @@ -6356,15 +6434,19 @@ class JobUpdateParameter(Model): _attribute_map = { 'priority': {'key': 'priority', 'type': 'int'}, + 'max_parallel_tasks': {'key': 'maxParallelTasks', 'type': 'int'}, + 'allow_task_preemption': {'key': 'allowTaskPreemption', 'type': 'bool'}, 'constraints': {'key': 'constraints', 'type': 'JobConstraints'}, 'pool_info': {'key': 'poolInfo', 'type': 'PoolInformation'}, 'metadata': {'key': 'metadata', 'type': '[MetadataItem]'}, 'on_all_tasks_complete': {'key': 'onAllTasksComplete', 'type': 'OnAllTasksComplete'}, } - def __init__(self, *, pool_info, priority: int=None, constraints=None, metadata=None, on_all_tasks_complete=None, **kwargs) -> None: + def __init__(self, *, pool_info, priority: int=None, max_parallel_tasks: int=-1, allow_task_preemption: bool=None, constraints=None, metadata=None, on_all_tasks_complete=None, **kwargs) -> None: super(JobUpdateParameter, self).__init__(**kwargs) self.priority = priority + self.max_parallel_tasks = max_parallel_tasks + self.allow_task_preemption = allow_task_preemption self.constraints = constraints self.pool_info = pool_info self.metadata = metadata @@ -7108,6 +7190,11 @@ class OutputFileBlobContainerDestination(Model): use to access Azure Blob Storage specified by containerUrl. The identity must have write access to the Azure Blob Storage container :type identity_reference: ~azure.batch.models.ComputeNodeIdentityReference + :param upload_headers: These headers will be specified when uploading + files to Azure Storage. For more information, see [Request Headers (All + Blob + Types)](https://docs.microsoft.com/rest/api/storageservices/put-blob#request-headers-all-blob-types). + :type upload_headers: list[~azure.batch.models.HttpHeader] """ _validation = { @@ -7118,13 +7205,15 @@ class OutputFileBlobContainerDestination(Model): 'path': {'key': 'path', 'type': 'str'}, 'container_url': {'key': 'containerUrl', 'type': 'str'}, 'identity_reference': {'key': 'identityReference', 'type': 'ComputeNodeIdentityReference'}, + 'upload_headers': {'key': 'uploadHeaders', 'type': '[HttpHeader]'}, } - def __init__(self, *, container_url: str, path: str=None, identity_reference=None, **kwargs) -> None: + def __init__(self, *, container_url: str, path: str=None, identity_reference=None, upload_headers=None, **kwargs) -> None: super(OutputFileBlobContainerDestination, self).__init__(**kwargs) self.path = path self.container_url = container_url self.identity_reference = identity_reference + self.upload_headers = upload_headers class OutputFileDestination(Model): @@ -7255,7 +7344,7 @@ class PoolAddParameter(Model): is set to true. If enableAutoScale is set to false, then you must set either targetDedicatedNodes, targetLowPriorityNodes, or both. :type target_dedicated_nodes: int - :param target_low_priority_nodes: The desired number of low-priority + :param target_low_priority_nodes: The desired number of Spot/Low-priority Compute Nodes in the Pool. This property must not be specified if enableAutoScale is set to true. If enableAutoScale is set to false, then you must set either targetDedicatedNodes, targetLowPriorityNodes, or both. @@ -7979,7 +8068,7 @@ class PoolNodeCounts(Model): :type pool_id: str :param dedicated: The number of dedicated Compute Nodes in each state. :type dedicated: ~azure.batch.models.NodeCounts - :param low_priority: The number of low-priority Compute Nodes in each + :param low_priority: The number of Spot/Low-priority Compute Nodes in each state. :type low_priority: ~azure.batch.models.NodeCounts """ @@ -8240,7 +8329,7 @@ class PoolResizeParameter(Model): :param target_dedicated_nodes: The desired number of dedicated Compute Nodes in the Pool. :type target_dedicated_nodes: int - :param target_low_priority_nodes: The desired number of low-priority + :param target_low_priority_nodes: The desired number of Spot/Low-priority Compute Nodes in the Pool. :type target_low_priority_nodes: int :param resize_timeout: The default value is 15 minutes. The minimum value @@ -8320,7 +8409,7 @@ class PoolSpecification(Model): is set to true. If enableAutoScale is set to false, then you must set either targetDedicatedNodes, targetLowPriorityNodes, or both. :type target_dedicated_nodes: int - :param target_low_priority_nodes: The desired number of low-priority + :param target_low_priority_nodes: The desired number of Spot/Low-priority Compute Nodes in the Pool. This property must not be specified if enableAutoScale is set to true. If enableAutoScale is set to false, then you must set either targetDedicatedNodes, targetLowPriorityNodes, or both. @@ -8695,8 +8784,8 @@ class PublicIPAddressConfiguration(Model): 'batchManaged', 'userManaged', 'noPublicIPAddresses' :type provision: str or ~azure.batch.models.IPAddressProvisioningType :param ip_address_ids: The number of IPs specified here limits the maximum - size of the Pool - 100 dedicated nodes or 100 low-priority nodes can be - allocated for each public IP. For example, a pool needing 250 dedicated + size of the Pool - 100 dedicated nodes or 100 Spot/Low-priority nodes can + be allocated for each public IP. For example, a pool needing 250 dedicated VMs would need at least 3 public IPs specified. Each element of this collection is of the form: /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/publicIPAddresses/{ip}. @@ -8923,7 +9012,8 @@ def __init__(self, *, start_time, last_update_time, avg_cpu_percentage: float, a class Schedule(Model): - """The schedule according to which Jobs will be created. + """The schedule according to which Jobs will be created. All times are fixed + respective to UTC and are not impacted by daylight saving time. :param do_not_run_until: If you do not specify a doNotRunUntil time, the schedule becomes ready to create Jobs immediately. diff --git a/sdk/batch/azure-batch/azure/batch/operations/_account_operations.py b/sdk/batch/azure-batch/azure/batch/operations/_account_operations.py index ce3e901924cd..d46d85a57cec 100644 --- a/sdk/batch/azure-batch/azure/batch/operations/_account_operations.py +++ b/sdk/batch/azure-batch/azure/batch/operations/_account_operations.py @@ -24,7 +24,7 @@ class AccountOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2021-06-01.14.0". + :ivar api_version: The API version to use for the request. Constant value: "2022-01-01.15.0". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2021-06-01.14.0" + self.api_version = "2022-01-01.15.0" self.config = config diff --git a/sdk/batch/azure-batch/azure/batch/operations/_application_operations.py b/sdk/batch/azure-batch/azure/batch/operations/_application_operations.py index d521e3dd50cc..d6a4fa044d7a 100644 --- a/sdk/batch/azure-batch/azure/batch/operations/_application_operations.py +++ b/sdk/batch/azure-batch/azure/batch/operations/_application_operations.py @@ -24,7 +24,7 @@ class ApplicationOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2021-06-01.14.0". + :ivar api_version: The API version to use for the request. Constant value: "2022-01-01.15.0". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2021-06-01.14.0" + self.api_version = "2022-01-01.15.0" self.config = config diff --git a/sdk/batch/azure-batch/azure/batch/operations/_certificate_operations.py b/sdk/batch/azure-batch/azure/batch/operations/_certificate_operations.py index 4bca9532e49b..a1b38cf4aa1e 100644 --- a/sdk/batch/azure-batch/azure/batch/operations/_certificate_operations.py +++ b/sdk/batch/azure-batch/azure/batch/operations/_certificate_operations.py @@ -24,7 +24,7 @@ class CertificateOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2021-06-01.14.0". + :ivar api_version: The API version to use for the request. Constant value: "2022-01-01.15.0". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2021-06-01.14.0" + self.api_version = "2022-01-01.15.0" self.config = config diff --git a/sdk/batch/azure-batch/azure/batch/operations/_compute_node_extension_operations.py b/sdk/batch/azure-batch/azure/batch/operations/_compute_node_extension_operations.py index c3ed6a0f5e0c..ad5fc9a33fcb 100644 --- a/sdk/batch/azure-batch/azure/batch/operations/_compute_node_extension_operations.py +++ b/sdk/batch/azure-batch/azure/batch/operations/_compute_node_extension_operations.py @@ -24,7 +24,7 @@ class ComputeNodeExtensionOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2021-06-01.14.0". + :ivar api_version: The API version to use for the request. Constant value: "2022-01-01.15.0". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2021-06-01.14.0" + self.api_version = "2022-01-01.15.0" self.config = config diff --git a/sdk/batch/azure-batch/azure/batch/operations/_compute_node_operations.py b/sdk/batch/azure-batch/azure/batch/operations/_compute_node_operations.py index da16e128511d..7ecde0b92959 100644 --- a/sdk/batch/azure-batch/azure/batch/operations/_compute_node_operations.py +++ b/sdk/batch/azure-batch/azure/batch/operations/_compute_node_operations.py @@ -24,7 +24,7 @@ class ComputeNodeOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2021-06-01.14.0". + :ivar api_version: The API version to use for the request. Constant value: "2022-01-01.15.0". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2021-06-01.14.0" + self.api_version = "2022-01-01.15.0" self.config = config diff --git a/sdk/batch/azure-batch/azure/batch/operations/_file_operations.py b/sdk/batch/azure-batch/azure/batch/operations/_file_operations.py index bf7866e2cb5b..6ee807ab96c3 100644 --- a/sdk/batch/azure-batch/azure/batch/operations/_file_operations.py +++ b/sdk/batch/azure-batch/azure/batch/operations/_file_operations.py @@ -24,7 +24,7 @@ class FileOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2021-06-01.14.0". + :ivar api_version: The API version to use for the request. Constant value: "2022-01-01.15.0". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2021-06-01.14.0" + self.api_version = "2022-01-01.15.0" self.config = config diff --git a/sdk/batch/azure-batch/azure/batch/operations/_job_operations.py b/sdk/batch/azure-batch/azure/batch/operations/_job_operations.py index 8d4a99305469..1d26391aed28 100644 --- a/sdk/batch/azure-batch/azure/batch/operations/_job_operations.py +++ b/sdk/batch/azure-batch/azure/batch/operations/_job_operations.py @@ -24,7 +24,7 @@ class JobOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2021-06-01.14.0". + :ivar api_version: The API version to use for the request. Constant value: "2022-01-01.15.0". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2021-06-01.14.0" + self.api_version = "2022-01-01.15.0" self.config = config diff --git a/sdk/batch/azure-batch/azure/batch/operations/_job_schedule_operations.py b/sdk/batch/azure-batch/azure/batch/operations/_job_schedule_operations.py index 66d91a09d6a6..9b7685928bf2 100644 --- a/sdk/batch/azure-batch/azure/batch/operations/_job_schedule_operations.py +++ b/sdk/batch/azure-batch/azure/batch/operations/_job_schedule_operations.py @@ -24,7 +24,7 @@ class JobScheduleOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2021-06-01.14.0". + :ivar api_version: The API version to use for the request. Constant value: "2022-01-01.15.0". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2021-06-01.14.0" + self.api_version = "2022-01-01.15.0" self.config = config diff --git a/sdk/batch/azure-batch/azure/batch/operations/_pool_operations.py b/sdk/batch/azure-batch/azure/batch/operations/_pool_operations.py index 35d488335984..09f6b3ee28c2 100644 --- a/sdk/batch/azure-batch/azure/batch/operations/_pool_operations.py +++ b/sdk/batch/azure-batch/azure/batch/operations/_pool_operations.py @@ -24,7 +24,7 @@ class PoolOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2021-06-01.14.0". + :ivar api_version: The API version to use for the request. Constant value: "2022-01-01.15.0". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2021-06-01.14.0" + self.api_version = "2022-01-01.15.0" self.config = config diff --git a/sdk/batch/azure-batch/azure/batch/operations/_task_operations.py b/sdk/batch/azure-batch/azure/batch/operations/_task_operations.py index 9de08550e3cf..471b127876d4 100644 --- a/sdk/batch/azure-batch/azure/batch/operations/_task_operations.py +++ b/sdk/batch/azure-batch/azure/batch/operations/_task_operations.py @@ -24,7 +24,7 @@ class TaskOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: The API version to use for the request. Constant value: "2021-06-01.14.0". + :ivar api_version: The API version to use for the request. Constant value: "2022-01-01.15.0". """ models = models @@ -34,7 +34,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2021-06-01.14.0" + self.api_version = "2022-01-01.15.0" self.config = config diff --git a/sdk/batch/azure-batch/tests/batch_preparers.py b/sdk/batch/azure-batch/tests/batch_preparers.py index 38ea2567a133..24f29b34a03f 100644 --- a/sdk/batch/azure-batch/tests/batch_preparers.py +++ b/sdk/batch/azure-batch/tests/batch_preparers.py @@ -183,7 +183,7 @@ def create_resource(self, name, **kwargs): group = self._get_resource_group(**kwargs) batch_account = self._get_batch_account(**kwargs) user = models.UserAccount(name='task-user', password='kt#_gahr!@aGERDXA', elevation_level=models.ElevationLevel.admin) - vm_size = 'Standard_D1_v2' + vm_size = 'standard_d2_v2' if self.config == 'paas': vm_size = 'small' @@ -205,9 +205,9 @@ def create_resource(self, name, **kwargs): image_reference=models.ImageReference( publisher='Canonical', offer='UbuntuServer', - sku='16.04-LTS' + sku='18.04-LTS' ), - node_agent_sku_id='batch.node.ubuntu 16.04')) + node_agent_sku_id='batch.node.ubuntu 18.04')) parameters = models.Pool( display_name="test_pool", vm_size=vm_size, diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_applications.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_applications.yaml index 1c83f9386a11..05e8e6895724 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_applications.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_applications.yaml @@ -9,14 +9,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:02:23 GMT + - Thu, 13 Jan 2022 06:45:46 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/applications?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/applications?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#listapplicationsummariesresponses\",\"value\":[\r\n @@ -28,9 +28,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:02:23 GMT + - Thu, 13 Jan 2022 06:45:46 GMT request-id: - - 8d0ab0ea-1037-40ad-9525-6721d6f18569 + - e93b6874-66ed-4e04-b773-830fe0121517 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -52,14 +52,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:02:24 GMT + - Thu, 13 Jan 2022 06:45:46 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/applications/application_id?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/applications/application_id?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#getapplicationsummaryresponse/@Element\",\"id\":\"application_id\",\"versions\":[\r\n @@ -70,9 +70,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:02:23 GMT + - Thu, 13 Jan 2022 06:45:46 GMT request-id: - - e42d34c8-23a1-44c2-a911-5bc834a26e5d + - 3bc6be21-94cb-4e82-ac14-a48d0f876f71 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -100,14 +100,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:02:24 GMT + - Thu, 13 Jan 2022 06:45:46 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2022-01-01.15.0 response: body: string: '' @@ -117,15 +117,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:02:23 GMT + - Thu, 13 Jan 2022 06:45:46 GMT etag: - - '0x8D95351E48D0986' + - '0x8D9D660542616D1' last-modified: - - Fri, 30 Jul 2021 12:02:24 GMT + - Thu, 13 Jan 2022 06:45:46 GMT location: - https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/python_task_with_app_package request-id: - - da8d9259-3e3f-4d8b-bc3c-73cdf9c11728 + - 4ed8500f-b573-4132-8942-7d9f6b6d4f5d server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -147,17 +147,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:02:24 GMT + - Thu, 13 Jan 2022 06:45:46 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/python_task_with_app_package?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/python_task_with_app_package?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"python_task_with_app_package\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/python_task_with_app_package\",\"eTag\":\"0x8D95351E48D0986\",\"creationTime\":\"2021-07-30T12:02:24.1540486Z\",\"lastModified\":\"2021-07-30T12:02:24.1540486Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:02:24.1540486Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"python_task_with_app_package\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/python_task_with_app_package\",\"eTag\":\"0x8D9D660542616D1\",\"creationTime\":\"2022-01-13T06:45:46.6622673Z\",\"lastModified\":\"2022-01-13T06:45:46.6622673Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T06:45:46.6622673Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"applicationPackageReferences\":[\r\n {\r\n \ \"applicationId\":\"application_id\",\"version\":\"v1.0\"\r\n }\r\n \ ],\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n @@ -170,13 +170,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:02:23 GMT + - Thu, 13 Jan 2022 06:45:46 GMT etag: - - '0x8D95351E48D0986' + - '0x8D9D660542616D1' last-modified: - - Fri, 30 Jul 2021 12:02:24 GMT + - Thu, 13 Jan 2022 06:45:46 GMT request-id: - - 3254eee9-33bc-47dc-a0ed-7735a9594811 + - de255fe7-656b-49b8-aa95-d200d5cfd1bb server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_certificates.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_certificates.yaml index 217c5efba0f8..144d064df2b5 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_certificates.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_certificates.yaml @@ -15,14 +15,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:08:19 GMT + - Thu, 13 Jan 2022 06:51:49 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/certificates?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/certificates?api-version=2022-01-01.15.0 response: body: string: '' @@ -32,11 +32,11 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:08:19 GMT + - Thu, 13 Jan 2022 06:51:50 GMT location: - https://batch.southcentralus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7) request-id: - - 56b670df-5cb5-4ec1-8473-c925d8dd9c40 + - f36115f2-fd09-45e2-a047-20d2b0d0ff7f server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -58,18 +58,18 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:08:20 GMT + - Thu, 13 Jan 2022 06:51:50 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/certificates?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/certificates?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#certificates\",\"value\":[\r\n - \ {\r\n \"thumbprint\":\"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\"thumbprintAlgorithm\":\"sha1\",\"url\":\"https://batch.southcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:08:20.352056Z\",\"publicData\":\"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n + \ {\r\n \"thumbprint\":\"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\"thumbprintAlgorithm\":\"sha1\",\"url\":\"https://batch.southcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T06:51:50.4041209Z\",\"publicData\":\"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -77,9 +77,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:08:19 GMT + - Thu, 13 Jan 2022 06:51:50 GMT request-id: - - d9df66fa-9f30-49ec-a002-f17966285919 + - 6ee6a2b0-1667-4b7f-8298-6969a9163e34 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -101,26 +101,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:08:20 GMT + - Thu, 13 Jan 2022 06:51:50 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#certificates/@Element\",\"thumbprint\":\"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\"thumbprintAlgorithm\":\"sha1\",\"url\":\"https://batch.southcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:08:20.352056Z\",\"publicData\":\"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n}" + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#certificates/@Element\",\"thumbprint\":\"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\"thumbprintAlgorithm\":\"sha1\",\"url\":\"https://batch.southcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T06:51:50.4041209Z\",\"publicData\":\"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:08:19 GMT + - Thu, 13 Jan 2022 06:51:50 GMT request-id: - - 6d3376df-1dfa-4c79-bf4c-5bab88ea0421 + - 8914b837-60b1-4df4-aa3c-f4092b861e9b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -144,19 +144,19 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:08:20 GMT + - Thu, 13 Jan 2022 06:51:50 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)/canceldelete?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)/canceldelete?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"CertificateStateActive\",\"message\":{\r\n \ \"lang\":\"en-US\",\"value\":\"The specified certificate is in active - state.\\nRequestId:16594e7d-fa81-4740-b7d3-1349c87efe91\\nTime:2021-07-30T12:08:20.5874381Z\"\r\n + state.\\nRequestId:9df3e249-68d6-49c1-9dc6-14cfbf0457a1\\nTime:2022-01-13T06:51:50.6809075Z\"\r\n \ }\r\n}" headers: content-length: @@ -166,9 +166,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:08:20 GMT + - Thu, 13 Jan 2022 06:51:50 GMT request-id: - - 16594e7d-fa81-4740-b7d3-1349c87efe91 + - 9df3e249-68d6-49c1-9dc6-14cfbf0457a1 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -190,14 +190,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:08:20 GMT + - Thu, 13 Jan 2022 06:51:50 GMT method: DELETE - uri: https://batch.southcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)?api-version=2022-01-01.15.0 response: body: string: '' @@ -205,9 +205,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:08:20 GMT + - Thu, 13 Jan 2022 06:51:50 GMT request-id: - - 0aceedad-7009-47e4-a7d9-4bfb8c217f15 + - 30611644-90c8-433f-96fd-725dffa1d6c9 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_compute_node_user.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_compute_node_user.yaml index 2f98613ed708..727de6049cfd 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_compute_node_user.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_compute_node_user.yaml @@ -9,21 +9,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:09:57 GMT + - Fri, 14 Jan 2022 19:06:08 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d\",\"state\":\"creating\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:09:53.1867703Z\",\"allocationTime\":\"2021-07-30T12:09:53.1867703Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_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\":\"13.85.186.189\",\"publicFQDN\":\"dns642b6622-75a3-4674-a9d4-47b9b9ca928f-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n + \ {\r\n \"id\":\"tvm-1910979920_1-20220114t190437z\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvm-1910979920_1-20220114t190437z\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-01-14T19:05:03.665545Z\",\"lastBootTime\":\"2022-01-14T19:05:03.266297Z\",\"allocationTime\":\"2022-01-14T19:04:37.0071924Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvm-1910979920_1-20220114t190437z\",\"vmSize\":\"standard_d2_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"LogInPort\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.118.67.84\",\"publicFQDN\":\"dnsa7fb9b08-e684-4156-8bed-3f87bd57b0fe-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":51000,\"backendPort\":29877\r\n + \ },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.118.67.84\",\"publicFQDN\":\"dnsa7fb9b08-e684-4156-8bed-3f87bd57b0fe-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-01-14T19:05:03.266297Z\",\"version\":\"1.9.22\"\r\n + \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n \ }\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -31,9 +32,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:09:57 GMT + - Fri, 14 Jan 2022 19:06:08 GMT request-id: - - 7718cf39-b553-466e-b267-530b2ea8b180 + - dcd83cc9-fa2e-4c66-aee7-2d26ff69a493 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -55,21 +56,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:10:07 GMT + - Fri, 14 Jan 2022 19:06:09 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:10:03.638343Z\",\"allocationTime\":\"2021-07-30T12:09:53.1867703Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_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\":\"13.85.186.189\",\"publicFQDN\":\"dns642b6622-75a3-4674-a9d4-47b9b9ca928f-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n + \ {\r\n \"id\":\"tvm-1910979920_1-20220114t190437z\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvm-1910979920_1-20220114t190437z\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-01-14T19:05:03.665545Z\",\"lastBootTime\":\"2022-01-14T19:05:03.266297Z\",\"allocationTime\":\"2022-01-14T19:04:37.0071924Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvm-1910979920_1-20220114t190437z\",\"vmSize\":\"standard_d2_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"LogInPort\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.118.67.84\",\"publicFQDN\":\"dnsa7fb9b08-e684-4156-8bed-3f87bd57b0fe-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":51000,\"backendPort\":29877\r\n + \ },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.118.67.84\",\"publicFQDN\":\"dnsa7fb9b08-e684-4156-8bed-3f87bd57b0fe-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-01-14T19:05:03.266297Z\",\"version\":\"1.9.22\"\r\n + \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n \ }\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -77,101 +79,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:10:07 GMT + - Fri, 14 Jan 2022 19:06:08 GMT request-id: - - 0a448ab4-7e4c-498d-8ebb-bc061d6511ef - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python - accept-language: - - en-US - ocp-date: - - Fri, 30 Jul 2021 12:10:17 GMT - method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2021-06-01.14.0 - response: - body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:10:09.584685Z\",\"lastBootTime\":\"2021-07-30T12:10:09.189871Z\",\"allocationTime\":\"2021-07-30T12:09:53.1867703Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_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\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"13.85.186.189\",\"publicFQDN\":\"dns642b6622-75a3-4674-a9d4-47b9b9ca928f-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2021-07-30T12:10:09.189871Z\",\"version\":\"1.9.14\"\r\n - \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n - \ }\r\n }\r\n }\r\n ]\r\n}" - headers: - content-type: - - application/json;odata=minimalmetadata - dataserviceversion: - - '3.0' - date: - - Fri, 30 Jul 2021 12:10:17 GMT - request-id: - - 33d5c20b-cb70-4b9a-bcf6-6daee30b1d3d - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python - accept-language: - - en-US - ocp-date: - - Fri, 30 Jul 2021 12:10:18 GMT - method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2021-06-01.14.0 - response: - body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:10:09.584685Z\",\"lastBootTime\":\"2021-07-30T12:10:09.189871Z\",\"allocationTime\":\"2021-07-30T12:09:53.1867703Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_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\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"13.85.186.189\",\"publicFQDN\":\"dns642b6622-75a3-4674-a9d4-47b9b9ca928f-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2021-07-30T12:10:09.189871Z\",\"version\":\"1.9.14\"\r\n - \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n - \ }\r\n }\r\n }\r\n ]\r\n}" - headers: - content-type: - - application/json;odata=minimalmetadata - dataserviceversion: - - '3.0' - date: - - Fri, 30 Jul 2021 12:10:18 GMT - request-id: - - 0345687f-0d8a-4271-82de-91716a87cb38 + - 18aa8e5a-2d22-4ebb-8156-68faa09e3259 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -197,28 +107,28 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:10:18 GMT + - Fri, 14 Jan 2022 19:06:09 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d/users?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvm-1910979920_1-20220114t190437z/users?api-version=2022-01-01.15.0 response: body: string: '' headers: dataserviceid: - - https://batch3c670ff0.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d/users/BatchPythonSDKUser + - https://batch3c670ff0.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvm-1910979920_1-20220114t190437z/users/BatchPythonSDKUser dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:10:18 GMT + - Fri, 14 Jan 2022 19:06:09 GMT location: - - https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d/users/BatchPythonSDKUser + - https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvm-1910979920_1-20220114t190437z/users/BatchPythonSDKUser request-id: - - b2fbfeef-207c-48b8-b603-4e9aed7c56f0 + - 71cee6cb-b359-4c40-8394-5e705db87548 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -244,26 +154,26 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:10:18 GMT + - Fri, 14 Jan 2022 19:06:09 GMT method: PUT - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d/users/BatchPythonSDKUser?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvm-1910979920_1-20220114t190437z/users/BatchPythonSDKUser?api-version=2022-01-01.15.0 response: body: string: '' headers: dataserviceid: - - https://batch3c670ff0.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d/users/BatchPythonSDKUser + - https://batch3c670ff0.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvm-1910979920_1-20220114t190437z/users/BatchPythonSDKUser dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:10:18 GMT + - Fri, 14 Jan 2022 19:06:09 GMT request-id: - - ee4e49df-e384-4005-8639-59513f665403 + - 8216943e-f5ea-4651-92f1-a121f0a24f11 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -285,28 +195,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:10:18 GMT + - Fri, 14 Jan 2022 19:06:09 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d/remoteloginsettings?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvm-1910979920_1-20220114t190437z/remoteloginsettings?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.RemoteLoginSettings\",\"remoteLoginIPAddress\":\"13.85.186.189\",\"remoteLoginPort\":50000\r\n}" + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.RemoteLoginSettings\",\"remoteLoginIPAddress\":\"20.118.67.84\",\"remoteLoginPort\":50000\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceid: - - https://batch3c670ff0.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d/remoteloginsettings + - https://batch3c670ff0.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvm-1910979920_1-20220114t190437z/remoteloginsettings dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:10:18 GMT + - Fri, 14 Jan 2022 19:06:09 GMT request-id: - - afdb1c1e-2f5a-483a-8c4a-fdb202399f63 + - d634d33e-4055-488d-8960-df89c6daabfc server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -330,14 +240,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:10:18 GMT + - Fri, 14 Jan 2022 19:06:10 GMT method: DELETE - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_060e2e3d83c875bdb30d2469e1b3b81374c1ece8e53a639e4c131a13017fcf05_d/users/BatchPythonSDKUser?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvm-1910979920_1-20220114t190437z/users/BatchPythonSDKUser?api-version=2022-01-01.15.0 response: body: string: '' @@ -345,9 +255,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:10:19 GMT + - Fri, 14 Jan 2022 19:06:09 GMT request-id: - - 0799157f-1ee2-4810-b8f3-5338220c1ddc + - e26c1a1d-ca50-45c5-a7df-35bd46861974 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_compute_nodes.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_compute_nodes.yaml index f9bb51d8634c..9691c8b4098f 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_compute_nodes.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_compute_nodes.yaml @@ -9,25 +9,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:19:44 GMT + - Fri, 21 Jan 2022 23:48:44 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d\",\"state\":\"creating\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:19:34.7574688Z\",\"allocationTime\":\"2021-07-30T12:19:34.7574688Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_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.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.248.102.238\",\"publicFQDN\":\"dns32f6fc77-4947-4688-a81b-d7bdcfc310a4-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n - \ }\r\n }\r\n },{\r\n \"id\":\"tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_d\",\"state\":\"creating\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:19:34.7574688Z\",\"allocationTime\":\"2021-07-30T12:19:34.7574688Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_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\":\"52.248.102.238\",\"publicFQDN\":\"dns32f6fc77-4947-4688-a81b-d7bdcfc310a4-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n + \ {\r\n \"id\":\"tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-01-21T23:46:25.312997Z\",\"lastBootTime\":\"2022-01-21T23:46:24.621649Z\",\"allocationTime\":\"2022-01-21T23:46:09.4332268Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d\",\"vmSize\":\"standard_d2_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.97.88.3\",\"publicFQDN\":\"dns68c80e8b-2b1f-4443-8431-a80d1ce60ca5-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-01-21T23:46:24.621649Z\",\"version\":\"1.9.22\"\r\n + \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"18.04.202201180\"\r\n + \ }\r\n }\r\n },{\r\n \"id\":\"tvmps_4ba75cef43e7b0f4270cdcc0122ce8a789f389abbeb68267b314a2c89c50cfc5_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_4ba75cef43e7b0f4270cdcc0122ce8a789f389abbeb68267b314a2c89c50cfc5_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-01-21T23:46:25.120216Z\",\"lastBootTime\":\"2022-01-21T23:46:24.638346Z\",\"allocationTime\":\"2022-01-21T23:46:09.4332268Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_4ba75cef43e7b0f4270cdcc0122ce8a789f389abbeb68267b314a2c89c50cfc5_d\",\"vmSize\":\"standard_d2_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.97.88.3\",\"publicFQDN\":\"dns68c80e8b-2b1f-4443-8431-a80d1ce60ca5-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-01-21T23:46:24.638346Z\",\"version\":\"1.9.22\"\r\n + \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"18.04.202201180\"\r\n \ }\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -35,9 +35,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:19:43 GMT + - Fri, 21 Jan 2022 23:48:43 GMT request-id: - - 020a630a-f2d2-4276-afc0-25e052c00808 + - 729adf7a-c411-4579-98de-e410f5060999 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -59,120 +59,20 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:19:54 GMT + - Fri, 21 Jan 2022 23:48:45 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:19:45.2702459Z\",\"allocationTime\":\"2021-07-30T12:19:34.7574688Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_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.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.248.102.238\",\"publicFQDN\":\"dns32f6fc77-4947-4688-a81b-d7bdcfc310a4-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n - \ }\r\n }\r\n },{\r\n \"id\":\"tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:19:50.718683Z\",\"lastBootTime\":\"2021-07-30T12:19:50.324824Z\",\"allocationTime\":\"2021-07-30T12:19:34.7574688Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_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\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.248.102.238\",\"publicFQDN\":\"dns32f6fc77-4947-4688-a81b-d7bdcfc310a4-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2021-07-30T12:19:50.324824Z\",\"version\":\"1.9.14\"\r\n - \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n - \ }\r\n }\r\n }\r\n ]\r\n}" - headers: - content-type: - - application/json;odata=minimalmetadata - dataserviceversion: - - '3.0' - date: - - Fri, 30 Jul 2021 12:19:54 GMT - request-id: - - fa77d1f6-9569-4eec-aa5a-19198571ef4b - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python - accept-language: - - en-US - ocp-date: - - Fri, 30 Jul 2021 12:20:04 GMT - method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2021-06-01.14.0 - response: - body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:19:54.876064Z\",\"lastBootTime\":\"2021-07-30T12:19:54.348905Z\",\"allocationTime\":\"2021-07-30T12:19:34.7574688Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_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\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.248.102.238\",\"publicFQDN\":\"dns32f6fc77-4947-4688-a81b-d7bdcfc310a4-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2021-07-30T12:19:54.348905Z\",\"version\":\"1.9.14\"\r\n - \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n - \ }\r\n }\r\n },{\r\n \"id\":\"tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:19:50.718683Z\",\"lastBootTime\":\"2021-07-30T12:19:50.324824Z\",\"allocationTime\":\"2021-07-30T12:19:34.7574688Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_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\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.248.102.238\",\"publicFQDN\":\"dns32f6fc77-4947-4688-a81b-d7bdcfc310a4-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2021-07-30T12:19:50.324824Z\",\"version\":\"1.9.14\"\r\n - \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n - \ }\r\n }\r\n }\r\n ]\r\n}" - headers: - content-type: - - application/json;odata=minimalmetadata - dataserviceversion: - - '3.0' - date: - - Fri, 30 Jul 2021 12:20:03 GMT - request-id: - - adce4773-9ba4-4d6a-ba1f-8493351e6882 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python - accept-language: - - en-US - ocp-date: - - Fri, 30 Jul 2021 12:20:04 GMT - method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d?api-version=2021-06-01.14.0 - response: - body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#nodes/@Element\",\"id\":\"tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:19:54.876064Z\",\"lastBootTime\":\"2021-07-30T12:19:54.348905Z\",\"allocationTime\":\"2021-07-30T12:19:34.7574688Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_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\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.248.102.238\",\"publicFQDN\":\"dns32f6fc77-4947-4688-a81b-d7bdcfc310a4-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2021-07-30T12:19:54.348905Z\",\"version\":\"1.9.14\"\r\n - \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#nodes/@Element\",\"id\":\"tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-01-21T23:46:25.312997Z\",\"lastBootTime\":\"2022-01-21T23:46:24.621649Z\",\"allocationTime\":\"2022-01-21T23:46:09.4332268Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d\",\"vmSize\":\"standard_d2_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.97.88.3\",\"publicFQDN\":\"dns68c80e8b-2b1f-4443-8431-a80d1ce60ca5-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-01-21T23:46:24.621649Z\",\"version\":\"1.9.22\"\r\n + \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"18.04.202201180\"\r\n \ }\r\n }\r\n}" headers: content-type: @@ -180,9 +80,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:20:03 GMT + - Fri, 21 Jan 2022 23:48:44 GMT request-id: - - c6195dd0-23ca-47db-bf3d-6d111b9853a4 + - 56adb55c-af91-4ce3-adbb-e53bb11e5612 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -195,8 +95,8 @@ interactions: code: 200 message: OK - request: - body: '{"containerUrl": "https://test.blob.core.windows.net:443/test-container", - "startTime": "2021-07-30T12:14:04.671388Z"}' + body: '{"containerUrl": "https://computecontainer.blob.core.windows.net/", "startTime": + "2022-01-21T23:42:52.967674Z"}' headers: Accept: - application/json @@ -205,30 +105,30 @@ interactions: Connection: - keep-alive Content-Length: - - '117' + - '111' Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:20:04 GMT + - Fri, 21 Jan 2022 23:48:55 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d/uploadbatchservicelogs?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d/uploadbatchservicelogs?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.UploadBatchServiceLogsResult\",\"virtualDirectoryName\":\"batch-22F0D521D1CC8CAB/test_batch_test_batch_compute_nodesff3f0e45/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d/f905c482-0cdc-486e-add7-b5aff713dacc\",\"numberOfFilesUploaded\":4\r\n}" + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.UploadBatchServiceLogsResult\",\"virtualDirectoryName\":\"batch-22F04B46AA221C14/test_batch_test_batch_compute_nodesff3f0e45/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d/eefc85a4-a970-4980-91c5-58ae924c85b2\",\"numberOfFilesUploaded\":4\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:20:04 GMT + - Fri, 21 Jan 2022 23:48:55 GMT request-id: - - f905c482-0cdc-486e-add7-b5aff713dacc + - eefc85a4-a970-4980-91c5-58ae924c85b2 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -254,26 +154,26 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:20:04 GMT + - Fri, 21 Jan 2022 23:49:28 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d/disablescheduling?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d/disablescheduling?api-version=2022-01-01.15.0 response: body: string: '' headers: dataserviceid: - - https://batchff3f0e45.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d/disablescheduling + - https://batchff3f0e45.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d/disablescheduling dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:20:04 GMT + - Fri, 21 Jan 2022 23:49:27 GMT request-id: - - bb81072e-7389-48bc-acb2-aacffb61f12c + - d972939f-2860-4c3d-8480-4762324e09ab server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -297,26 +197,26 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:20:04 GMT + - Fri, 21 Jan 2022 23:49:28 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d/enablescheduling?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d/enablescheduling?api-version=2022-01-01.15.0 response: body: string: '' headers: dataserviceid: - - https://batchff3f0e45.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d/enablescheduling + - https://batchff3f0e45.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d/enablescheduling dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:20:04 GMT + - Fri, 21 Jan 2022 23:49:27 GMT request-id: - - 2721af1f-b631-455c-8147-f120a4f4de16 + - a04a82ba-6c82-4810-8736-f8ce1ae53879 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -342,26 +242,26 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:20:05 GMT + - Fri, 21 Jan 2022 23:49:28 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d/reboot?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d/reboot?api-version=2022-01-01.15.0 response: body: string: '' headers: dataserviceid: - - https://batchff3f0e45.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d/reboot + - https://batchff3f0e45.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d/reboot dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:20:04 GMT + - Fri, 21 Jan 2022 23:49:28 GMT request-id: - - 4919a257-c7ed-411b-851a-c56398abfb54 + - 058ebf6b-5c0f-4b58-8246-83fb22983970 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -387,19 +287,19 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:20:05 GMT + - Fri, 21 Jan 2022 23:49:29 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_d/reimage?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_4ba75cef43e7b0f4270cdcc0122ce8a789f389abbeb68267b314a2c89c50cfc5_d/reimage?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"OperationNotValidOnNode\",\"message\":{\r\n \ \"lang\":\"en-US\",\"value\":\"The specified operation is not valid on - the node.\\nRequestId:4ce9c859-9506-4172-89e7-1b172155b56c\\nTime:2021-07-30T12:20:05.1525476Z\"\r\n + the node.\\nRequestId:c93812ba-2298-4faf-b74c-00857f0adedd\\nTime:2022-01-21T23:49:28.9117614Z\"\r\n \ },\"values\":[\r\n {\r\n \"key\":\"Reason\",\"value\":\"Operation reimage can be invoked only on pools created with cloudServiceConfiguration\"\r\n \ }\r\n ]\r\n}" @@ -411,9 +311,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:20:04 GMT + - Fri, 21 Jan 2022 23:49:28 GMT request-id: - - 4ce9c859-9506-4172-89e7-1b172155b56c + - c93812ba-2298-4faf-b74c-00857f0adedd server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -424,8 +324,8 @@ interactions: code: 409 message: The specified operation is not valid on the node. - request: - body: '{"nodeList": ["tvmps_7d3d3e847ce97013fa3a80b50d395b0c3c5a35e773f6bf427ddf66d85f7d6502_d", - "tvmps_912d3d05da2649f1fb103acdd76b2856e3029cc9c53802e0c7e68accd0239f6a_d"]}' + body: '{"nodeList": ["tvmps_0b9677f8c5e8f87ea8f99290852630abb5d0d4156c6fd7b497ae1276f0307291_d", + "tvmps_4ba75cef43e7b0f4270cdcc0122ce8a789f389abbeb68267b314a2c89c50cfc5_d"]}' headers: Accept: - application/json @@ -438,14 +338,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:20:05 GMT + - Fri, 21 Jan 2022 23:49:29 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/removenodes?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/removenodes?api-version=2022-01-01.15.0 response: body: string: '' @@ -455,13 +355,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:20:04 GMT + - Fri, 21 Jan 2022 23:49:28 GMT etag: - - '0x8D953545CFEFA03' + - '0x8D9DD38AA070034' last-modified: - - Fri, 30 Jul 2021 12:20:05 GMT + - Fri, 21 Jan 2022 23:49:29 GMT request-id: - - 4b81f91e-c00e-4783-92e4-4fe453a07fb0 + - 71fb8a63-6e56-40df-b4f4-aceaa9c5d3e7 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_create_pool_with_blobfuse_mount.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_create_pool_with_blobfuse_mount.yaml index 3f550960f9ae..eb57d774d882 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_create_pool_with_blobfuse_mount.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_create_pool_with_blobfuse_mount.yaml @@ -19,14 +19,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:28:44 GMT + - Thu, 13 Jan 2022 07:05:08 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0 response: body: string: '' @@ -36,15 +36,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:28:44 GMT + - Thu, 13 Jan 2022 07:05:08 GMT etag: - - '0x8D9535592A8A0F6' + - '0x8D9D66308BBCA09' last-modified: - - Fri, 30 Jul 2021 12:28:44 GMT + - Thu, 13 Jan 2022 07:05:08 GMT location: - https://batch.southcentralus.batch.azure.com/pools/batch_iaas_449c15bb request-id: - - 5c17a5a9-b747-4b48-a7ee-9918bd75089e + - 9996c072-b4e7-4da2-a413-7aa74d79d349 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -66,17 +66,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:28:44 GMT + - Thu, 13 Jan 2022 07:05:08 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_iaas_449c15bb?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_iaas_449c15bb?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_iaas_449c15bb\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_iaas_449c15bb\",\"eTag\":\"0x8D9535592A8A0F6\",\"lastModified\":\"2021-07-30T12:28:44.7486198Z\",\"creationTime\":\"2021-07-30T12:28:44.7486198Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:28:44.7486198Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:28:44.7486198Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_iaas_449c15bb\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_iaas_449c15bb\",\"eTag\":\"0x8D9D66308BBCA09\",\"lastModified\":\"2022-01-13T07:05:08.6266889Z\",\"creationTime\":\"2022-01-13T07:05:08.6266889Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:05:08.6266889Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-13T07:05:08.6266889Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Pack\"\r\n },\"virtualMachineConfiguration\":{\r\n \ \"imageReference\":{\r\n \"publisher\":\"MicrosoftWindowsServer\",\"offer\":\"WindowsServer\",\"sku\":\"2016-Datacenter-smalldisk\",\"version\":\"latest\"\r\n \ },\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"windowsConfiguration\":{\r\n @@ -89,13 +89,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:28:44 GMT + - Thu, 13 Jan 2022 07:05:08 GMT etag: - - '0x8D9535592A8A0F6' + - '0x8D9D66308BBCA09' last-modified: - - Fri, 30 Jul 2021 12:28:44 GMT + - Thu, 13 Jan 2022 07:05:08 GMT request-id: - - bb4ce40a-96da-47ac-bc24-43de0b0de1ac + - e2ddb328-8ea3-44b2-a2aa-3392fda84059 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_create_pools.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_create_pools.yaml index 4f006c1a9a0b..cb148479755d 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_create_pools.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_create_pools.yaml @@ -9,18 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:37 GMT + - Thu, 13 Jan 2022 07:11:02 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/supportedimages?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/supportedimages?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#supportedimages\",\"value\":[\r\n - \ {\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-centos73\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n + \ {\r\n \"imageReference\":{\r\n \"publisher\":\"almalinux\",\"offer\":\"almalinux\",\"sku\":\"8_4\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.el + 8\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"almalinux\",\"offer\":\"almalinux\",\"sku\":\"8_4-gen2\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.el + 8\",\"capabilities\":[\r\n \"Generation2VMImage\"\r\n ],\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-centos73\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"batch\",\"offer\":\"rendering-windows2016\",\"sku\":\"rendering\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows @@ -182,19 +187,43 @@ interactions: \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2019-datacenter-with-containers-smalldisk\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2022-datacenter\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows + amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n + \ \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2022-datacenter-core\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows + amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n + \ \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2022-datacenter-core-g2\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows + amd64\",\"capabilities\":[\r\n \"Generation2VMImage\"\r\n ],\"osType\":\"windows\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2022-datacenter-core-smalldisk\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows + amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n + \ \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2022-datacenter-core-smalldisk-g2\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows + amd64\",\"capabilities\":[\r\n \"Generation2VMImage\"\r\n ],\"osType\":\"windows\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2022-datacenter-g2\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows + amd64\",\"capabilities\":[\r\n \"Generation2VMImage\"\r\n ],\"osType\":\"windows\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2022-datacenter-smalldisk\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows + amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n + \ \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2022-datacenter-smalldisk-g2\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows + amd64\",\"capabilities\":[\r\n \"Generation2VMImage\"\r\n ],\"osType\":\"windows\"\r\n \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"datacenter-core-2004-with-containers-smalldisk\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"batchSupportEndOfLife\":\"2022-01-14T00:00:00Z\",\"osType\":\"windows\"\r\n \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"datacenter-core-20h2-with-containers-smalldisk\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows - amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n + amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"batchSupportEndOfLife\":\"2022-06-10T00:00:00Z\",\"osType\":\"windows\"\r\n \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"datacenter-core-20h2-with-containers-smalldisk-g2\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"capabilities\":[\r\n \"DockerCompatible\",\"Generation2VMImage\"\r\n - \ ],\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"datacenter-core-20h2-with-containers-smalldisk-gs\",\"version\":\"latest\"\r\n + \ ],\"batchSupportEndOfLife\":\"2022-06-10T00:00:00Z\",\"osType\":\"windows\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"datacenter-core-20h2-with-containers-smalldisk-gs\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows - amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n + amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"batchSupportEndOfLife\":\"2022-06-10T00:00:00Z\",\"osType\":\"windows\"\r\n \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"openlogic\",\"offer\":\"centos\",\"sku\":\"7.3\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"openlogic\",\"offer\":\"centos\",\"sku\":\"7.4\",\"version\":\"latest\"\r\n @@ -242,12 +271,12 @@ interactions: \ \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"8_1\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 8\",\"capabilities\":[\r\n \"SupportsRDMAOnly\",\"IntelMPIRuntimeInstalled\"\r\n - \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"8_1-gen2\",\"version\":\"latest\"\r\n + \ ],\"batchSupportEndOfLife\":\"2021-12-31T00:00:00Z\",\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"8_1-gen2\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 8\",\"capabilities\":[\r\n \"SupportsRDMAOnly\",\"IntelMPIRuntimeInstalled\",\"Generation2VMImage\"\r\n - \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"oracle\",\"offer\":\"oracle-linux\",\"sku\":\"7.4\",\"version\":\"latest\"\r\n + \ ],\"batchSupportEndOfLife\":\"2021-12-31T00:00:00Z\",\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"oracle\",\"offer\":\"oracle-linux\",\"sku\":\"7.4\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"oracle\",\"offer\":\"oracle-linux\",\"sku\":\"78\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos @@ -258,16 +287,19 @@ interactions: \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"xilinx\",\"offer\":\"xilinx_alveo_u250_deployment_vm_ubuntu1804_032321\",\"sku\":\"xilinx_alveo_u250_deployment_vm_ubuntu_1804_032321\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu - 18.04\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" + 18.04\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n + \ \"publisher\":\"xilinx\",\"offer\":\"xilinx_alveo_u250_deployment_vm_ubuntu2004_062421\",\"sku\":\"xilinx_alveo_u250_deployment_vm_ubuntu_2004_062421\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu + 20.04\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:37 GMT + - Thu, 13 Jan 2022 07:11:02 GMT request-id: - - 7d342d63-449a-42b8-ab58-92657987688b + - 884ead2d-df85-47d4-9ca6-4487c1615abe server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -299,14 +331,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:37 GMT + - Thu, 13 Jan 2022 07:11:03 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0 response: body: string: '' @@ -316,15 +348,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:37 GMT + - Thu, 13 Jan 2022 07:11:03 GMT etag: - - '0x8D95356653279B2' + - '0x8D9D663DC2A9857' last-modified: - - Fri, 30 Jul 2021 12:34:37 GMT + - Thu, 13 Jan 2022 07:11:03 GMT location: - https://batch.southcentralus.batch.azure.com/pools/batch_iaas_f0260dd0 request-id: - - 94f781e2-120f-445d-b766-bb9328342bb6 + - b8d0c0e6-8531-4cbb-9086-350ed89f0940 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -346,14 +378,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:03 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/nodecounts?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/nodecounts?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#poolnodecounts\",\"value\":[\r\n @@ -366,9 +398,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:37 GMT + - Thu, 13 Jan 2022 07:11:03 GMT request-id: - - 175be57d-c468-45e6-a991-42a7939a9816 + - 60f73977-7e5e-49c8-abe8-3596783967aa server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -383,7 +415,7 @@ interactions: - request: body: '{"id": "batch_network_f0260dd0", "vmSize": "standard_d1_v2", "virtualMachineConfiguration": {"imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "16.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 16.04"}, "networkConfiguration": + "18.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 18.04"}, "networkConfiguration": {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}' headers: Accept: @@ -397,21 +429,21 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:03 GMT return-client-request-id: - 'false' method: POST - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0&timeout=45 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0&timeout=45 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.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:17110a22-6ff5-4428-9bc8-13561e4fb936\\nTime:2021-07-30T12:34:38.1348287Z\"\r\n + in the request body is invalid.\\nRequestId:543d2395-accd-4806-8d21-f3be3817911a\\nTime:2022-01-13T07:11:03.5696066Z\"\r\n \ },\"values\":[\r\n {\r\n \"key\":\"PropertyName\",\"value\":\"subnetId\"\r\n \ },{\r\n \"key\":\"PropertyValue\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1\"\r\n \ },{\r\n \"key\":\"Reason\",\"value\":\"The specified subnetId is @@ -425,9 +457,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:37 GMT + - Thu, 13 Jan 2022 07:11:03 GMT request-id: - - 17110a22-6ff5-4428-9bc8-13561e4fb936 + - 543d2395-accd-4806-8d21-f3be3817911a server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -441,7 +473,7 @@ interactions: - request: body: '{"id": "batch_image_f0260dd0", "vmSize": "standard_d1_v2", "virtualMachineConfiguration": {"imageReference": {"virtualMachineImageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/gallery/FakeGallery/images/FakeImage/versions/version"}, - "nodeAgentSKUId": "batch.node.ubuntu 16.04"}}' + "nodeAgentSKUId": "batch.node.ubuntu 18.04"}}' headers: Accept: - application/json @@ -454,21 +486,21 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:03 GMT return-client-request-id: - 'false' method: POST - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0&timeout=45 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0&timeout=45 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.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:b80c7437-3784-449a-a713-abc0b658a7b3\\nTime:2021-07-30T12:34:38.1939748Z\"\r\n + in the request body is invalid.\\nRequestId:525a0976-2ee7-4451-9afc-e591209eeb20\\nTime:2022-01-13T07:11:03.6486177Z\"\r\n \ },\"values\":[\r\n {\r\n \"key\":\"PropertyName\",\"value\":\"virtualMachineImageId\"\r\n \ },{\r\n \"key\":\"PropertyValue\",\"value\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/gallery/FakeGallery/images/FakeImage/versions/version\"\r\n \ },{\r\n \"key\":\"Reason\",\"value\":\"The specified resource id @@ -484,9 +516,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:37 GMT + - Thu, 13 Jan 2022 07:11:03 GMT request-id: - - b80c7437-3784-449a-a713-abc0b658a7b3 + - 525a0976-2ee7-4451-9afc-e591209eeb20 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -500,7 +532,7 @@ interactions: - request: body: '{"id": "batch_disk_f0260dd0", "vmSize": "standard_d1_v2", "virtualMachineConfiguration": {"imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "16.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 16.04", "dataDisks": [{"lun": + "18.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 18.04", "dataDisks": [{"lun": 1, "diskSizeGB": 50}]}}' headers: Accept: @@ -514,14 +546,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:03 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0 response: body: string: '' @@ -531,15 +563,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:37 GMT + - Thu, 13 Jan 2022 07:11:03 GMT etag: - - '0x8D95356657FAF96' + - '0x8D9D663DC816B3F' last-modified: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:03 GMT location: - https://batch.southcentralus.batch.azure.com/pools/batch_disk_f0260dd0 request-id: - - 30330a87-872a-411b-8da7-0c2534aea3dd + - fd9036d2-908c-4f82-8f25-fa8af2e99f44 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -561,20 +593,20 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:04 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_disk_f0260dd0?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_disk_f0260dd0?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_disk_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_disk_f0260dd0\",\"eTag\":\"0x8D95356657FAF96\",\"lastModified\":\"2021-07-30T12:34:38.4795542Z\",\"creationTime\":\"2021-07-30T12:34:38.4795542Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:34:38.4795542Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:34:38.4795542Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_disk_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_disk_f0260dd0\",\"eTag\":\"0x8D9D663DC816B3F\",\"lastModified\":\"2022-01-13T07:11:03.9211327Z\",\"creationTime\":\"2022-01-13T07:11:03.9211327Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:11:03.9211327Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-13T07:11:03.9211327Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n - \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"dataDisks\":[\r\n {\r\n + \ \"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\":1,\"caching\":\"none\",\"diskSizeGB\":50,\"storageAccountType\":\"standard_lrs\"\r\n \ }\r\n ]\r\n }\r\n}" headers: @@ -583,13 +615,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:03 GMT etag: - - '0x8D95356657FAF96' + - '0x8D9D663DC816B3F' last-modified: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:03 GMT request-id: - - 0e4d1057-435b-4f2b-93f2-3c74b9483c72 + - 49c7bbdb-b0d8-4069-a7d1-d48d34bb3c78 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -604,7 +636,7 @@ interactions: - request: body: '{"id": "batch_app_f0260dd0", "vmSize": "standard_d1_v2", "virtualMachineConfiguration": {"imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "16.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 16.04", "dataDisks": [{"lun": + "18.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 18.04", "dataDisks": [{"lun": 1, "diskSizeGB": 50}]}, "applicationLicenses": ["maya"]}' headers: Accept: @@ -618,14 +650,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:04 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0 response: body: string: '' @@ -635,15 +667,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:04 GMT etag: - - '0x8D9535665BEDBAC' + - '0x8D9D663DCBCC6C7' last-modified: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:04 GMT location: - https://batch.southcentralus.batch.azure.com/pools/batch_app_f0260dd0 request-id: - - 7a1d717a-80ae-4e1a-8eb1-1a929c011534 + - 316773f8-af58-4179-830b-512345ae55c0 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -665,20 +697,20 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:04 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_app_f0260dd0?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_app_f0260dd0?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_app_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_app_f0260dd0\",\"eTag\":\"0x8D9535665BEDBAC\",\"lastModified\":\"2021-07-30T12:34:38.8935596Z\",\"creationTime\":\"2021-07-30T12:34:38.8935596Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:34:38.8935596Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:34:38.8935596Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_app_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_app_f0260dd0\",\"eTag\":\"0x8D9D663DCBCC6C7\",\"lastModified\":\"2022-01-13T07:11:04.3101383Z\",\"creationTime\":\"2022-01-13T07:11:04.3101383Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:11:04.3101383Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-13T07:11:04.3101383Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n - \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"dataDisks\":[\r\n {\r\n + \ \"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\":1,\"caching\":\"none\",\"diskSizeGB\":50,\"storageAccountType\":\"standard_lrs\"\r\n \ }\r\n ]\r\n },\"applicationLicenses\":[\r\n \"maya\"\r\n ]\r\n}" headers: @@ -687,13 +719,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:04 GMT etag: - - '0x8D9535665BEDBAC' + - '0x8D9D663DCBCC6C7' last-modified: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:04 GMT request-id: - - cc941952-b470-4cfa-a7ef-37c016d75793 + - 726c902f-120c-45cb-af14-dd05c28b11e8 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -708,7 +740,7 @@ interactions: - request: body: '{"id": "batch_ade_f0260dd0", "vmSize": "standard_d1_v2", "virtualMachineConfiguration": {"imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "16.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 16.04", "diskEncryptionConfiguration": + "18.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 18.04", "diskEncryptionConfiguration": {"targets": ["temporarydisk"]}}}' headers: Accept: @@ -722,14 +754,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:04 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0 response: body: string: '' @@ -739,15 +771,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:38 GMT + - Thu, 13 Jan 2022 07:11:04 GMT etag: - - '0x8D9535666072F8E' + - '0x8D9D663DCF87080' last-modified: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:04 GMT location: - https://batch.southcentralus.batch.azure.com/pools/batch_ade_f0260dd0 request-id: - - ebac0cb1-42fa-454f-a581-69876576090c + - be3b8022-96be-4326-9795-0037efda3087 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -769,20 +801,20 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:04 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_ade_f0260dd0?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_ade_f0260dd0?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_ade_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_ade_f0260dd0\",\"eTag\":\"0x8D9535666072F8E\",\"lastModified\":\"2021-07-30T12:34:39.3675662Z\",\"creationTime\":\"2021-07-30T12:34:39.3675662Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:34:39.3675662Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:34:39.3675662Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_ade_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_ade_f0260dd0\",\"eTag\":\"0x8D9D663DCF87080\",\"lastModified\":\"2022-01-13T07:11:04.7011456Z\",\"creationTime\":\"2022-01-13T07:11:04.7011456Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:11:04.7011456Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-13T07:11:04.7011456Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n - \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"diskEncryptionConfiguration\":{\r\n + \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n + \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"diskEncryptionConfiguration\":{\r\n \ \"targets\":[\r\n \"temporarydisk\"\r\n ]\r\n }\r\n }\r\n}" headers: content-type: @@ -790,13 +822,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:04 GMT etag: - - '0x8D9535666072F8E' + - '0x8D9D663DCF87080' last-modified: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:04 GMT request-id: - - 61152d86-2dff-4b84-be24-7754474faec0 + - 8860bb62-4d73-4432-a5c9-a2398e76b938 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -818,34 +850,34 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:04 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_ade_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_ade_f0260dd0\",\"eTag\":\"0x8D9535666072F8E\",\"lastModified\":\"2021-07-30T12:34:39.3675662Z\",\"creationTime\":\"2021-07-30T12:34:39.3675662Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:34:39.3675662Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:34:39.3675662Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n + \ {\r\n \"id\":\"batch_ade_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_ade_f0260dd0\",\"eTag\":\"0x8D9D663DCF87080\",\"lastModified\":\"2022-01-13T07:11:04.7011456Z\",\"creationTime\":\"2022-01-13T07:11:04.7011456Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:11:04.7011456Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-13T07:11:04.7011456Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n - \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"diskEncryptionConfiguration\":{\r\n + \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n + \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"diskEncryptionConfiguration\":{\r\n \ \"targets\":[\r\n \"temporarydisk\"\r\n ]\r\n - \ }\r\n }\r\n },{\r\n \"id\":\"batch_app_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_app_f0260dd0\",\"eTag\":\"0x8D9535665BEDBAC\",\"lastModified\":\"2021-07-30T12:34:38.8935596Z\",\"creationTime\":\"2021-07-30T12:34:38.8935596Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:34:38.8935596Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:34:38.8935596Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n + \ }\r\n }\r\n },{\r\n \"id\":\"batch_app_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_app_f0260dd0\",\"eTag\":\"0x8D9D663DCBCC6C7\",\"lastModified\":\"2022-01-13T07:11:04.3101383Z\",\"creationTime\":\"2022-01-13T07:11:04.3101383Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:11:04.3101383Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-13T07:11:04.3101383Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n - \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"dataDisks\":[\r\n + \ \"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\":1,\"caching\":\"none\",\"diskSizeGB\":50,\"storageAccountType\":\"standard_lrs\"\r\n \ }\r\n ]\r\n },\"applicationLicenses\":[\r\n \"maya\"\r\n - \ ]\r\n },{\r\n \"id\":\"batch_disk_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_disk_f0260dd0\",\"eTag\":\"0x8D95356657FAF96\",\"lastModified\":\"2021-07-30T12:34:38.4795542Z\",\"creationTime\":\"2021-07-30T12:34:38.4795542Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:34:38.4795542Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:34:38.4795542Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n + \ ]\r\n },{\r\n \"id\":\"batch_disk_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_disk_f0260dd0\",\"eTag\":\"0x8D9D663DC816B3F\",\"lastModified\":\"2022-01-13T07:11:03.9211327Z\",\"creationTime\":\"2022-01-13T07:11:03.9211327Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:11:03.9211327Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-13T07:11:03.9211327Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n - \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"dataDisks\":[\r\n + \ \"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\":1,\"caching\":\"none\",\"diskSizeGB\":50,\"storageAccountType\":\"standard_lrs\"\r\n - \ }\r\n ]\r\n }\r\n },{\r\n \"id\":\"batch_iaas_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_iaas_f0260dd0\",\"eTag\":\"0x8D95356653279B2\",\"lastModified\":\"2021-07-30T12:34:37.9735474Z\",\"creationTime\":\"2021-07-30T12:34:37.9735474Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:34:37.9735474Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-30T12:34:39.7775718Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ }\r\n ]\r\n }\r\n },{\r\n \"id\":\"batch_iaas_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_iaas_f0260dd0\",\"eTag\":\"0x8D9D663DC2A9857\",\"lastModified\":\"2022-01-13T07:11:03.3521239Z\",\"creationTime\":\"2022-01-13T07:11:03.3521239Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:11:03.3521239Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-01-13T07:11:04.7441452Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"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\":\"batch\"\r\n }\r\n },{\r\n \"name\":\"test-user-2\",\"elevationLevel\":\"admin\",\"windowsUserConfiguration\":{\r\n \ \"loginMode\":\"batch\"\r\n }\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n @@ -860,9 +892,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:04 GMT request-id: - - 1eca8e32-146b-4db2-bd7c-e35b893bb724 + - 143c6133-5607-44db-bc59-ee3abe9d71a6 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -884,34 +916,34 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:05 GMT return-client-request-id: - 'false' method: GET - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0&maxresults=1&timeout=30 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0&maxresults=1&timeout=30 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_ade_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_ade_f0260dd0\",\"eTag\":\"0x8D9535666072F8E\",\"lastModified\":\"2021-07-30T12:34:39.3675662Z\",\"creationTime\":\"2021-07-30T12:34:39.3675662Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:34:39.3675662Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:34:39.3675662Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n + \ {\r\n \"id\":\"batch_ade_f0260dd0\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_ade_f0260dd0\",\"eTag\":\"0x8D9D663DCF87080\",\"lastModified\":\"2022-01-13T07:11:04.7011456Z\",\"creationTime\":\"2022-01-13T07:11:04.7011456Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:11:04.7011456Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-13T07:11:04.7011456Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n - \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"diskEncryptionConfiguration\":{\r\n + \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n + \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"diskEncryptionConfiguration\":{\r\n \ \"targets\":[\r\n \"temporarydisk\"\r\n ]\r\n - \ }\r\n }\r\n }\r\n ],\"odata.nextLink\":\"https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0&maxresults=1&timeout=30&$skiptoken=WATV2:nT^Y8YaVC7nOEvp9wLawY1nw3/yEdBut1BnOCA7coXsaAz3/Gk9UCjlW9KhGhQ2CsXGLlXVd2cqbjHwHahnqutU4srZA8QrOckb3tYLx6gCGVssTOAYt4FRnnUALzRKp30oPVveJK93n1hTfIwmHr4h2/dmhgZhLXtHSOHeQhZ1gC5Q7H8Xy8mLdFXp/dsWdKQHnLHVwFKHYo1S^OyOZbRyEP4zjPFAzzyE^rbqyxMSoNCbeOXYI9h5XjpeFSoo2VPhwBymNq6N5CP3iyim9t7SIeQ8ZzXDq0YSNEm95niw=:1$1\"\r\n}" + \ }\r\n }\r\n }\r\n ],\"odata.nextLink\":\"https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0&maxresults=1&timeout=30&$skiptoken=WATV2:bvqn632eetymtxYtgzZKNpFr2BJJng96XOoMvctFZP7fhHnrd5HdnXIuFGpUYGmPdnAQ7w7hNq/cgyBD6k0iPxQi9CvSw9padYT8cwFGQkmc1gQ93mC^gIXjrzy4Si771zbHQS9fot06^3cEgbSc3bvKHZY6SukzNB6aVr9I520aRti3G9b^V3VTxSnkzLmDyhFj8i1QkNNp0KQhyZmxyMaZHAOgwfB4lhiohgOS^G581gHMruogGwFEkobVqGrFrjDchudGCbpM6/QXu4d6oZlTXVu^T1MEDNcDDEufSbc=:1$1\"\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:04 GMT request-id: - - a70521b3-b81e-4f82-9c8e-f863aad7815d + - 5a33d58c-3393-4b4a-a5ff-f54857090d3f server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -933,16 +965,16 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:05 GMT return-client-request-id: - 'false' method: GET - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0&$filter=startswith%28id%2C%27batch_app_%27%29&$select=id%2Cstate&$expand=stats&maxresults=1000&timeout=30 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0&$filter=startswith%28id%2C%27batch_app_%27%29&$select=id%2Cstate&$expand=stats&maxresults=1000&timeout=30 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools\",\"value\":[\r\n @@ -954,9 +986,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:34:39 GMT + - Thu, 13 Jan 2022 07:11:04 GMT request-id: - - 39d5678e-1d47-4693-8a6e-d12bae6b76ca + - 50ede68f-f25f-4cd5-a3a1-82e56a610082 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_files.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_files.yaml index 9573966344bd..32b0270230a5 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_files.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_files.yaml @@ -9,21 +9,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:41:57 GMT + - Sat, 15 Jan 2022 04:04:33 GMT method: GET - uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch4.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d\",\"state\":\"creating\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:41:52.2007881Z\",\"allocationTime\":\"2021-07-30T12:41:52.2007881Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_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.94.128.133\",\"publicFQDN\":\"dns4639deba-20ce-49a8-a430-c09058e4e164-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ {\r\n \"id\":\"tvm-4131042796_1-20220115t040420z\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-01-15T04:04:21.0986268Z\",\"allocationTime\":\"2022-01-15T04:04:20.9766242Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvm-4131042796_1-20220115t040420z\",\"vmSize\":\"standard_d2_v2\",\"totalTasksRun\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"LogInPort\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.88.240.249\",\"publicFQDN\":\"dns768994be-06f6-4a6f-9cc9-c252912a3550-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":51000,\"backendPort\":29877\r\n + \ },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.88.240.249\",\"publicFQDN\":\"dns768994be-06f6-4a6f-9cc9-c252912a3550-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n \ }\r\n ]\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n + \ \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n \ }\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -31,9 +32,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:41:57 GMT + - Sat, 15 Jan 2022 04:04:33 GMT request-id: - - ac599ada-f324-4bf0-9916-80c14bd26117 + - cb761e55-63a1-482d-b62f-cd23f16b3f4f server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -55,21 +56,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:07 GMT + - Sat, 15 Jan 2022 04:04:44 GMT method: GET - uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch4.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:42:02.9412562Z\",\"allocationTime\":\"2021-07-30T12:41:52.2007881Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_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.94.128.133\",\"publicFQDN\":\"dns4639deba-20ce-49a8-a430-c09058e4e164-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ {\r\n \"id\":\"tvm-4131042796_1-20220115t040420z\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-01-15T04:04:21.0986268Z\",\"allocationTime\":\"2022-01-15T04:04:20.9766242Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvm-4131042796_1-20220115t040420z\",\"vmSize\":\"standard_d2_v2\",\"totalTasksRun\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"LogInPort\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.88.240.249\",\"publicFQDN\":\"dns768994be-06f6-4a6f-9cc9-c252912a3550-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":51000,\"backendPort\":29877\r\n + \ },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.88.240.249\",\"publicFQDN\":\"dns768994be-06f6-4a6f-9cc9-c252912a3550-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n \ }\r\n ]\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n + \ \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n \ }\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -77,9 +79,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:06 GMT + - Sat, 15 Jan 2022 04:04:43 GMT request-id: - - bf139694-b112-4746-9144-6d554962f97b + - 6ed7bd92-2b36-4df8-8d84-c8372fa8001f server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -101,21 +103,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:17 GMT + - Sat, 15 Jan 2022 04:04:54 GMT method: GET - uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch4.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:42:09.547785Z\",\"lastBootTime\":\"2021-07-30T12:42:08.016588Z\",\"allocationTime\":\"2021-07-30T12:41:52.2007881Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_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\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.94.128.133\",\"publicFQDN\":\"dns4639deba-20ce-49a8-a430-c09058e4e164-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2021-07-30T12:42:08.016588Z\",\"version\":\"1.9.14\"\r\n - \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n + \ {\r\n \"id\":\"tvm-4131042796_1-20220115t040420z\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-01-15T04:04:47.577895Z\",\"lastBootTime\":\"2022-01-15T04:04:47.169821Z\",\"allocationTime\":\"2022-01-15T04:04:20.9766242Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvm-4131042796_1-20220115t040420z\",\"vmSize\":\"standard_d2_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"LogInPort\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.88.240.249\",\"publicFQDN\":\"dns768994be-06f6-4a6f-9cc9-c252912a3550-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":51000,\"backendPort\":29877\r\n + \ },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.88.240.249\",\"publicFQDN\":\"dns768994be-06f6-4a6f-9cc9-c252912a3550-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-01-15T04:04:47.169821Z\",\"version\":\"1.9.22\"\r\n + \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\"\r\n \ }\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -123,9 +126,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:16 GMT + - Sat, 15 Jan 2022 04:04:53 GMT request-id: - - 822bb19c-56b3-48b9-9de9-6b2084c35cb8 + - 09256bf2-b53f-42ed-81b2-ffd8dabf37e3 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -151,14 +154,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:17 GMT + - Sat, 15 Jan 2022 04:04:54 GMT method: POST - uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2022-01-01.15.0 response: body: string: '' @@ -168,15 +171,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:16 GMT + - Sat, 15 Jan 2022 04:04:53 GMT etag: - - '0x8D953577726694A' + - '0x8D9D7DC2FC46855' last-modified: - - Fri, 30 Jul 2021 12:42:17 GMT + - Sat, 15 Jan 2022 04:04:54 GMT location: - https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task request-id: - - 76370e94-4251-4188-b9a7-554cf6498f65 + - 13805b91-577d-46bc-bb92-f2512defc5e5 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -198,17 +201,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:17 GMT + - Sat, 15 Jan 2022 04:04:54 GMT method: GET - uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch4.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"test_task\",\"url\":\"https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task\",\"eTag\":\"0x8D953577726694A\",\"creationTime\":\"2021-07-30T12:42:17.5902026Z\",\"lastModified\":\"2021-07-30T12:42:17.5902026Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:42:17.5902026Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch4.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"test_task\",\"url\":\"https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task\",\"eTag\":\"0x8D9D7DC2FC46855\",\"creationTime\":\"2022-01-15T04:04:54.3813717Z\",\"lastModified\":\"2022-01-15T04:04:54.3813717Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-15T04:04:54.3813717Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \ \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \ \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n @@ -220,13 +223,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:16 GMT + - Sat, 15 Jan 2022 04:04:53 GMT etag: - - '0x8D953577726694A' + - '0x8D9D7DC2FC46855' last-modified: - - Fri, 30 Jul 2021 12:42:17 GMT + - Sat, 15 Jan 2022 04:04:54 GMT request-id: - - b902bca7-a5bb-4be7-911d-2c48492d9659 + - 2c4ffd82-f706-4f99-8255-6b57a82c38d5 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -248,25 +251,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:22 GMT + - Sat, 15 Jan 2022 04:04:59 GMT method: GET - uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch4.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"test_task\",\"url\":\"https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task\",\"eTag\":\"0x8D953577726694A\",\"creationTime\":\"2021-07-30T12:42:17.5902026Z\",\"lastModified\":\"2021-07-30T12:42:17.5902026Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-30T12:42:18.5842Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2021-07-30T12:42:18.527167Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch4.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"test_task\",\"url\":\"https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task\",\"eTag\":\"0x8D9D7DC2FC46855\",\"creationTime\":\"2022-01-15T04:04:54.3813717Z\",\"lastModified\":\"2022-01-15T04:04:54.3813717Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-01-15T04:04:56.28892Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2022-01-15T04:04:56.21893Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \ \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"constraints\":{\r\n \ \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n - \ },\"requiredSlots\":1,\"executionInfo\":{\r\n \"startTime\":\"2021-07-30T12:42:18.563179Z\",\"endTime\":\"2021-07-30T12:42:18.5842Z\",\"failureInfo\":{\r\n + \ },\"requiredSlots\":1,\"executionInfo\":{\r\n \"startTime\":\"2022-01-15T04:04:56.263984Z\",\"endTime\":\"2022-01-15T04:04:56.28892Z\",\"failureInfo\":{\r\n \ \"category\":\"UserError\",\"code\":\"CommandProgramNotFound\",\"message\":\"The specified command program is not found\",\"details\":[\r\n {\r\n \"name\":\"Message\",\"value\":\"The system cannot find the file specified\"\r\n }\r\n ]\r\n },\"result\":\"failure\",\"retryCount\":0,\"requeueCount\":0\r\n - \ },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d\",\"nodeUrl\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d\",\"poolId\":\"test_batch_test_batch_files98930ae3\",\"nodeId\":\"tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d\",\"taskRootDirectory\":\"workitems/batch/job-1/test_task\",\"taskRootDirectoryUrl\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems/batch/job-1/test_task\"\r\n + \ },\"nodeInfo\":{\r\n \"affinityId\":\"TVM:tvm-4131042796_1-20220115t040420z\",\"nodeUrl\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z\",\"poolId\":\"test_batch_test_batch_files98930ae3\",\"nodeId\":\"tvm-4131042796_1-20220115t040420z\",\"taskRootDirectory\":\"workitems/batch/job-1/test_task\",\"taskRootDirectoryUrl\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems/batch/job-1/test_task\"\r\n \ }\r\n}" headers: content-type: @@ -274,13 +277,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:22 GMT + - Sat, 15 Jan 2022 04:04:59 GMT etag: - - '0x8D953577726694A' + - '0x8D9D7DC2FC46855' last-modified: - - Fri, 30 Jul 2021 12:42:17 GMT + - Sat, 15 Jan 2022 04:04:54 GMT request-id: - - 158de0e8-bd71-49c1-b457-172a4fdb0444 + - d919dd87-9646-4e02-a93d-2ba1ffc9581c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -302,43 +305,43 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:22 GMT + - Sat, 15 Jan 2022 04:04:59 GMT method: GET - uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files?recursive=true&api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files?recursive=true&api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch4.southcentralus.batch.azure.com/$metadata#files\",\"value\":[\r\n - \ {\r\n \"name\":\"shared\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/shared\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"workitems\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"fsmounts\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/fsmounts\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"startup\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/startup\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"applications\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/applications\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"volatile\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/volatile\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"workitems/batch\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems/batch\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"volatile/startup\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/volatile/startup\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"workitems/batch/job-1\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems/batch/job-1\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"workitems/batch/job-1/test_task\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems/batch/job-1/test_task\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"workitems/batch/job-1/test_task/stdout.txt\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems/batch/job-1/test_task/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n - \ \"lastModified\":\"2021-07-30T12:42:18.569Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n - \ }\r\n },{\r\n \"name\":\"workitems/batch/job-1/test_task/certs\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems/batch/job-1/test_task/certs\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"workitems/batch/job-1/test_task/wd\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems/batch/job-1/test_task/wd\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"workitems/batch/job-1/test_task/stderr.txt\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems/batch/job-1/test_task/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n - \ \"lastModified\":\"2021-07-30T12:42:18.569Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n - \ }\r\n }\r\n ]\r\n}" + \ {\r\n \"name\":\"startup\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/startup\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"volatile\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/volatile\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"workitems\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"shared\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/shared\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"applications\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/applications\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"fsmounts\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/fsmounts\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"volatile/startup\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/volatile/startup\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"workitems/batch\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems/batch\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"workitems/batch/job-1\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems/batch/job-1\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"workitems/batch/job-1/test_task\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems/batch/job-1/test_task\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"workitems/batch/job-1/test_task/stderr.txt\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems/batch/job-1/test_task/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n + \ \"lastModified\":\"2022-01-15T04:04:56.269531Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n + \ }\r\n },{\r\n \"name\":\"workitems/batch/job-1/test_task/stdout.txt\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems/batch/job-1/test_task/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n + \ \"lastModified\":\"2022-01-15T04:04:56.269531Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n + \ }\r\n },{\r\n \"name\":\"workitems/batch/job-1/test_task/wd\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems/batch/job-1/test_task/wd\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"workitems/batch/job-1/test_task/certs\",\"url\":\"https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems/batch/job-1/test_task/certs\",\"isDirectory\":true\r\n + \ }\r\n ]\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:22 GMT + - Sat, 15 Jan 2022 04:04:59 GMT request-id: - - 2e59907d-73a1-4990-8581-30467c82fe17 + - 64e59d53-2729-48ab-b17c-7183371564af server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -360,14 +363,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:22 GMT + - Sat, 15 Jan 2022 04:05:00 GMT method: HEAD - uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems%2Fbatch%2Fjob-1%2Ftest_task%2Fstdout.txt?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems%2Fbatch%2Fjob-1%2Ftest_task%2Fstderr.txt?api-version=2022-01-01.15.0 response: body: string: '' @@ -379,17 +382,17 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:22 GMT + - Sat, 15 Jan 2022 04:04:59 GMT last-modified: - - Fri, 30 Jul 2021 12:42:18 GMT + - Sat, 15 Jan 2022 04:04:56 GMT ocp-batch-file-isdirectory: - 'False' ocp-batch-file-mode: - 0o100644 ocp-batch-file-url: - - https%3A%2F%2Fbatch498930ae3.southcentralus.batch.azure.com%2Fpools%2Ftest_batch_test_batch_files98930ae3%2Fnodes%2Ftvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d%2Ffiles%2Fworkitems%2Fbatch98930ae3%2Fjob-1%2Ftest_task%2Fstdout.txt + - https%3A%2F%2Fbatch498930ae3.southcentralus.batch.azure.com%2Fpools%2Ftest_batch_test_batch_files98930ae3%2Fnodes%2Ftvm-4131042796_1-20220115t040420z%2Ffiles%2Fworkitems%2Fbatch98930ae3%2Fjob-1%2Ftest_task%2Fstderr.txt request-id: - - 3e29852e-ae12-4014-a5dc-2d4d4806bfb5 + - f1cbe098-8736-4775-b9d7-6725ef833679 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -409,14 +412,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:05:00 GMT method: GET - uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems%2Fbatch%2Fjob-1%2Ftest_task%2Fstdout.txt?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems%2Fbatch%2Fjob-1%2Ftest_task%2Fstderr.txt?api-version=2022-01-01.15.0 response: body: string: '' @@ -426,17 +429,17 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:22 GMT + - Sat, 15 Jan 2022 04:04:59 GMT last-modified: - - Fri, 30 Jul 2021 12:42:18 GMT + - Sat, 15 Jan 2022 04:04:56 GMT ocp-batch-file-isdirectory: - 'False' ocp-batch-file-mode: - 0o100644 ocp-batch-file-url: - - https%3A%2F%2Fbatch498930ae3.southcentralus.batch.azure.com%2Fpools%2Ftest_batch_test_batch_files98930ae3%2Fnodes%2Ftvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d%2Ffiles%2Fworkitems%2Fbatch98930ae3%2Fjob-1%2Ftest_task%2Fstdout.txt + - https%3A%2F%2Fbatch498930ae3.southcentralus.batch.azure.com%2Fpools%2Ftest_batch_test_batch_files98930ae3%2Fnodes%2Ftvm-4131042796_1-20220115t040420z%2Ffiles%2Fworkitems%2Fbatch98930ae3%2Fjob-1%2Ftest_task%2Fstderr.txt request-id: - - f4afc59d-2f23-42c9-9223-b0c5499e802a + - 55939ccb-0348-49c2-8b79-bff0f601697e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -460,14 +463,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:05:00 GMT method: DELETE - uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_2d36d3629966dc4b17bfeeed561109616371045e8dc9ed18cf41a5d87a660e2a_d/files/workitems%2Fbatch%2Fjob-1%2Ftest_task%2Fstdout.txt?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvm-4131042796_1-20220115t040420z/files/workitems%2Fbatch%2Fjob-1%2Ftest_task%2Fstderr.txt?api-version=2022-01-01.15.0 response: body: string: '' @@ -475,9 +478,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:04:59 GMT request-id: - - a4f6ea2a-523e-4e36-b709-3eeb4b82f631 + - d7405637-8ecd-4314-9866-ca1a1b205cac server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -499,31 +502,31 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:05:00 GMT method: GET - uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch4.southcentralus.batch.azure.com/$metadata#files\",\"value\":[\r\n - \ {\r\n \"name\":\"certs\",\"url\":\"https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/certs\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"wd\",\"url\":\"https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/wd\",\"isDirectory\":true\r\n - \ },{\r\n \"name\":\"stderr.txt\",\"url\":\"https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/stderr.txt\",\"isDirectory\":false,\"properties\":{\r\n - \ \"lastModified\":\"2021-07-30T12:42:18.569Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n - \ }\r\n }\r\n ]\r\n}" + \ {\r\n \"name\":\"stdout.txt\",\"url\":\"https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/stdout.txt\",\"isDirectory\":false,\"properties\":{\r\n + \ \"lastModified\":\"2022-01-15T04:04:56.269531Z\",\"contentLength\":\"0\",\"contentType\":\"text/plain\",\"fileMode\":\"0o100644\"\r\n + \ }\r\n },{\r\n \"name\":\"wd\",\"url\":\"https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/wd\",\"isDirectory\":true\r\n + \ },{\r\n \"name\":\"certs\",\"url\":\"https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/certs\",\"isDirectory\":true\r\n + \ }\r\n ]\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:04:59 GMT request-id: - - 18da79be-e02b-4439-99a8-b7d3cc30243e + - 97040312-8ba4-47a3-8dab-1451e9f242b3 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -545,14 +548,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:05:00 GMT method: HEAD - uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/stderr.txt?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/stdout.txt?api-version=2022-01-01.15.0 response: body: string: '' @@ -564,17 +567,17 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:04:59 GMT last-modified: - - Fri, 30 Jul 2021 12:42:18 GMT + - Sat, 15 Jan 2022 04:04:56 GMT ocp-batch-file-isdirectory: - 'False' ocp-batch-file-mode: - 0o100644 ocp-batch-file-url: - - https%3A%2F%2Fbatch498930ae3.southcentralus.batch.azure.com%2Fjobs%2Fbatch98930ae3%2Ftasks%2Ftest_task%2Ffiles%2Fstderr.txt + - https%3A%2F%2Fbatch498930ae3.southcentralus.batch.azure.com%2Fjobs%2Fbatch98930ae3%2Ftasks%2Ftest_task%2Ffiles%2Fstdout.txt request-id: - - ebf0ab2f-848d-4a07-be11-54ef53cc7a11 + - e655ef91-be11-4f2b-85e2-4cc885baf3a4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -594,14 +597,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:05:00 GMT method: GET - uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/stderr.txt?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/stdout.txt?api-version=2022-01-01.15.0 response: body: string: '' @@ -611,17 +614,17 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:04:59 GMT last-modified: - - Fri, 30 Jul 2021 12:42:18 GMT + - Sat, 15 Jan 2022 04:04:56 GMT ocp-batch-file-isdirectory: - 'False' ocp-batch-file-mode: - 0o100644 ocp-batch-file-url: - - https%3A%2F%2Fbatch498930ae3.southcentralus.batch.azure.com%2Fjobs%2Fbatch98930ae3%2Ftasks%2Ftest_task%2Ffiles%2Fstderr.txt + - https%3A%2F%2Fbatch498930ae3.southcentralus.batch.azure.com%2Fjobs%2Fbatch98930ae3%2Ftasks%2Ftest_task%2Ffiles%2Fstdout.txt request-id: - - 44074cf6-6548-40b5-9fb4-87e107af2de9 + - a55902e3-be8e-45c9-b95e-f91bad321f54 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -645,14 +648,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:05:00 GMT method: DELETE - uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/stderr.txt?api-version=2021-06-01.14.0 + uri: https://batch4.southcentralus.batch.azure.com/jobs/batch/tasks/test_task/files/stdout.txt?api-version=2022-01-01.15.0 response: body: string: '' @@ -660,9 +663,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:42:23 GMT + - Sat, 15 Jan 2022 04:04:59 GMT request-id: - - 470d5d9f-3f35-4bac-8cfa-61f715bde2ea + - f117c5e7-b547-465c-aa01-9e7255dd58bb server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_job_schedules.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_job_schedules.yaml index cf0c71fcc122..3a2b0c2fdce5 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_job_schedules.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_job_schedules.yaml @@ -15,14 +15,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:50 GMT + - Thu, 13 Jan 2022 07:23:56 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobschedules?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules?api-version=2022-01-01.15.0 response: body: string: '' @@ -32,15 +32,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:50 GMT + - Thu, 13 Jan 2022 07:23:56 GMT etag: - - '0x8D95358A9592809' + - '0x8D9D665A931CC8D' last-modified: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:56 GMT location: - https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a request-id: - - 2a3e400b-2c42-48d5-ae86-437774def818 + - 8968b6b1-3735-4416-9748-972404dfeced server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -62,23 +62,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:56 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobschedules?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobschedules\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_schedule_fe140e2a\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a\",\"eTag\":\"0x8D95358A9592809\",\"lastModified\":\"2021-07-30T12:50:51.3055753Z\",\"creationTime\":\"2021-07-30T12:50:51.3055753Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:50:51.3055753Z\",\"schedule\":{\r\n + \ {\r\n \"id\":\"batch_schedule_fe140e2a\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a\",\"eTag\":\"0x8D9D665A931CC8D\",\"lastModified\":\"2022-01-13T07:23:56.8289933Z\",\"creationTime\":\"2022-01-13T07:23:56.8289933Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:23:56.8289933Z\",\"schedule\":{\r\n \ \"startWindow\":\"PT1H\",\"recurrenceInterval\":\"P1D\"\r\n },\"jobSpecification\":{\r\n - \ \"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n + \ \"priority\":0,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \ \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":2\r\n \ },\"poolInfo\":{\r\n \"poolId\":\"pool_id\"\r\n }\r\n - \ },\"executionInfo\":{\r\n \"nextRunTime\":\"2021-07-31T12:50:51.3055753Z\",\"recentJob\":{\r\n + \ },\"executionInfo\":{\r\n \"nextRunTime\":\"2022-01-14T07:23:56.8289933Z\",\"recentJob\":{\r\n \ \"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_schedule_fe140e2a:job-1\",\"id\":\"batch_schedule_fe140e2a:job-1\"\r\n \ }\r\n }\r\n }\r\n ]\r\n}" headers: @@ -87,9 +87,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:50 GMT + - Thu, 13 Jan 2022 07:23:56 GMT request-id: - - 20d5a1d0-36bd-452d-b37a-7fe39f956919 + - 78be4591-ac96-4ce8-9eab-0b4bd59c478e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -111,22 +111,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:57 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"batch_schedule_fe140e2a\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a\",\"eTag\":\"0x8D95358A9592809\",\"lastModified\":\"2021-07-30T12:50:51.3055753Z\",\"creationTime\":\"2021-07-30T12:50:51.3055753Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:50:51.3055753Z\",\"schedule\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"batch_schedule_fe140e2a\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a\",\"eTag\":\"0x8D9D665A931CC8D\",\"lastModified\":\"2022-01-13T07:23:56.8289933Z\",\"creationTime\":\"2022-01-13T07:23:56.8289933Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:23:56.8289933Z\",\"schedule\":{\r\n \ \"startWindow\":\"PT1H\",\"recurrenceInterval\":\"P1D\"\r\n },\"jobSpecification\":{\r\n - \ \"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n + \ \"priority\":0,\"maxParallelTasks\":-1,\"allowTaskPreemption\":false,\"usesTaskDependencies\":false,\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\",\"constraints\":{\r\n \ \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":2\r\n \ },\"poolInfo\":{\r\n \"poolId\":\"pool_id\"\r\n }\r\n },\"executionInfo\":{\r\n - \ \"nextRunTime\":\"2021-07-31T12:50:51.3055753Z\",\"recentJob\":{\r\n \"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_schedule_fe140e2a:job-1\",\"id\":\"batch_schedule_fe140e2a:job-1\"\r\n + \ \"nextRunTime\":\"2022-01-14T07:23:56.8289933Z\",\"recentJob\":{\r\n \"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_schedule_fe140e2a:job-1\",\"id\":\"batch_schedule_fe140e2a:job-1\"\r\n \ }\r\n }\r\n}" headers: content-type: @@ -134,13 +134,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:50 GMT + - Thu, 13 Jan 2022 07:23:56 GMT etag: - - '0x8D95358A9592809' + - '0x8D9D665A931CC8D' last-modified: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:56 GMT request-id: - - affca3e1-68b3-4065-9db5-adaf8ba32c65 + - 6f1d8d9b-e070-4d97-8a42-7012f088f80e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -162,14 +162,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:57 GMT method: HEAD - uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2022-01-01.15.0 response: body: string: '' @@ -177,13 +177,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:56 GMT etag: - - '0x8D95358A9592809' + - '0x8D9D665A931CC8D' last-modified: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:56 GMT request-id: - - 5ebab4d2-d36c-4afe-9f75-8fd3e3dc485b + - 6b0fd5d8-8be7-410c-a293-a9885095e7ca server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -205,21 +205,21 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:57 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/jobs?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/jobs?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobs\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_schedule_fe140e2a:job-1\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_schedule_fe140e2a:job-1\",\"eTag\":\"0x8D95358A960F044\",\"lastModified\":\"2021-07-30T12:50:51.3565764Z\",\"creationTime\":\"2021-07-30T12:50:51.333574Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:50:51.3565764Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n + \ {\r\n \"id\":\"batch_schedule_fe140e2a:job-1\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_schedule_fe140e2a:job-1\",\"eTag\":\"0x8D9D665A938D417\",\"lastModified\":\"2022-01-13T07:23:56.8750615Z\",\"creationTime\":\"2022-01-13T07:23:56.8590537Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:23:56.8750615Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \ \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":2\r\n \ },\"poolInfo\":{\r\n \"poolId\":\"pool_id\"\r\n },\"executionInfo\":{\r\n - \ \"startTime\":\"2021-07-30T12:50:51.3565764Z\",\"poolId\":\"pool_id\"\r\n + \ \"startTime\":\"2022-01-13T07:23:56.8750615Z\",\"poolId\":\"pool_id\"\r\n \ },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"noaction\"\r\n \ }\r\n ]\r\n}" headers: @@ -228,9 +228,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:56 GMT request-id: - - 6785ef5c-55f4-4cd1-bf9b-94297e74a216 + - d442f65d-53ab-4456-8d1f-eb540bf67c71 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -254,14 +254,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:57 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/disable?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/disable?api-version=2022-01-01.15.0 response: body: string: '' @@ -273,13 +273,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:56 GMT etag: - - '0x8D95358A9CE131A' + - '0x8D9D665A9779C1F' last-modified: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT request-id: - - ecb18398-4d64-4a68-9c4c-0b754f60280f + - bed923e6-63d8-401b-8017-6f1116463759 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -301,14 +301,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/enable?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/enable?api-version=2022-01-01.15.0 response: body: string: '' @@ -320,13 +320,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:57 GMT etag: - - '0x8D95358A9F886FE' + - '0x8D9D665A9841F58' last-modified: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT request-id: - - a74c90a2-a102-443f-bfb7-1a6e2020016e + - 1dafa8ae-b538-42d3-9834-1fdcf14b9b68 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -351,14 +351,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT method: PUT - uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2022-01-01.15.0 response: body: string: '' @@ -368,13 +368,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:51 GMT + - Thu, 13 Jan 2022 07:23:57 GMT etag: - - '0x8D95358AA04BC60' + - '0x8D9D665A9918FB6' last-modified: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT request-id: - - 5ef23d65-e8f7-4153-8e5c-1f8f7a394f44 + - 01e944b7-8f19-44a6-81ba-727582139837 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -400,14 +400,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT method: PATCH - uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2022-01-01.15.0 response: body: string: '' @@ -417,13 +417,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT etag: - - '0x8D95358AA159E22' + - '0x8D9D665A99F26C6' last-modified: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT request-id: - - 2cfc7c11-ab40-4cbb-9018-c8ef17c32e27 + - fb28f230-46a1-4c2e-9ffd-9c21599a4f72 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -447,14 +447,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/terminate?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/terminate?api-version=2022-01-01.15.0 response: body: string: '' @@ -464,13 +464,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT etag: - - '0x8D95358AA30988F' + - '0x8D9D665A9AC7C79' last-modified: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT request-id: - - 374f7cfa-95d1-42d5-a7f1-a85b3e841bda + - f1008669-b7b0-4ac8-8bc2-851b30137278 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -494,14 +494,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT method: DELETE - uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2022-01-01.15.0 response: body: string: '' @@ -509,9 +509,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:50:52 GMT + - Thu, 13 Jan 2022 07:23:57 GMT request-id: - - 704a1366-2c1e-4b51-add5-73fdd6150a7f + - b9ab4838-0e75-4f28-a8ff-0b20d4970a9c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_jobs.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_jobs.yaml index fe4b812aeb2b..44555c23db36 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_jobs.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_jobs.yaml @@ -17,14 +17,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:27 GMT + - Thu, 13 Jan 2022 07:24:32 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs?api-version=2022-01-01.15.0 response: body: string: '' @@ -34,15 +34,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:27 GMT + - Thu, 13 Jan 2022 07:24:32 GMT etag: - - '0x8D95358BF4D0AAA' + - '0x8D9D665BEA2AAD4' last-modified: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:32 GMT location: - https://batch.southcentralus.batch.azure.com/jobs/job-1 request-id: - - e27479e7-4c10-4bfe-99b5-42bd54f8fd93 + - 99c8a536-132f-41a2-b353-5e0843cc4e44 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -55,9 +55,9 @@ interactions: code: 201 message: Created - request: - body: '{"priority": 500, "constraints": {"maxTaskRetryCount": 3}, "poolInfo": - {"autoPoolSpecification": {"poolLifetimeOption": "job", "pool": {"vmSize": "standard_d1_v2", - "cloudServiceConfiguration": {"osFamily": "5"}}}}}' + body: '{"priority": 500, "maxParallelTasks": -1, "constraints": {"maxTaskRetryCount": + 3}, "poolInfo": {"autoPoolSpecification": {"poolLifetimeOption": "job", "pool": + {"vmSize": "standard_d1_v2", "cloudServiceConfiguration": {"osFamily": "5"}}}}}' headers: Accept: - application/json @@ -66,18 +66,18 @@ interactions: Connection: - keep-alive Content-Length: - - '214' + - '238' Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:32 GMT method: PUT - uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2022-01-01.15.0 response: body: string: '' @@ -87,13 +87,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:27 GMT + - Thu, 13 Jan 2022 07:24:32 GMT etag: - - '0x8D95358BF5A7852' + - '0x8D9D665BEB3C24A' last-modified: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:32 GMT request-id: - - 4056df05-e522-4a4d-b7d3-738b1bcea9fb + - 30fd9632-ea58-4da2-8947-230f59ff0f98 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -119,14 +119,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: PATCH - uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2022-01-01.15.0 response: body: string: '' @@ -136,13 +136,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:27 GMT + - Thu, 13 Jan 2022 07:24:32 GMT etag: - - '0x8D95358BF66FBCB' + - '0x8D9D665BEC11449' last-modified: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT request-id: - - 3a7bf687-e722-4f00-a53c-2a94bb4f81f2 + - a21ef849-fe99-4d23-970c-f957b1bc3040 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -164,17 +164,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"batch_job1_8dcc0a7e\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e\",\"eTag\":\"0x8D95358BF66FBCB\",\"lastModified\":\"2021-07-30T12:51:28.3060683Z\",\"creationTime\":\"2021-07-30T12:51:28.1190551Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:51:28.1360554Z\",\"priority\":900,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"batch_job1_8dcc0a7e\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e\",\"eTag\":\"0x8D9D665BEC11449\",\"lastModified\":\"2022-01-13T07:24:33.0001481Z\",\"creationTime\":\"2022-01-13T07:24:32.7838394Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:24:32.8008404Z\",\"priority\":900,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \ \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n \ },\"jobPreparationTask\":{\r\n \"id\":\"jobpreparation\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n @@ -187,7 +187,7 @@ interactions: \ \"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,\"cloudServiceConfiguration\":{\r\n \ \"osFamily\":\"5\",\"osVersion\":\"*\"\r\n }\r\n }\r\n - \ }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-30T12:51:28.1360554Z\",\"poolId\":\"DA0BE153-166E-4263-A3E8-9A08558E02E7\"\r\n + \ }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-01-13T07:24:32.8008404Z\",\"poolId\":\"9AA70A7C-9C4D-46FB-8C0E-BC25FBF8C37C\"\r\n \ },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" headers: content-type: @@ -195,13 +195,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:27 GMT + - Thu, 13 Jan 2022 07:24:32 GMT etag: - - '0x8D95358BF66FBCB' + - '0x8D9D665BEC11449' last-modified: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT request-id: - - d6aff224-35bd-4406-b436-7b6988b16cc0 + - f8cdf5bc-21e6-4867-823d-a71175663c0a server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -230,14 +230,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs?api-version=2022-01-01.15.0 response: body: string: '' @@ -247,15 +247,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:27 GMT + - Thu, 13 Jan 2022 07:24:33 GMT etag: - - '0x8D95358BF849CAF' + - '0x8D9D665BEE23F25' last-modified: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT location: - https://batch.southcentralus.batch.azure.com/jobs/job-1 request-id: - - b52a4de9-0813-456c-8d14-af5601515a09 + - df1a49f6-291c-469e-8abd-f526b1b9e0ee server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -277,23 +277,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"batch_job2_8dcc0a7e\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e\",\"eTag\":\"0x8D95358BF849CAF\",\"lastModified\":\"2021-07-30T12:51:28.5002415Z\",\"creationTime\":\"2021-07-30T12:51:28.4802386Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:51:28.5002415Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"batch_job2_8dcc0a7e\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e\",\"eTag\":\"0x8D9D665BEE23F25\",\"lastModified\":\"2022-01-13T07:24:33.2175141Z\",\"creationTime\":\"2022-01-13T07:24:33.200495Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:24:33.2175141Z\",\"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,\"cloudServiceConfiguration\":{\r\n \ \"osFamily\":\"5\",\"osVersion\":\"*\"\r\n }\r\n }\r\n - \ }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-30T12:51:28.5002415Z\",\"poolId\":\"3D825B8B-F2E3-43E8-8C8D-7BD299FEFC63\"\r\n + \ }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-01-13T07:24:33.2175141Z\",\"poolId\":\"0488F7AD-72FE-4AFA-BD76-DDCA4D08E4B9\"\r\n \ },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"performexitoptionsjobaction\"\r\n}" headers: content-type: @@ -301,13 +301,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:27 GMT + - Thu, 13 Jan 2022 07:24:33 GMT etag: - - '0x8D95358BF849CAF' + - '0x8D9D665BEE23F25' last-modified: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT request-id: - - 0a0ce4a4-3496-4b03-9b0b-8bf5d3ce2348 + - bd81e514-2fab-430f-b330-183c943a3b4b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -329,18 +329,18 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobs\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_job1_8dcc0a7e\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e\",\"eTag\":\"0x8D95358BF66FBCB\",\"lastModified\":\"2021-07-30T12:51:28.3060683Z\",\"creationTime\":\"2021-07-30T12:51:28.1190551Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:51:28.1360554Z\",\"priority\":900,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n + \ {\r\n \"id\":\"batch_job1_8dcc0a7e\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e\",\"eTag\":\"0x8D9D665BEC11449\",\"lastModified\":\"2022-01-13T07:24:33.0001481Z\",\"creationTime\":\"2022-01-13T07:24:32.7838394Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:24:32.8008404Z\",\"priority\":900,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"allowTaskPreemption\":false,\"constraints\":{\r\n \ \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":3\r\n \ },\"jobPreparationTask\":{\r\n \"id\":\"jobpreparation\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n @@ -354,15 +354,15 @@ interactions: \ \"vmSize\":\"standard_d1_v2\",\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"resizeTimeout\":\"PT15M\",\"targetDedicatedNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"cloudServiceConfiguration\":{\r\n \ \"osFamily\":\"5\",\"osVersion\":\"*\"\r\n }\r\n - \ }\r\n }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-30T12:51:28.1360554Z\",\"poolId\":\"DA0BE153-166E-4263-A3E8-9A08558E02E7\"\r\n + \ }\r\n }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-01-13T07:24:32.8008404Z\",\"poolId\":\"9AA70A7C-9C4D-46FB-8C0E-BC25FBF8C37C\"\r\n \ },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n - \ },{\r\n \"id\":\"batch_job2_8dcc0a7e\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e\",\"eTag\":\"0x8D95358BF849CAF\",\"lastModified\":\"2021-07-30T12:51:28.5002415Z\",\"creationTime\":\"2021-07-30T12:51:28.4802386Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:51:28.5002415Z\",\"priority\":0,\"maxParallelTasks\":-1,\"usesTaskDependencies\":false,\"constraints\":{\r\n + \ },{\r\n \"id\":\"batch_job2_8dcc0a7e\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e\",\"eTag\":\"0x8D9D665BEE23F25\",\"lastModified\":\"2022-01-13T07:24:33.2175141Z\",\"creationTime\":\"2022-01-13T07:24:33.200495Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:24:33.2175141Z\",\"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,\"cloudServiceConfiguration\":{\r\n \ \"osFamily\":\"5\",\"osVersion\":\"*\"\r\n }\r\n - \ }\r\n }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2021-07-30T12:51:28.5002415Z\",\"poolId\":\"3D825B8B-F2E3-43E8-8C8D-7BD299FEFC63\"\r\n + \ }\r\n }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2022-01-13T07:24:33.2175141Z\",\"poolId\":\"0488F7AD-72FE-4AFA-BD76-DDCA4D08E4B9\"\r\n \ },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"performexitoptionsjobaction\"\r\n \ }\r\n ]\r\n}" headers: @@ -371,9 +371,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:27 GMT + - Thu, 13 Jan 2022 07:24:33 GMT request-id: - - 2fa25c62-863e-4268-b481-bc36a9ba12bb + - 4fb73940-2bb5-4d0c-8992-f44ba68b2d7e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -399,14 +399,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/disable?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/disable?api-version=2022-01-01.15.0 response: body: string: '' @@ -416,13 +416,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:27 GMT + - Thu, 13 Jan 2022 07:24:33 GMT etag: - - '0x8D95358BFA45BE7' + - '0x8D9D665BF0BE6AF' last-modified: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT request-id: - - fa3fbdf8-b62a-42a4-948b-1cbb5c8a8990 + - 27d9d260-e4d4-4cc4-934d-952b98d75bd4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -446,14 +446,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/enable?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/enable?api-version=2022-01-01.15.0 response: body: string: '' @@ -463,13 +463,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT etag: - - '0x8D95358BFAF7F3D' + - '0x8D9D665BF19B372' last-modified: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT request-id: - - 2042bfe6-1a94-4a5f-b515-63b1914f3757 + - 88f9df5b-1ab3-4e2a-9ad8-462a6ab22f4c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -491,14 +491,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/jobpreparationandreleasetaskstatus?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/jobpreparationandreleasetaskstatus?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobpreparationandreleasetaskstatuslist\",\"value\":[]\r\n}" @@ -508,9 +508,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT request-id: - - 8b5340ed-e0c3-4dd2-96c8-7d5a73b11983 + - 849504d6-a86b-4a46-9f63-8145648cdc3b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -536,14 +536,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/terminate?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/terminate?api-version=2022-01-01.15.0 response: body: string: '' @@ -553,13 +553,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT etag: - - '0x8D95358BFC6FF02' + - '0x8D9D665BF347E88' last-modified: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT request-id: - - a239594a-2d02-401f-be0d-20f3ecf97a34 + - ad7814e1-2490-4926-bb0f-1f3dca584fec server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -583,14 +583,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: DELETE - uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e?api-version=2022-01-01.15.0 response: body: string: '' @@ -598,9 +598,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT request-id: - - 1c563777-6833-4f51-b292-34d1124c7997 + - 1204241a-15f0-46b5-a84d-27b8bf1487e4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -622,26 +622,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:51:29 GMT + - Thu, 13 Jan 2022 07:24:33 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/lifetimejobstats?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/lifetimejobstats?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobstats/@Element\",\"url\":\"https://batch.southcentralus.batch.azure.com/lifetimejobstats\",\"startTime\":\"2021-07-30T12:51:12.1753504Z\",\"lastUpdateTime\":\"2021-07-30T12:51:12.1753504Z\",\"userCPUTime\":\"PT0S\",\"kernelCPUTime\":\"PT0S\",\"wallClockTime\":\"PT0S\",\"readIOps\":\"0\",\"writeIOps\":\"0\",\"readIOGiB\":0.0,\"writeIOGiB\":0.0,\"numTaskRetries\":\"0\",\"numSucceededTasks\":\"0\",\"numFailedTasks\":\"0\",\"waitTime\":\"PT0S\"\r\n}" + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#jobstats/@Element\",\"url\":\"https://batch.southcentralus.batch.azure.com/lifetimejobstats\",\"startTime\":\"2022-01-13T07:24:16.6358301Z\",\"lastUpdateTime\":\"2022-01-13T07:24:16.6358301Z\",\"userCPUTime\":\"PT0S\",\"kernelCPUTime\":\"PT0S\",\"wallClockTime\":\"PT0S\",\"readIOps\":\"0\",\"writeIOps\":\"0\",\"readIOGiB\":0.0,\"writeIOGiB\":0.0,\"numTaskRetries\":\"0\",\"numSucceededTasks\":\"0\",\"numFailedTasks\":\"0\",\"waitTime\":\"PT0S\"\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:51:28 GMT + - Thu, 13 Jan 2022 07:24:33 GMT request-id: - - f27f9d8a-0c41-4c80-8d1e-4c1530a6cf96 + - 5d582dd7-c9da-4a35-978b-fb32df5c72c2 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_network_configuration.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_network_configuration.yaml index 8f8cb78235ac..07e1771fe8c1 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_network_configuration.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_network_configuration.yaml @@ -1,8 +1,8 @@ interactions: - request: - body: '{"id": "batch_network_814e11b1", "vmSize": "standard_d1_v2", "virtualMachineConfiguration": + body: '{"id": "batch_network_814e11b1", "vmSize": "standard_d2_v2", "virtualMachineConfiguration": {"imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "16.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 16.04"}, "targetDedicatedNodes": + "18.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 18.04"}, "targetDedicatedNodes": 1, "networkConfiguration": {"endpointConfiguration": {"inboundNATPools": [{"name": "TestEndpointConfig", "protocol": "udp", "backendPort": 64444, "frontendPortRangeStart": 60000, "frontendPortRangeEnd": 61000, "networkSecurityGroupRules": [{"priority": @@ -19,14 +19,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:57:21 GMT + - Fri, 21 Jan 2022 19:40:58 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0 response: body: string: '' @@ -36,15 +36,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:57:22 GMT + - Fri, 21 Jan 2022 19:40:57 GMT etag: - - '0x8D953599234DE65' + - '0x8D9DD15F2DA7D90' last-modified: - - Fri, 30 Jul 2021 12:57:21 GMT + - Fri, 21 Jan 2022 19:40:58 GMT location: - https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1 request-id: - - 5fe16e41-6c58-4aed-a973-a3ece5f6fa06 + - 42478eeb-3069-4b54-9b7a-ae57f6bdc4f4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -66,20 +66,20 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:57:22 GMT + - Fri, 21 Jan 2022 19:41:04 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D953599234DE65\",\"lastModified\":\"2021-07-30T12:57:21.9768933Z\",\"creationTime\":\"2021-07-30T12:57:21.9768933Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D9DD15F2DA7D90\",\"lastModified\":\"2022-01-21T19:40:58.8092816Z\",\"creationTime\":\"2022-01-21T19:40:58.8092816Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-21T19:40:58.8092816Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-21T19:40:58.8092816Z\",\"vmSize\":\"standard_d2_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\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\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 \ \"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \ \"inboundNATPools\":[\r\n {\r\n \"name\":\"TestEndpointConfig\",\"protocol\":\"udp\",\"backendPort\":64444,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":61000,\"networkSecurityGroupRules\":[\r\n \ {\r\n \"priority\":150,\"access\":\"allow\",\"sourceAddressPrefix\":\"*\",\"sourcePortRanges\":[\r\n @@ -91,13 +91,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:57:22 GMT + - Fri, 21 Jan 2022 19:41:04 GMT etag: - - '0x8D953599234DE65' + - '0x8D9DD15F2DA7D90' last-modified: - - Fri, 30 Jul 2021 12:57:21 GMT + - Fri, 21 Jan 2022 19:40:58 GMT request-id: - - c0f25bd6-84e2-401b-8791-5b60443ade80 + - 2f510502-baf5-439c-a23c-9f31a8e76be0 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -119,20 +119,20 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:57:32 GMT + - Fri, 21 Jan 2022 19:42:35 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D953599234DE65\",\"lastModified\":\"2021-07-30T12:57:21.9768933Z\",\"creationTime\":\"2021-07-30T12:57:21.9768933Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D9DD15F2DA7D90\",\"lastModified\":\"2022-01-21T19:40:58.8092816Z\",\"creationTime\":\"2022-01-21T19:40:58.8092816Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-21T19:40:58.8092816Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-01-21T19:41:55.8040485Z\",\"vmSize\":\"standard_d2_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\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\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 \ \"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n \ \"inboundNATPools\":[\r\n {\r\n \"name\":\"TestEndpointConfig\",\"protocol\":\"udp\",\"backendPort\":64444,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":61000,\"networkSecurityGroupRules\":[\r\n \ {\r\n \"priority\":150,\"access\":\"allow\",\"sourceAddressPrefix\":\"*\",\"sourcePortRanges\":[\r\n @@ -144,13 +144,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:57:31 GMT + - Fri, 21 Jan 2022 19:42:35 GMT etag: - - '0x8D953599234DE65' + - '0x8D9DD15F2DA7D90' last-modified: - - Fri, 30 Jul 2021 12:57:21 GMT + - Fri, 21 Jan 2022 19:40:58 GMT request-id: - - 6fbdecb8-eddc-4b6f-9094-e0750fb0fbdc + - f73ec9b6-f3fb-4a20-b235-78bab932d553 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -172,340 +172,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 12:57:42 GMT + - Fri, 21 Jan 2022 19:42:36 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2021-06-01.14.0 - response: - body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D953599234DE65\",\"lastModified\":\"2021-07-30T12:57:21.9768933Z\",\"creationTime\":\"2021-07-30T12:57:21.9768933Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"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\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n - \ \"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n - \ \"inboundNATPools\":[\r\n {\r\n \"name\":\"TestEndpointConfig\",\"protocol\":\"udp\",\"backendPort\":64444,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":61000,\"networkSecurityGroupRules\":[\r\n - \ {\r\n \"priority\":150,\"access\":\"allow\",\"sourceAddressPrefix\":\"*\",\"sourcePortRanges\":[\r\n - \ \"*\"\r\n ]\r\n }\r\n ]\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" - headers: - content-type: - - application/json;odata=minimalmetadata - dataserviceversion: - - '3.0' - date: - - Fri, 30 Jul 2021 12:57:41 GMT - etag: - - '0x8D953599234DE65' - last-modified: - - Fri, 30 Jul 2021 12:57:21 GMT - request-id: - - 9bcdbd2a-9f5f-481d-aad3-c6a080d3e107 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python - accept-language: - - en-US - ocp-date: - - Fri, 30 Jul 2021 12:57:52 GMT - method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2021-06-01.14.0 - response: - body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D953599234DE65\",\"lastModified\":\"2021-07-30T12:57:21.9768933Z\",\"creationTime\":\"2021-07-30T12:57:21.9768933Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"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\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n - \ \"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n - \ \"inboundNATPools\":[\r\n {\r\n \"name\":\"TestEndpointConfig\",\"protocol\":\"udp\",\"backendPort\":64444,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":61000,\"networkSecurityGroupRules\":[\r\n - \ {\r\n \"priority\":150,\"access\":\"allow\",\"sourceAddressPrefix\":\"*\",\"sourcePortRanges\":[\r\n - \ \"*\"\r\n ]\r\n }\r\n ]\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" - headers: - content-type: - - application/json;odata=minimalmetadata - dataserviceversion: - - '3.0' - date: - - Fri, 30 Jul 2021 12:57:51 GMT - etag: - - '0x8D953599234DE65' - last-modified: - - Fri, 30 Jul 2021 12:57:21 GMT - request-id: - - 13d713ed-3570-48c4-bedd-7787668b50f8 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python - accept-language: - - en-US - ocp-date: - - Fri, 30 Jul 2021 12:58:02 GMT - method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2021-06-01.14.0 - response: - body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D953599234DE65\",\"lastModified\":\"2021-07-30T12:57:21.9768933Z\",\"creationTime\":\"2021-07-30T12:57:21.9768933Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"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\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n - \ \"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n - \ \"inboundNATPools\":[\r\n {\r\n \"name\":\"TestEndpointConfig\",\"protocol\":\"udp\",\"backendPort\":64444,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":61000,\"networkSecurityGroupRules\":[\r\n - \ {\r\n \"priority\":150,\"access\":\"allow\",\"sourceAddressPrefix\":\"*\",\"sourcePortRanges\":[\r\n - \ \"*\"\r\n ]\r\n }\r\n ]\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" - headers: - content-type: - - application/json;odata=minimalmetadata - dataserviceversion: - - '3.0' - date: - - Fri, 30 Jul 2021 12:58:02 GMT - etag: - - '0x8D953599234DE65' - last-modified: - - Fri, 30 Jul 2021 12:57:21 GMT - request-id: - - 20ccb437-987f-4409-93af-72f85b687699 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python - accept-language: - - en-US - ocp-date: - - Fri, 30 Jul 2021 12:58:12 GMT - method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2021-06-01.14.0 - response: - body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D953599234DE65\",\"lastModified\":\"2021-07-30T12:57:21.9768933Z\",\"creationTime\":\"2021-07-30T12:57:21.9768933Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"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\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n - \ \"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n - \ \"inboundNATPools\":[\r\n {\r\n \"name\":\"TestEndpointConfig\",\"protocol\":\"udp\",\"backendPort\":64444,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":61000,\"networkSecurityGroupRules\":[\r\n - \ {\r\n \"priority\":150,\"access\":\"allow\",\"sourceAddressPrefix\":\"*\",\"sourcePortRanges\":[\r\n - \ \"*\"\r\n ]\r\n }\r\n ]\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" - headers: - content-type: - - application/json;odata=minimalmetadata - dataserviceversion: - - '3.0' - date: - - Fri, 30 Jul 2021 12:58:12 GMT - etag: - - '0x8D953599234DE65' - last-modified: - - Fri, 30 Jul 2021 12:57:21 GMT - request-id: - - e8c9da97-b6d7-4e8d-9aa7-3a2d104c212a - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python - accept-language: - - en-US - ocp-date: - - Fri, 30 Jul 2021 12:58:22 GMT - method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2021-06-01.14.0 - response: - body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D953599234DE65\",\"lastModified\":\"2021-07-30T12:57:21.9768933Z\",\"creationTime\":\"2021-07-30T12:57:21.9768933Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"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\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n - \ \"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n - \ \"inboundNATPools\":[\r\n {\r\n \"name\":\"TestEndpointConfig\",\"protocol\":\"udp\",\"backendPort\":64444,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":61000,\"networkSecurityGroupRules\":[\r\n - \ {\r\n \"priority\":150,\"access\":\"allow\",\"sourceAddressPrefix\":\"*\",\"sourcePortRanges\":[\r\n - \ \"*\"\r\n ]\r\n }\r\n ]\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" - headers: - content-type: - - application/json;odata=minimalmetadata - dataserviceversion: - - '3.0' - date: - - Fri, 30 Jul 2021 12:58:21 GMT - etag: - - '0x8D953599234DE65' - last-modified: - - Fri, 30 Jul 2021 12:57:21 GMT - request-id: - - a6a60e54-a678-46b6-984f-254c58b44992 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python - accept-language: - - en-US - ocp-date: - - Fri, 30 Jul 2021 12:58:32 GMT - method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2021-06-01.14.0 - response: - body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D953599234DE65\",\"lastModified\":\"2021-07-30T12:57:21.9768933Z\",\"creationTime\":\"2021-07-30T12:57:21.9768933Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T12:57:21.9768933Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-30T12:58:24.1385219Z\",\"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\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n },\"networkConfiguration\":{\r\n - \ \"dynamicVNetAssignmentScope\":\"none\",\"endpointConfiguration\":{\r\n - \ \"inboundNATPools\":[\r\n {\r\n \"name\":\"TestEndpointConfig\",\"protocol\":\"udp\",\"backendPort\":64444,\"frontendPortRangeStart\":60000,\"frontendPortRangeEnd\":61000,\"networkSecurityGroupRules\":[\r\n - \ {\r\n \"priority\":150,\"access\":\"allow\",\"sourceAddressPrefix\":\"*\",\"sourcePortRanges\":[\r\n - \ \"*\"\r\n ]\r\n }\r\n ]\r\n - \ }\r\n ]\r\n }\r\n }\r\n}" - headers: - content-type: - - application/json;odata=minimalmetadata - dataserviceversion: - - '3.0' - date: - - Fri, 30 Jul 2021 12:58:32 GMT - etag: - - '0x8D953599234DE65' - last-modified: - - Fri, 30 Jul 2021 12:57:21 GMT - request-id: - - 2577e5ac-4c4a-4876-a313-f81a06e1b6e2 - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python - accept-language: - - en-US - ocp-date: - - Fri, 30 Jul 2021 12:58:32 GMT - method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1/nodes?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1/nodes?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_bb3048591035a0e0caf78354deab82f1cd69cf67205b51389e5ab484fd407f1c_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1/nodes/tvmps_bb3048591035a0e0caf78354deab82f1cd69cf67205b51389e5ab484fd407f1c_d\",\"state\":\"creating\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2021-07-30T12:58:23.5536394Z\",\"allocationTime\":\"2021-07-30T12:58:23.5536394Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_bb3048591035a0e0caf78354deab82f1cd69cf67205b51389e5ab484fd407f1c_d\",\"vmSize\":\"standard_d1_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"TestEndpointConfig.0\",\"protocol\":\"udp\",\"publicIPAddress\":\"20.188.94.35\",\"publicFQDN\":\"dns7e033cf3-4823-44e4-b50c-7a29b090d753-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":60000,\"backendPort\":64444\r\n - \ },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"20.188.94.35\",\"publicFQDN\":\"dns7e033cf3-4823-44e4-b50c-7a29b090d753-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"16.04.202106110\"\r\n + \ {\r\n \"id\":\"tvmps_eb9ead79497a2a9b88ac70509df6ffedfb49cad4e7f410fcf8eaaaf12e751ef0_d\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_network_814e11b1/nodes/tvmps_eb9ead79497a2a9b88ac70509df6ffedfb49cad4e7f410fcf8eaaaf12e751ef0_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2022-01-21T19:42:10.929305Z\",\"lastBootTime\":\"2022-01-21T19:42:10.843945Z\",\"allocationTime\":\"2022-01-21T19:41:55.3336947Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_eb9ead79497a2a9b88ac70509df6ffedfb49cad4e7f410fcf8eaaaf12e751ef0_d\",\"vmSize\":\"standard_d2_v2\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"runningTaskSlotsCount\":0,\"certificateReferences\":[],\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"TestEndpointConfig.0\",\"protocol\":\"udp\",\"publicIPAddress\":\"40.74.176.77\",\"publicFQDN\":\"dnse477b4bc-f0a1-4199-be75-6edba92ad61c-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":60000,\"backendPort\":64444\r\n + \ },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"40.74.176.77\",\"publicFQDN\":\"dnse477b4bc-f0a1-4199-be75-6edba92ad61c-azurebatch-cloudservice.southcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2022-01-21T19:42:10.843945Z\",\"version\":\"1.9.22\"\r\n + \ },\"virtualMachineInfo\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"18.04-LTS\",\"version\":\"latest\",\"exactVersion\":\"18.04.202201180\"\r\n \ }\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -513,9 +195,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 12:58:32 GMT + - Fri, 21 Jan 2022 19:42:35 GMT request-id: - - 29afcd0b-1c76-49b8-9d54-08ea5706a4ac + - 521cac14-ff25-42c6-aa38-091613442ff2 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_scale_pools.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_scale_pools.yaml index 3f4d907ec644..f5020c8a3799 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_scale_pools.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_scale_pools.yaml @@ -14,14 +14,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:06:27 GMT + - Fri, 14 Jan 2022 23:49:09 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/enableautoscale?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/enableautoscale?api-version=2022-01-01.15.0 response: body: string: '' @@ -31,13 +31,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:06:27 GMT + - Fri, 14 Jan 2022 23:49:09 GMT etag: - - '0x8D9535AD7466EB9' + - '0x8D9D7B875D2742C' last-modified: - - Fri, 30 Jul 2021 13:06:27 GMT + - Fri, 14 Jan 2022 23:49:10 GMT request-id: - - 672ef332-e772-446a-9fbf-b71bfbd80052 + - 2c34de2b-0408-4c26-8d4d-1a66d13cb948 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -63,17 +63,17 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:06:28 GMT + - Fri, 14 Jan 2022 23:49:10 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/evaluateautoscale?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/evaluateautoscale?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\"timestamp\":\"2021-07-30T13:06:28.8922385Z\",\"results\":\"$TargetDedicatedNodes=3;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n}" + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\"timestamp\":\"2022-01-14T23:49:10.1530075Z\",\"results\":\"$TargetDedicatedNodes=3;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n}" headers: content-type: - application/json;odata=minimalmetadata @@ -82,9 +82,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:06:28 GMT + - Fri, 14 Jan 2022 23:49:09 GMT request-id: - - 1b025c2d-c6b3-4b0d-a147-4fb09338496c + - 69f734a3-fe49-42d9-b021-1e4fc3b27473 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -96,6 +96,914 @@ interactions: status: code: 200 message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:49:10 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:49:09 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - f65feac7-1bbd-4d1e-ad9b-a70e463cd9fe + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:49:25 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:49:24 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - 8c778aac-2591-4015-a852-8d1e8ff7d4fa + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:49:49 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:49:49 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - 0a804286-f0a2-4dbf-bc3b-8cb5ccc70da9 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:49:54 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:49:54 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - 079d7abf-6f22-47b8-8154-1dcd3447f7f8 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:49:59 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:49:59 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - e8e2b724-acc6-463b-99c6-1f5b6494c5b0 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:05 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:05 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - f3161f7c-4ae4-4566-89cf-882ac8217827 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:10 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:09 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - 76a178ef-609e-48ec-96d5-995cf337e38b + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:15 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:14 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - e7c744f1-82ab-4802-a3c7-98582e16b850 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:20 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:19 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - d6ff7dac-6247-4fe8-b5be-22c5c62f5a88 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:25 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:24 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - 67d6b6ad-7fcb-4ba7-af11-ca32553a9353 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:30 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:29 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - 7af14521-6164-42b3-8cbf-642d688dd8cb + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:35 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:34 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - 32db6fcc-8662-43ed-9fb5-fe2286e0f403 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:40 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:49:10.0316716Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:40 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - c20d5ca0-388e-46bf-bd7f-a35dacf5326b + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:46 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B875D2742C\",\"lastModified\":\"2022-01-14T23:49:10.0316716Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:41.1008698Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":true,\"autoScaleFormula\":\"$TargetDedicatedNodes=2\",\"autoScaleEvaluationInterval\":\"PT6M\",\"autoScaleRun\":{\r\n + \ \"timestamp\":\"2022-01-14T23:49:10.0316716Z\",\"results\":\"$TargetDedicatedNodes=2;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n + \ },\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n {\r\n + \ \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:45 GMT + etag: + - '0x8D9D7B875D2742C' + last-modified: + - Fri, 14 Jan 2022 23:49:10 GMT + request-id: + - 5aad88ec-aad6-4210-bccb-4cd3d4567607 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:46 GMT + method: POST + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/disableautoscale?api-version=2022-01-01.15.0 + response: + body: + string: '' + headers: + dataserviceid: + - https://batche2690d64.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/disableautoscale + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:45 GMT + etag: + - '0x8D9D7B8AF09C92F' + last-modified: + - Fri, 14 Jan 2022 23:50:46 GMT + request-id: + - 9fd6f4bd-a7f1-4a08-8b5f-7169a85f59cf + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:46 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8AF09C92F\",\"lastModified\":\"2022-01-14T23:50:46.0244271Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:46.0244271Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT2M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:45 GMT + etag: + - '0x8D9D7B8AF09C92F' + last-modified: + - Fri, 14 Jan 2022 23:50:46 GMT + request-id: + - e30947e9-93b9-4ca7-a8dc-55d71bb64bc2 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:51 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8AF09C92F\",\"lastModified\":\"2022-01-14T23:50:46.0244271Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:47.5964387Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT2M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:50 GMT + etag: + - '0x8D9D7B8AF09C92F' + last-modified: + - Fri, 14 Jan 2022 23:50:46 GMT + request-id: + - 701f2b5d-7b74-42f3-94e0-dc756eef819c + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"targetDedicatedNodes": 0, "targetLowPriorityNodes": 2}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '56' + Content-Type: + - application/json; odata=minimalmetadata; charset=utf-8 + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:51 GMT + method: POST + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/resize?api-version=2022-01-01.15.0 + response: + body: + string: '' + headers: + dataserviceid: + - https://batche2690d64.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/resize + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:50 GMT + etag: + - '0x8D9D7B8B2344EC1' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 036ad2af-7ba3-4670-a4fa-d10154f3c8bd + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted - request: body: null headers: @@ -108,30 +1016,1794 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:51 GMT + method: POST + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/stopresize?api-version=2022-01-01.15.0 + response: + body: + string: '' + headers: + dataserviceid: + - https://batche2690d64.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/stopresize + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:50 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 330622c3-8dac-4286-896e-60dfce1bc67d + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:51 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":2,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:51 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - b80de78d-054c-444d-9f66-8b95c23fe173 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:50:56 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:50:56 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 049b6e63-286b-44bf-be3d-ab3f23213772 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:01 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:01 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - cbf94a5e-7f02-46e8-a0b7-6220082db2ab + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:07 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:06 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - e3ecb1fa-82ae-4c66-99af-69915442bdaf + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:12 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:11 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 3693e218-11bd-4777-aa38-802a2970d669 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:17 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:16 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - b7435ee6-f2af-4ce6-89b5-773c98509467 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:22 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:22 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - f384361b-ee8f-4176-ac84-58dfe55b2264 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:27 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:27 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 87583dfc-20e6-49e9-83ed-bc19f0e0c568 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:32 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:32 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 3a34b50a-9342-405e-9672-59454b2dc6a0 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:37 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:37 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 45a46e00-1396-4bcb-a17a-a445508d4831 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:42 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:42 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 97d43b8d-4393-4d71-862c-730014086c84 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:47 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:47 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - e25b4172-d1ec-4f70-b375-c81910c66e4f + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:52 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:52 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 0201c4da-b6ad-40a7-8b1d-59cdd09dc771 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:51:58 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:51:57 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 83541eec-9c49-4676-ac7d-764ddef2f370 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:03 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:02 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - d113946b-d13a-49e8-b5f4-029a87bcb605 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:08 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:07 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - e4c3f808-c2fe-4750-8e71-b7e7ca903d3e + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:13 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:12 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 49c488a3-fd53-4690-aa58-d6658e3fe60f + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:18 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:17 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - cbcb9ec2-4177-4e95-b26a-02a13e2e48a3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:23 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:22 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 08f25fa9-6a33-44b0-94e4-1c1505858fe5 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:28 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:28 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 3b4bff54-4904-4c8d-8750-26044e59094d + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:33 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:33 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 9bc1a3fd-1ad0-409c-bc05-9c41bca6c43b + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:39 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:38 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - e93398ba-87a6-45b9-b9fd-e867aecbf66c + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:44 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:44 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - d2e3b94b-c03e-48ee-b6ed-74f3cccdf843 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:49 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:48 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - ce3700cb-dd49-4d54-ae62-ab596e65754d + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:54 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:53 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 783e50ae-517f-461b-8ee3-acb3e54161ab + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:52:59 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:52:58 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 950158c8-f373-4923-a36a-eb8c2346c245 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:53:04 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:53:03 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - f4e08f0c-eff5-42c1-8aac-435450e77c8c + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:53:09 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:53:08 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 36d95d3a-0caa-41c6-a069-b45eb92b2518 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:53:14 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:53:13 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 53132931-ac81-4d0e-bf4f-6eb59c44e3b5 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:53:19 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:53:18 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - a1a4c7b4-362f-466c-be56-687313472abf + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:53:25 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:53:24 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 7c68e20b-e999-49ad-b4f7-694b5c51c8a0 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:53:30 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:53:29 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - cb7be2aa-4e45-4da9-b4df-10d9063bfc5d + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:53:35 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:53:34 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 58aa187a-5b23-4432-8628-67184cf455d1 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:53:40 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:53:40 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - d8b808dc-bf95-45d7-ab27-b8f53fbc85f1 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:53:45 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:53:45 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 4f6bd5fd-686a-40a3-8c97-519797f7c1f3 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:06:28 GMT - method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/disableautoscale?api-version=2021-06-01.14.0 + - Fri, 14 Jan 2022 23:53:50 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 response: body: - string: '' + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" headers: - dataserviceid: - - https://batche2690d64.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/disableautoscale + content-type: + - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:06:28 GMT + - Fri, 14 Jan 2022 23:53:49 GMT etag: - - '0x8D9535AD83AE1C4' + - '0x8D9D7B8B2462926' last-modified: - - Fri, 30 Jul 2021 13:06:28 GMT + - Fri, 14 Jan 2022 23:50:51 GMT request-id: - - 7a34758b-c6df-4650-ba6b-f2585de2155a + - 9e8f35f3-f7b6-4de8-a84b-f093cf5a395b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -153,34 +2825,34 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:06:29 GMT + - Fri, 14 Jan 2022 23:53:55 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9535AD83AE1C4\",\"lastModified\":\"2021-07-30T13:06:28.9535428Z\",\"creationTime\":\"2021-07-30T13:06:27.3515193Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:06:27.3515193Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-30T13:06:28.976542Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\r\n }\r\n \ ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n - \ },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\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 }\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:06:28 GMT + - Fri, 14 Jan 2022 23:53:55 GMT etag: - - '0x8D9535AD83AE1C4' + - '0x8D9D7B8B2462926' last-modified: - - Fri, 30 Jul 2021 13:06:28 GMT + - Fri, 14 Jan 2022 23:50:51 GMT request-id: - - d40a5d76-1888-47fc-ad86-4344db1381ac + - 224af6e3-7921-4e07-9d7f-3d51827daca4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -193,7 +2865,7 @@ interactions: code: 200 message: OK - request: - body: '{"targetDedicatedNodes": 0, "targetLowPriorityNodes": 2}' + body: null headers: Accept: - application/json @@ -201,35 +2873,35 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '56' - Content-Type: - - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:06:29 GMT - method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/resize?api-version=2021-06-01.14.0 + - Fri, 14 Jan 2022 23:54:00 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 response: body: - string: '' + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" headers: - dataserviceid: - - https://batche2690d64.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/resize + content-type: + - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:06:28 GMT + - Fri, 14 Jan 2022 23:54:00 GMT etag: - - '0x8D9535AD851F591' + - '0x8D9D7B8B2462926' last-modified: - - Fri, 30 Jul 2021 13:06:29 GMT + - Fri, 14 Jan 2022 23:50:51 GMT request-id: - - aad23fc1-7b60-4173-b89f-743f7286b674 + - 149159ed-ea81-4ac4-91fb-c788d4b22afe server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -239,8 +2911,8 @@ interactions: x-content-type-options: - nosniff status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -250,33 +2922,35 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:06:29 GMT - method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/stopresize?api-version=2021-06-01.14.0 + - Fri, 14 Jan 2022 23:54:06 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 response: body: - string: '' + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" headers: - dataserviceid: - - https://batche2690d64.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/stopresize + content-type: + - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:06:28 GMT + - Fri, 14 Jan 2022 23:54:05 GMT etag: - - '0x8D9535AD851F591' + - '0x8D9D7B8B2462926' last-modified: - - Fri, 30 Jul 2021 13:06:29 GMT + - Fri, 14 Jan 2022 23:50:51 GMT request-id: - - 06e3fce6-c58b-49e5-8c66-1f181ad47d93 + - ee5ff153-fde1-45b5-9e40-a1b81a19a7c7 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -286,8 +2960,253 @@ interactions: x-content-type-options: - nosniff status: - code: 202 - message: Accepted + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:54:11 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:54:10 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - aad3f0e8-12ce-412a-a2a5-e625039447d6 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:54:16 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:54:15 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - ff11534b-6d88-4b9b-8d1f-7b2bf4696964 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:54:21 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:54:20 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - fb96b09a-8727-4466-a48c-4ca222c4e059 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:54:26 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:54:26 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - 9486bc96-a32d-4023-ae00-6ca24369c978 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Fri, 14 Jan 2022 23:54:31 GMT + method: GET + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\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 }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Fri, 14 Jan 2022 23:54:31 GMT + etag: + - '0x8D9D7B8B2462926' + last-modified: + - Fri, 14 Jan 2022 23:50:51 GMT + request-id: + - b3a5c413-eb36-4cfc-9f32-05fe7089f318 + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: @@ -298,34 +3217,34 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:06:29 GMT + - Fri, 14 Jan 2022 23:54:36 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9535AD851F591\",\"lastModified\":\"2021-07-30T13:06:29.1047825Z\",\"creationTime\":\"2021-07-30T13:06:27.3515193Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:06:27.3515193Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2021-07-30T13:06:29.1907793Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2022-01-14T23:50:51.4532646Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\r\n }\r\n \ ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n - \ },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\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 }\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:06:28 GMT + - Fri, 14 Jan 2022 23:54:35 GMT etag: - - '0x8D9535AD851F591' + - '0x8D9D7B8B2462926' last-modified: - - Fri, 30 Jul 2021 13:06:29 GMT + - Fri, 14 Jan 2022 23:50:51 GMT request-id: - - 91396f4f-ed45-4c1c-b11c-52cb10da4dce + - 8d6f2fb1-4931-4332-abea-6ac9c1318566 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -347,37 +3266,34 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:06:34 GMT + - Fri, 14 Jan 2022 23:54:41 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9535AD851F591\",\"lastModified\":\"2021-07-30T13:06:29.1047825Z\",\"creationTime\":\"2021-07-30T13:06:27.3515193Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:06:27.3515193Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-30T13:06:29.3387833Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"resizeErrors\":[\r\n - \ {\r\n \"code\":\"ResizeStopped\",\"message\":\"Desired number of - low priority nodes could not be allocated due to a stop resize operation\"\r\n - \ }\r\n ],\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"displayName\":\"test_pool\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D9D7B8B2462926\",\"lastModified\":\"2022-01-14T23:50:51.4532646Z\",\"creationTime\":\"2022-01-14T23:49:09.4916586Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-14T23:49:09.4916586Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-01-14T23:54:40.427153Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\r\n }\r\n \ ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n - \ },\"virtualMachineConfiguration\":{\r\n \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\"\r\n }\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 }\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:06:34 GMT + - Fri, 14 Jan 2022 23:54:40 GMT etag: - - '0x8D9535AD851F591' + - '0x8D9D7B8B2462926' last-modified: - - Fri, 30 Jul 2021 13:06:29 GMT + - Fri, 14 Jan 2022 23:50:51 GMT request-id: - - 9c6e3501-ddd2-4ec8-abd3-5c3513c08333 + - 192d8dd5-477b-44f0-9a58-95a02c1e4cf8 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -399,19 +3315,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:06:34 GMT + - Fri, 14 Jan 2022 23:54:41 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/lifetimepoolstats?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/lifetimepoolstats?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#poolstats/@Element\",\"url\":\"https://batch.southcentralus.batch.azure.com/lifetimepoolstats\",\"usageStats\":{\r\n - \ \"startTime\":\"2021-07-30T13:06:10.450905Z\",\"lastUpdateTime\":\"2021-07-30T13:06:10.450905Z\",\"dedicatedCoreTime\":\"PT0S\"\r\n - \ },\"resourceStats\":{\r\n \"startTime\":\"2021-07-30T13:06:10.450905Z\",\"diskReadIOps\":\"0\",\"diskWriteIOps\":\"0\",\"lastUpdateTime\":\"2021-07-30T13:06:10.450905Z\",\"avgCPUPercentage\":0.0,\"avgMemoryGiB\":0.0,\"peakMemoryGiB\":0.0,\"avgDiskGiB\":0.0,\"peakDiskGiB\":0.0,\"diskReadGiB\":0.0,\"diskWriteGiB\":0.0,\"networkReadGiB\":0.0,\"networkWriteGiB\":0.0\r\n + \ \"startTime\":\"2022-01-14T23:41:43.1857777Z\",\"lastUpdateTime\":\"2022-01-14T23:41:43.1857777Z\",\"dedicatedCoreTime\":\"PT0S\"\r\n + \ },\"resourceStats\":{\r\n \"startTime\":\"2022-01-14T23:41:43.1857777Z\",\"diskReadIOps\":\"0\",\"diskWriteIOps\":\"0\",\"lastUpdateTime\":\"2022-01-14T23:41:43.1857777Z\",\"avgCPUPercentage\":0.0,\"avgMemoryGiB\":0.0,\"peakMemoryGiB\":0.0,\"avgDiskGiB\":0.0,\"peakDiskGiB\":0.0,\"diskReadGiB\":0.0,\"diskWriteGiB\":0.0,\"networkReadGiB\":0.0,\"networkWriteGiB\":0.0\r\n \ }\r\n}" headers: content-type: @@ -419,9 +3335,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:06:34 GMT + - Fri, 14 Jan 2022 23:54:41 GMT request-id: - - 2fe10aea-7155-4c52-8151-115e2cd6451c + - c14a683f-cc08-4b88-98df-7314eee78914 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -443,14 +3359,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:06:34 GMT + - Fri, 14 Jan 2022 23:54:42 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/poolusagemetrics?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/poolusagemetrics?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#poolusagemetrics\",\"value\":[]\r\n}" @@ -460,9 +3376,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:06:34 GMT + - Fri, 14 Jan 2022 23:54:41 GMT request-id: - - 920ad640-a602-4004-b798-6fd1486dc874 + - 84162704-993a-424c-84d3-4a739e3129fc server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_tasks.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_tasks.yaml index 07f4c5c4ee9a..933fd33df80c 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_tasks.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_tasks.yaml @@ -16,14 +16,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:43 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2022-01-01.15.0 response: body: string: '' @@ -33,15 +33,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:43 GMT etag: - - '0x8D9535BB6F72B78' + - '0x8D9D6684918BA3A' last-modified: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT location: - https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task1_98da0af6 request-id: - - f36fb3c0-87ff-4eec-b769-21244cf66147 + - 3315d781-5301-46e5-8ff2-2895d71143aa server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -63,17 +63,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task1_98da0af6?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task1_98da0af6?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task1_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task1_98da0af6\",\"eTag\":\"0x8D9535BB6F72B78\",\"creationTime\":\"2021-07-30T13:12:42.6417016Z\",\"lastModified\":\"2021-07-30T13:12:42.6417016Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:42.6417016Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task1_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task1_98da0af6\",\"eTag\":\"0x8D9D6684918BA3A\",\"creationTime\":\"2022-01-13T07:42:44.0935994Z\",\"lastModified\":\"2022-01-13T07:42:44.0935994Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:44.0935994Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \ \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"exitConditions\":{\r\n \ \"exitCodes\":[\r\n {\r\n \"code\":1,\"exitOptions\":{\r\n @@ -89,13 +89,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:43 GMT etag: - - '0x8D9535BB6F72B78' + - '0x8D9D6684918BA3A' last-modified: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT request-id: - - 7ee476c4-8f0e-4f5a-8da0-c53722dd1be0 + - 5369e959-d08e-477f-b92e-9d6c3cec595b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -127,14 +127,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2022-01-01.15.0 response: body: string: '' @@ -144,15 +144,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:43 GMT etag: - - '0x8D9535BB70F956E' + - '0x8D9D6684937DBB9' last-modified: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT location: - https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task2_98da0af6 request-id: - - b5a93a5e-afea-4c3a-aae1-04a14bd95894 + - 78f0af6f-935d-45cd-850d-021466bcf6d9 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -174,17 +174,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task2_98da0af6?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task2_98da0af6?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task2_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task2_98da0af6\",\"eTag\":\"0x8D9535BB70F956E\",\"creationTime\":\"2021-07-30T13:12:42.8017006Z\",\"lastModified\":\"2021-07-30T13:12:42.8017006Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:42.8017006Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task2_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task2_98da0af6\",\"eTag\":\"0x8D9D6684937DBB9\",\"creationTime\":\"2022-01-13T07:42:44.2976185Z\",\"lastModified\":\"2022-01-13T07:42:44.2976185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:44.2976185Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"../stdout.txt\",\"destination\":{\r\n \ \"container\":{\r\n \"containerUrl\":\"https://test.blob.core.windows.net:443/test-container\",\"path\":\"taskLogs/output.txt\"\r\n \ }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskCompletion\"\r\n @@ -201,13 +201,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:43 GMT etag: - - '0x8D9535BB70F956E' + - '0x8D9D6684937DBB9' last-modified: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT request-id: - - 71b15639-cb28-4af9-8e9c-2eaafaaff698 + - 73166717-5634-4064-8da5-b5716557b4c6 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -234,14 +234,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2022-01-01.15.0 response: body: string: '' @@ -251,15 +251,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT etag: - - '0x8D9535BB726A007' + - '0x8D9D6684955D023' last-modified: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT location: - https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task3_98da0af6 request-id: - - a321fd5a-ad2b-4827-9b31-d1a42bbca4c7 + - c89228af-6c4c-425d-a24c-888196a5e320 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -281,17 +281,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task3_98da0af6?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task3_98da0af6?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task3_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task3_98da0af6\",\"eTag\":\"0x8D9535BB726A007\",\"creationTime\":\"2021-07-30T13:12:42.9527047Z\",\"lastModified\":\"2021-07-30T13:12:42.9527047Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:42.9527047Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task3_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task3_98da0af6\",\"eTag\":\"0x8D9D6684955D023\",\"creationTime\":\"2022-01-13T07:42:44.4939299Z\",\"lastModified\":\"2022-01-13T07:42:44.4939299Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:44.4939299Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \ \"scope\":\"task\",\"elevationLevel\":\"admin\"\r\n }\r\n },\"constraints\":{\r\n \ \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n @@ -303,13 +303,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT etag: - - '0x8D9535BB726A007' + - '0x8D9D6684955D023' last-modified: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT request-id: - - 1acb4e8a-41c9-418c-ae9e-efa2d3d19cae + - c330594b-5cc5-457f-9a5d-1de042a81a23 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -336,14 +336,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:44 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2022-01-01.15.0 response: body: string: '' @@ -353,15 +353,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT etag: - - '0x8D9535BB73E1FD0' + - '0x8D9D6684974F148' last-modified: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:44 GMT location: - https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task4_98da0af6 request-id: - - 2f514418-bf74-4079-b7c1-ff233199271d + - a801864e-7b3a-46d9-ae02-f67edd592311 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -383,17 +383,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:44 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task4_98da0af6?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task4_98da0af6?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task4_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task4_98da0af6\",\"eTag\":\"0x8D9535BB73E1FD0\",\"creationTime\":\"2021-07-30T13:12:43.1067088Z\",\"lastModified\":\"2021-07-30T13:12:43.1067088Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:43.1067088Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task4_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task4_98da0af6\",\"eTag\":\"0x8D9D6684974F148\",\"creationTime\":\"2022-01-13T07:42:44.69794Z\",\"lastModified\":\"2022-01-13T07:42:44.69794Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:44.69794Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \ \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n },\"authenticationTokenSettings\":{\r\n \ \"access\":[\r\n \"job\"\r\n ]\r\n },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n @@ -405,13 +405,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT etag: - - '0x8D9535BB73E1FD0' + - '0x8D9D6684974F148' last-modified: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:44 GMT request-id: - - bb8272c1-1b49-48b8-8f03-c22f61b85f1f + - 6086ff3b-d69e-4917-a8c2-6eb3719d0a15 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -439,14 +439,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:44 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2022-01-01.15.0 response: body: string: '' @@ -456,15 +456,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT etag: - - '0x8D9535BB7579B3D' + - '0x8D9D6684994AE1C' last-modified: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:44 GMT location: - https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task5_98da0af6 request-id: - - 0b0311a5-f404-4788-8e52-80a448aceb53 + - 9677487d-55a5-408e-9e03-8b1d0a28d55b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -486,17 +486,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task5_98da0af6?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task5_98da0af6?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task5_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task5_98da0af6\",\"eTag\":\"0x8D9535BB7579B3D\",\"creationTime\":\"2021-07-30T13:12:43.2737085Z\",\"lastModified\":\"2021-07-30T13:12:43.2737085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:43.2737085Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task5_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task5_98da0af6\",\"eTag\":\"0x8D9D6684994AE1C\",\"creationTime\":\"2022-01-13T07:42:44.9059356Z\",\"lastModified\":\"2022-01-13T07:42:44.9059356Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:44.9059356Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"containerSettings\":{\r\n \"imageName\":\"windows_container:latest\",\"registry\":{\r\n \ \"username\":\"username\"\r\n },\"workingDirectory\":\"taskWorkingDirectory\"\r\n \ },\"userIdentity\":{\r\n \"autoUser\":{\r\n \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n @@ -509,13 +509,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT etag: - - '0x8D9535BB7579B3D' + - '0x8D9D6684994AE1C' last-modified: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:44 GMT request-id: - - e7895439-5741-48df-9a0c-aaf230977109 + - 1cbf7b86-3b5e-4566-8f3f-ab18193fa4b1 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -542,14 +542,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2022-01-01.15.0 response: body: string: '' @@ -559,15 +559,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT etag: - - '0x8D9535BB76EA621' + - '0x8D9D66849B2703D' last-modified: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT location: - https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6 request-id: - - f379a898-3ff6-47c5-864a-6ef1bd0ec417 + - 3218eb88-3e80-46dd-9e98-ce050a23189c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -589,17 +589,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D9535BB76EA621\",\"creationTime\":\"2021-07-30T13:12:43.4247201Z\",\"lastModified\":\"2021-07-30T13:12:43.4247201Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:43.4247201Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D9D66849B2703D\",\"creationTime\":\"2022-01-13T07:42:45.1009597Z\",\"lastModified\":\"2022-01-13T07:42:45.1009597Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:45.1009597Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"username\":\"task-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 @@ -610,13 +610,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT etag: - - '0x8D9535BB76EA621' + - '0x8D9D66849B2703D' last-modified: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT request-id: - - ef573633-7f44-43bd-a781-efacb2abf841 + - ba9eaf27-4850-4a84-ab6b-829cb3026653 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -645,20 +645,20 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"batch_task9_98da0af6\",\"eTag\":\"0x8D9535BB7869B10\",\"lastModified\":\"2021-07-30T13:12:43.5817232Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task9_98da0af6\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"batch_task8_98da0af6\",\"eTag\":\"0x8D9535BB786E910\",\"lastModified\":\"2021-07-30T13:12:43.58372Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task8_98da0af6\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"batch_task7_98da0af6\",\"eTag\":\"0x8D9535BB78736DF\",\"lastModified\":\"2021-07-30T13:12:43.5857119Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task7_98da0af6\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"batch_task9_98da0af6\",\"eTag\":\"0x8D9D66849D07FC8\",\"lastModified\":\"2022-01-13T07:42:45.2979656Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task9_98da0af6\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"batch_task8_98da0af6\",\"eTag\":\"0x8D9D66849D11C06\",\"lastModified\":\"2022-01-13T07:42:45.3019654Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task8_98da0af6\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"batch_task7_98da0af6\",\"eTag\":\"0x8D9D66849D27B81\",\"lastModified\":\"2022-01-13T07:42:45.3109633Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task7_98da0af6\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -666,9 +666,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:42 GMT + - Thu, 13 Jan 2022 07:42:44 GMT request-id: - - 8e0ae12f-d8f6-480b-b1b4-3ba9baa19312 + - 9cf4d438-c4c0-4c24-898a-ba1e009ddf5e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -690,18 +690,18 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_task1_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task1_98da0af6\",\"eTag\":\"0x8D9535BB6F72B78\",\"creationTime\":\"2021-07-30T13:12:42.6417016Z\",\"lastModified\":\"2021-07-30T13:12:42.6417016Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:42.6417016Z\",\"commandLine\":\"cmd + \ {\r\n \"id\":\"batch_task1_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task1_98da0af6\",\"eTag\":\"0x8D9D6684918BA3A\",\"creationTime\":\"2022-01-13T07:42:44.0935994Z\",\"lastModified\":\"2022-01-13T07:42:44.0935994Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:44.0935994Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \ \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n \ },\"exitConditions\":{\r\n \"exitCodes\":[\r\n {\r\n @@ -711,7 +711,7 @@ interactions: \ }\r\n }\r\n ],\"default\":{\r\n \"jobAction\":\"none\"\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 },{\r\n \"id\":\"batch_task2_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task2_98da0af6\",\"eTag\":\"0x8D9535BB70F956E\",\"creationTime\":\"2021-07-30T13:12:42.8017006Z\",\"lastModified\":\"2021-07-30T13:12:42.8017006Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:42.8017006Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task2_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task2_98da0af6\",\"eTag\":\"0x8D9D6684937DBB9\",\"creationTime\":\"2022-01-13T07:42:44.2976185Z\",\"lastModified\":\"2022-01-13T07:42:44.2976185Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:44.2976185Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"outputFiles\":[\r\n {\r\n \"filePattern\":\"../stdout.txt\",\"destination\":{\r\n \ \"container\":{\r\n \"containerUrl\":\"https://test.blob.core.windows.net:443/test-container\",\"path\":\"taskLogs/output.txt\"\r\n \ }\r\n },\"uploadOptions\":{\r\n \"uploadCondition\":\"TaskCompletion\"\r\n @@ -722,38 +722,38 @@ interactions: \ \"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 },{\r\n \"id\":\"batch_task3_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task3_98da0af6\",\"eTag\":\"0x8D9535BB726A007\",\"creationTime\":\"2021-07-30T13:12:42.9527047Z\",\"lastModified\":\"2021-07-30T13:12:42.9527047Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:42.9527047Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task3_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task3_98da0af6\",\"eTag\":\"0x8D9D6684955D023\",\"creationTime\":\"2022-01-13T07:42:44.4939299Z\",\"lastModified\":\"2022-01-13T07:42:44.4939299Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:44.4939299Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \ \"scope\":\"task\",\"elevationLevel\":\"admin\"\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 },{\r\n \"id\":\"batch_task4_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task4_98da0af6\",\"eTag\":\"0x8D9535BB73E1FD0\",\"creationTime\":\"2021-07-30T13:12:43.1067088Z\",\"lastModified\":\"2021-07-30T13:12:43.1067088Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:43.1067088Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task4_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task4_98da0af6\",\"eTag\":\"0x8D9D6684974F148\",\"creationTime\":\"2022-01-13T07:42:44.69794Z\",\"lastModified\":\"2022-01-13T07:42:44.69794Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:44.69794Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \ \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n \ },\"authenticationTokenSettings\":{\r\n \"access\":[\r\n \"job\"\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 },{\r\n \"id\":\"batch_task5_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task5_98da0af6\",\"eTag\":\"0x8D9535BB7579B3D\",\"creationTime\":\"2021-07-30T13:12:43.2737085Z\",\"lastModified\":\"2021-07-30T13:12:43.2737085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:43.2737085Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task5_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task5_98da0af6\",\"eTag\":\"0x8D9D6684994AE1C\",\"creationTime\":\"2022-01-13T07:42:44.9059356Z\",\"lastModified\":\"2022-01-13T07:42:44.9059356Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:44.9059356Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"containerSettings\":{\r\n \"imageName\":\"windows_container:latest\",\"registry\":{\r\n \ \"username\":\"username\"\r\n },\"workingDirectory\":\"taskWorkingDirectory\"\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 },{\r\n \"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D9535BB76EA621\",\"creationTime\":\"2021-07-30T13:12:43.4247201Z\",\"lastModified\":\"2021-07-30T13:12:43.4247201Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:43.4247201Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D9D66849B2703D\",\"creationTime\":\"2022-01-13T07:42:45.1009597Z\",\"lastModified\":\"2022-01-13T07:42:45.1009597Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:45.1009597Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"username\":\"task-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 },{\r\n \"id\":\"batch_task7_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task7_98da0af6\",\"eTag\":\"0x8D9535BB78736DF\",\"creationTime\":\"2021-07-30T13:12:43.5857119Z\",\"lastModified\":\"2021-07-30T13:12:43.5857119Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:43.5857119Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task7_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task7_98da0af6\",\"eTag\":\"0x8D9D66849D27B81\",\"creationTime\":\"2022-01-13T07:42:45.3109633Z\",\"lastModified\":\"2022-01-13T07:42:45.3109633Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:45.3109633Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\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 },{\r\n \"id\":\"batch_task8_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task8_98da0af6\",\"eTag\":\"0x8D9535BB786E910\",\"creationTime\":\"2021-07-30T13:12:43.58372Z\",\"lastModified\":\"2021-07-30T13:12:43.58372Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:43.58372Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task8_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task8_98da0af6\",\"eTag\":\"0x8D9D66849D11C06\",\"creationTime\":\"2022-01-13T07:42:45.3019654Z\",\"lastModified\":\"2022-01-13T07:42:45.3019654Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:45.3019654Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\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 },{\r\n \"id\":\"batch_task9_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task9_98da0af6\",\"eTag\":\"0x8D9535BB7869B10\",\"creationTime\":\"2021-07-30T13:12:43.5817232Z\",\"lastModified\":\"2021-07-30T13:12:43.5817232Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:43.5817232Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task9_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task9_98da0af6\",\"eTag\":\"0x8D9D66849D07FC8\",\"creationTime\":\"2022-01-13T07:42:45.2979656Z\",\"lastModified\":\"2022-01-13T07:42:45.2979656Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:45.2979656Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"autoUser\":{\r\n \ \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n \ },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n @@ -765,9 +765,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:44 GMT request-id: - - f21729f7-e99e-4854-a364-5d484f48d35b + - 714f4f7c-bce6-4bc4-aae9-a21ddcd5e1e5 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -789,14 +789,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/taskcounts?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/taskcounts?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskcountsresult/@Element\",\"taskCounts\":{\r\n @@ -809,9 +809,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT request-id: - - 1f9b6e3a-fb49-4ede-b47d-a240f0517dc0 + - 57a63f96-31ed-4744-84da-ebed16533453 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -835,14 +835,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6/terminate?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6/terminate?api-version=2022-01-01.15.0 response: body: string: '' @@ -854,13 +854,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT etag: - - '0x8D9535BB7ABBCAE' + - '0x8D9D6684A0413A7' last-modified: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT request-id: - - 43075e2e-3164-451d-8395-d14ba89eabd1 + - a8a6b46a-1abf-4b23-8150-63a10c98e8cb server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -880,20 +880,20 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D9535BB7ABBCAE\",\"creationTime\":\"2021-07-30T13:12:43.4247201Z\",\"lastModified\":\"2021-07-30T13:12:43.825067Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2021-07-30T13:12:43.825067Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2021-07-30T13:12:43.4247201Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D9D6684A0413A7\",\"creationTime\":\"2022-01-13T07:42:45.1009597Z\",\"lastModified\":\"2022-01-13T07:42:45.6359847Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2022-01-13T07:42:45.6359847Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2022-01-13T07:42:45.1009597Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"username\":\"task-user\"\r\n \ },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n - \ },\"requiredSlots\":1,\"executionInfo\":{\r\n \"endTime\":\"2021-07-30T13:12:43.825067Z\",\"failureInfo\":{\r\n + \ },\"requiredSlots\":1,\"executionInfo\":{\r\n \"endTime\":\"2022-01-13T07:42:45.6359847Z\",\"failureInfo\":{\r\n \ \"category\":\"UserError\",\"code\":\"TaskEnded\",\"message\":\"Task Was Ended by User Request\"\r\n },\"result\":\"failure\",\"retryCount\":0,\"requeueCount\":0\r\n \ },\"nodeInfo\":{}\r\n}" @@ -903,13 +903,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT etag: - - '0x8D9535BB7ABBCAE' + - '0x8D9D6684A0413A7' last-modified: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT request-id: - - 3c0373c3-92d9-4dee-bf91-dc8bc373c53c + - c0069344-842e-4009-b985-d80f192ba9d6 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -933,14 +933,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6/reactivate?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6/reactivate?api-version=2022-01-01.15.0 response: body: string: '' @@ -950,13 +950,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT etag: - - '0x8D9535BB7C8A378' + - '0x8D9D6684A23345E' last-modified: - - Fri, 30 Jul 2021 13:12:44 GMT + - Thu, 13 Jan 2022 07:42:45 GMT request-id: - - 1560a9b7-13f3-4f04-85b2-7319e33072c2 + - f6b15334-abc4-4f8d-a705-447a4080f068 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -976,17 +976,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:44 GMT + - Thu, 13 Jan 2022 07:42:45 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D9535BB7C8A378\",\"creationTime\":\"2021-07-30T13:12:43.4247201Z\",\"lastModified\":\"2021-07-30T13:12:44.014476Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:12:44.014476Z\",\"previousState\":\"completed\",\"previousStateTransitionTime\":\"2021-07-30T13:12:43.825067Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D9D6684A23345E\",\"creationTime\":\"2022-01-13T07:42:45.1009597Z\",\"lastModified\":\"2022-01-13T07:42:45.8399838Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:42:45.8399838Z\",\"previousState\":\"completed\",\"previousStateTransitionTime\":\"2022-01-13T07:42:45.6359847Z\",\"commandLine\":\"cmd /c \\\"echo hello world\\\"\",\"userIdentity\":{\r\n \"username\":\"task-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 @@ -997,13 +997,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT etag: - - '0x8D9535BB7C8A378' + - '0x8D9D6684A23345E' last-modified: - - Fri, 30 Jul 2021 13:12:44 GMT + - Thu, 13 Jan 2022 07:42:45 GMT request-id: - - 429070ab-b46c-4a11-b4bb-627d0f812c54 + - 800827b9-9862-4b66-88a9-d4d887d5aa1f server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1029,14 +1029,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:44 GMT + - Thu, 13 Jan 2022 07:42:46 GMT method: PUT - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6?api-version=2022-01-01.15.0 response: body: string: '' @@ -1046,13 +1046,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT etag: - - '0x8D9535BB7E487A5' + - '0x8D9D6684A4385D9' last-modified: - - Fri, 30 Jul 2021 13:12:44 GMT + - Thu, 13 Jan 2022 07:42:46 GMT request-id: - - 82204216-823b-4263-aad8-80f7b907a5b2 + - 8202eb6d-3f13-4761-b452-671f609bbbed server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1074,14 +1074,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:44 GMT + - Thu, 13 Jan 2022 07:42:46 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6/subtasksinfo?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6/subtasksinfo?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#subtaskinfo\",\"value\":[]\r\n}" @@ -1091,9 +1091,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT request-id: - - 98794cc9-530b-4d87-9036-f937e45fdcc8 + - 81dded6a-8508-4df5-81c9-2fc5954a805c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1117,14 +1117,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:44 GMT + - Thu, 13 Jan 2022 07:42:46 GMT method: DELETE - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/batch_task6_98da0af6?api-version=2022-01-01.15.0 response: body: string: '' @@ -1132,9 +1132,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:43 GMT + - Thu, 13 Jan 2022 07:42:45 GMT request-id: - - 8388f546-c22a-4872-9b65-e6fb26e5962b + - 67721e6f-d777-4e5f-b8a4-86216ed6b0e6 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -11161,19 +11161,19 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:45 GMT + - Thu, 13 Jan 2022 07:42:46 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.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:0844ae06-2a85-4e63-82e7-c8a1f9b5a46b\\nTime:2021-07-30T13:12:45.2277975Z\"\r\n + the maximum permissible limit.\\nRequestId:f2af6157-a6c4-46b7-8376-2f700f8d8a11\\nTime:2022-01-13T07:42:46.7890795Z\"\r\n \ },\"values\":[\r\n {\r\n \"key\":\"MaxLimit\",\"value\":\"1048576\"\r\n \ }\r\n ]\r\n}" headers: @@ -11184,9 +11184,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:44 GMT + - Thu, 13 Jan 2022 07:42:46 GMT request-id: - - 0844ae06-2a85-4e63-82e7-c8a1f9b5a46b + - f2af6157-a6c4-46b7-8376-2f700f8d8a11 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -21211,19 +21211,19 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:46 GMT + - Thu, 13 Jan 2022 07:42:47 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.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:b66efb89-2736-4eef-8df1-63c440557cc0\\nTime:2021-07-30T13:12:46.4507984Z\"\r\n + the maximum permissible limit.\\nRequestId:05330358-ca78-43bb-8179-7b2f765b80a9\\nTime:2022-01-13T07:42:47.5797635Z\"\r\n \ },\"values\":[\r\n {\r\n \"key\":\"MaxLimit\",\"value\":\"1048576\"\r\n \ }\r\n ]\r\n}" headers: @@ -21234,9 +21234,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:45 GMT + - Thu, 13 Jan 2022 07:42:47 GMT request-id: - - b66efb89-2736-4eef-8df1-63c440557cc0 + - 05330358-ca78-43bb-8179-7b2f765b80a9 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -31360,19 +31360,19 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:47 GMT + - Thu, 13 Jan 2022 07:42:48 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.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:9610baee-ae4b-4293-83b2-d1a9ad51c774\\nTime:2021-07-30T13:12:47.6017602Z\"\r\n + the maximum permissible limit.\\nRequestId:d58a3ba0-2d27-455b-98cd-6ae570e34d82\\nTime:2022-01-13T07:42:48.1361022Z\"\r\n \ },\"values\":[\r\n {\r\n \"key\":\"MaxLimit\",\"value\":\"1048576\"\r\n \ }\r\n ]\r\n}" headers: @@ -31383,9 +31383,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:46 GMT + - Thu, 13 Jan 2022 07:42:47 GMT request-id: - - 9610baee-ae4b-4293-83b2-d1a9ad51c774 + - d58a3ba0-2d27-455b-98cd-6ae570e34d82 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -36459,67 +36459,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:47 GMT + - Thu, 13 Jan 2022 07:42:48 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask732\",\"eTag\":\"0x8D9535BBA3D4D2D\",\"lastModified\":\"2021-07-30T13:12:48.1344813Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask732\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask731\",\"eTag\":\"0x8D9535BBA3E85AF\",\"lastModified\":\"2021-07-30T13:12:48.1424815Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask731\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask730\",\"eTag\":\"0x8D9535BBA3F2203\",\"lastModified\":\"2021-07-30T13:12:48.1464835Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask730\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask729\",\"eTag\":\"0x8D9535BBA403388\",\"lastModified\":\"2021-07-30T13:12:48.1534856Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask729\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask727\",\"eTag\":\"0x8D9535BBA405A99\",\"lastModified\":\"2021-07-30T13:12:48.1544857Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask727\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask728\",\"eTag\":\"0x8D9535BBA405A99\",\"lastModified\":\"2021-07-30T13:12:48.1544857Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask728\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask726\",\"eTag\":\"0x8D9535BBA40F6B4\",\"lastModified\":\"2021-07-30T13:12:48.158482Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask726\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask724\",\"eTag\":\"0x8D9535BBA41BA05\",\"lastModified\":\"2021-07-30T13:12:48.1634821Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask724\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask725\",\"eTag\":\"0x8D9535BBA4144E4\",\"lastModified\":\"2021-07-30T13:12:48.1604836Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask725\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask723\",\"eTag\":\"0x8D9535BBA42082F\",\"lastModified\":\"2021-07-30T13:12:48.1654831Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask723\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask722\",\"eTag\":\"0x8D9535BBA42F2B0\",\"lastModified\":\"2021-07-30T13:12:48.1714864Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask722\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask721\",\"eTag\":\"0x8D9535BBA440409\",\"lastModified\":\"2021-07-30T13:12:48.1784841Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask721\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask720\",\"eTag\":\"0x8D9535BBA445221\",\"lastModified\":\"2021-07-30T13:12:48.1804833Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask720\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask719\",\"eTag\":\"0x8D9535BBA44A036\",\"lastModified\":\"2021-07-30T13:12:48.1824822Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask719\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask718\",\"eTag\":\"0x8D9535BBA45157E\",\"lastModified\":\"2021-07-30T13:12:48.1854846Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask718\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask717\",\"eTag\":\"0x8D9535BBA458AC0\",\"lastModified\":\"2021-07-30T13:12:48.1884864Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask717\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask716\",\"eTag\":\"0x8D9535BBA45D8BA\",\"lastModified\":\"2021-07-30T13:12:48.1904826Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask716\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask714\",\"eTag\":\"0x8D9535BBA471137\",\"lastModified\":\"2021-07-30T13:12:48.1984823Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask714\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask715\",\"eTag\":\"0x8D9535BBA469C10\",\"lastModified\":\"2021-07-30T13:12:48.1954832Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask715\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask713\",\"eTag\":\"0x8D9535BBA47AD78\",\"lastModified\":\"2021-07-30T13:12:48.2024824Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask713\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask712\",\"eTag\":\"0x8D9535BBA47FBAB\",\"lastModified\":\"2021-07-30T13:12:48.2044843Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask712\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask711\",\"eTag\":\"0x8D9535BBA4870D7\",\"lastModified\":\"2021-07-30T13:12:48.2074839Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask711\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask709\",\"eTag\":\"0x8D9535BBA493423\",\"lastModified\":\"2021-07-30T13:12:48.2124835Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask709\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask710\",\"eTag\":\"0x8D9535BBA495B37\",\"lastModified\":\"2021-07-30T13:12:48.2134839Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask710\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask708\",\"eTag\":\"0x8D9535BBA49D067\",\"lastModified\":\"2021-07-30T13:12:48.2164839Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask708\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask707\",\"eTag\":\"0x8D9535BBA4A4589\",\"lastModified\":\"2021-07-30T13:12:48.2194825Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask707\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask706\",\"eTag\":\"0x8D9535BBA4AE1DD\",\"lastModified\":\"2021-07-30T13:12:48.2234845Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask706\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask705\",\"eTag\":\"0x8D9535BBA4B3008\",\"lastModified\":\"2021-07-30T13:12:48.2254856Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask705\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask703\",\"eTag\":\"0x8D9535BBA4C4182\",\"lastModified\":\"2021-07-30T13:12:48.2324866Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask703\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask704\",\"eTag\":\"0x8D9535BBA4BCC41\",\"lastModified\":\"2021-07-30T13:12:48.2294849Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask704\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask702\",\"eTag\":\"0x8D9535BBA4CB69D\",\"lastModified\":\"2021-07-30T13:12:48.2354845Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask702\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask701\",\"eTag\":\"0x8D9535BBA4D2BE6\",\"lastModified\":\"2021-07-30T13:12:48.238487Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask701\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask700\",\"eTag\":\"0x8D9535BBA4DC811\",\"lastModified\":\"2021-07-30T13:12:48.2424849Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask700\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask699\",\"eTag\":\"0x8D9535BBA4E3D47\",\"lastModified\":\"2021-07-30T13:12:48.2454855Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask699\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask698\",\"eTag\":\"0x8D9535BBA4ED991\",\"lastModified\":\"2021-07-30T13:12:48.2494865Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask698\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask697\",\"eTag\":\"0x8D9535BBA4F27A3\",\"lastModified\":\"2021-07-30T13:12:48.2514851Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask697\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask696\",\"eTag\":\"0x8D9535BBA4F9CC3\",\"lastModified\":\"2021-07-30T13:12:48.2544835Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask696\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask694\",\"eTag\":\"0x8D9535BBA508726\",\"lastModified\":\"2021-07-30T13:12:48.2604838Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask694\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask693\",\"eTag\":\"0x8D9535BBA50FC5F\",\"lastModified\":\"2021-07-30T13:12:48.2634847Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask693\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask695\",\"eTag\":\"0x8D9535BBA51237A\",\"lastModified\":\"2021-07-30T13:12:48.2644858Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask695\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask692\",\"eTag\":\"0x8D9535BBA51717E\",\"lastModified\":\"2021-07-30T13:12:48.266483Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask692\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask691\",\"eTag\":\"0x8D9535BBA520DBF\",\"lastModified\":\"2021-07-30T13:12:48.2704831Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask691\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask690\",\"eTag\":\"0x8D9535BBA52AA2C\",\"lastModified\":\"2021-07-30T13:12:48.2744876Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask690\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask689\",\"eTag\":\"0x8D9535BBA52F85D\",\"lastModified\":\"2021-07-30T13:12:48.2764893Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask689\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask688\",\"eTag\":\"0x8D9535BBA536D63\",\"lastModified\":\"2021-07-30T13:12:48.2794851Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask688\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask687\",\"eTag\":\"0x8D9535BBA53E293\",\"lastModified\":\"2021-07-30T13:12:48.2824851Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask687\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask686\",\"eTag\":\"0x8D9535BBA5430AB\",\"lastModified\":\"2021-07-30T13:12:48.2844843Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask686\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask685\",\"eTag\":\"0x8D9535BBA54F40F\",\"lastModified\":\"2021-07-30T13:12:48.2894863Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask685\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask684\",\"eTag\":\"0x8D9535BBA55B751\",\"lastModified\":\"2021-07-30T13:12:48.2944849Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask684\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask683\",\"eTag\":\"0x8D9535BBA562C97\",\"lastModified\":\"2021-07-30T13:12:48.2974871Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask683\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask732\",\"eTag\":\"0x8D9D6684BBC76D4\",\"lastModified\":\"2022-01-13T07:42:48.5221076Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask732\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask731\",\"eTag\":\"0x8D9D6684BBD3A11\",\"lastModified\":\"2022-01-13T07:42:48.5271057Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask731\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask730\",\"eTag\":\"0x8D9D6684BBD885D\",\"lastModified\":\"2022-01-13T07:42:48.5291101Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask730\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask729\",\"eTag\":\"0x8D9D6684BBE4B9F\",\"lastModified\":\"2022-01-13T07:42:48.5341087Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask729\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask728\",\"eTag\":\"0x8D9D6684BBE72A8\",\"lastModified\":\"2022-01-13T07:42:48.535108Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask728\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask727\",\"eTag\":\"0x8D9D6684BBF0EFF\",\"lastModified\":\"2022-01-13T07:42:48.5391103Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask727\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask726\",\"eTag\":\"0x8D9D6684BBF841E\",\"lastModified\":\"2022-01-13T07:42:48.5421086Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask726\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask725\",\"eTag\":\"0x8D9D6684BC3067E\",\"lastModified\":\"2022-01-13T07:42:48.565107Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask725\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask724\",\"eTag\":\"0x8D9D6684BC354B2\",\"lastModified\":\"2022-01-13T07:42:48.567109Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask724\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask722\",\"eTag\":\"0x8D9D6684BC3A2D7\",\"lastModified\":\"2022-01-13T07:42:48.5691095Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask722\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask723\",\"eTag\":\"0x8D9D6684BC354B2\",\"lastModified\":\"2022-01-13T07:42:48.567109Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask723\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask718\",\"eTag\":\"0x8D9D6684BC46639\",\"lastModified\":\"2022-01-13T07:42:48.5741113Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask718\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask720\",\"eTag\":\"0x8D9D6684BC48D42\",\"lastModified\":\"2022-01-13T07:42:48.5751106Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask720\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask717\",\"eTag\":\"0x8D9D6684BC4B45A\",\"lastModified\":\"2022-01-13T07:42:48.5761114Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask717\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask721\",\"eTag\":\"0x8D9D6684BC46639\",\"lastModified\":\"2022-01-13T07:42:48.5741113Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask721\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask719\",\"eTag\":\"0x8D9D6684BC5C5AA\",\"lastModified\":\"2022-01-13T07:42:48.5831082Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask719\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask716\",\"eTag\":\"0x8D9D6684BC63AEC\",\"lastModified\":\"2022-01-13T07:42:48.58611Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask716\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask715\",\"eTag\":\"0x8D9D6684BC6B014\",\"lastModified\":\"2022-01-13T07:42:48.5891092Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask715\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask714\",\"eTag\":\"0x8D9D6684BC7736B\",\"lastModified\":\"2022-01-13T07:42:48.5941099Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask714\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask713\",\"eTag\":\"0x8D9D6684BC7E8B4\",\"lastModified\":\"2022-01-13T07:42:48.5971124Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask713\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask712\",\"eTag\":\"0x8D9D6684BC8FA31\",\"lastModified\":\"2022-01-13T07:42:48.6041137Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask712\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask711\",\"eTag\":\"0x8D9D6684BCA0B91\",\"lastModified\":\"2022-01-13T07:42:48.6111121Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask711\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask710\",\"eTag\":\"0x8D9D6684BCA599C\",\"lastModified\":\"2022-01-13T07:42:48.61311Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask710\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask709\",\"eTag\":\"0x8D9D6684BCB1CE1\",\"lastModified\":\"2022-01-13T07:42:48.6181089Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask709\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask708\",\"eTag\":\"0x8D9D6684BCBB92E\",\"lastModified\":\"2022-01-13T07:42:48.6221102Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask708\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask707\",\"eTag\":\"0x8D9D6684BCC556E\",\"lastModified\":\"2022-01-13T07:42:48.6261102Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask707\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask706\",\"eTag\":\"0x8D9D6684BCCF1AB\",\"lastModified\":\"2022-01-13T07:42:48.6301099Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask706\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask705\",\"eTag\":\"0x8D9D6684BCD8DE8\",\"lastModified\":\"2022-01-13T07:42:48.6341096Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask705\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask704\",\"eTag\":\"0x8D9D6684BCE5140\",\"lastModified\":\"2022-01-13T07:42:48.6391104Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask704\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask703\",\"eTag\":\"0x8D9D6684BCEC674\",\"lastModified\":\"2022-01-13T07:42:48.6421108Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask703\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask702\",\"eTag\":\"0x8D9D6684BCF3BB5\",\"lastModified\":\"2022-01-13T07:42:48.6451125Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask702\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask701\",\"eTag\":\"0x8D9D6684BCFB0D4\",\"lastModified\":\"2022-01-13T07:42:48.6481108Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask701\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask700\",\"eTag\":\"0x8D9D6684BD02602\",\"lastModified\":\"2022-01-13T07:42:48.6511106Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask700\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask699\",\"eTag\":\"0x8D9D6684BD1106A\",\"lastModified\":\"2022-01-13T07:42:48.6571114Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask699\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask698\",\"eTag\":\"0x8D9D6684BD18589\",\"lastModified\":\"2022-01-13T07:42:48.6601097Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask698\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask697\",\"eTag\":\"0x8D9D6684BD296F6\",\"lastModified\":\"2022-01-13T07:42:48.6671094Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask697\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask696\",\"eTag\":\"0x8D9D6684BD2E52D\",\"lastModified\":\"2022-01-13T07:42:48.6691117Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask696\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask695\",\"eTag\":\"0x8D9D6684BD38159\",\"lastModified\":\"2022-01-13T07:42:48.6731097Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask695\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask694\",\"eTag\":\"0x8D9D6684BD41DAF\",\"lastModified\":\"2022-01-13T07:42:48.6771119Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask694\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask693\",\"eTag\":\"0x8D9D6684BD4B9E8\",\"lastModified\":\"2022-01-13T07:42:48.6811112Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask693\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask692\",\"eTag\":\"0x8D9D6684BD55635\",\"lastModified\":\"2022-01-13T07:42:48.6851125Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask692\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask691\",\"eTag\":\"0x8D9D6684BD667C6\",\"lastModified\":\"2022-01-13T07:42:48.6921158Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask691\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask690\",\"eTag\":\"0x8D9D6684BD703F3\",\"lastModified\":\"2022-01-13T07:42:48.6961139Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask690\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask689\",\"eTag\":\"0x8D9D6684BD75210\",\"lastModified\":\"2022-01-13T07:42:48.6981136Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask689\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask688\",\"eTag\":\"0x8D9D6684BD7EE31\",\"lastModified\":\"2022-01-13T07:42:48.7021105Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask688\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask687\",\"eTag\":\"0x8D9D6684BD86359\",\"lastModified\":\"2022-01-13T07:42:48.7051097Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask687\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask686\",\"eTag\":\"0x8D9D6684BD8D87B\",\"lastModified\":\"2022-01-13T07:42:48.7081083Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask686\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask685\",\"eTag\":\"0x8D9D6684BD974DC\",\"lastModified\":\"2022-01-13T07:42:48.7121116Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask685\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask684\",\"eTag\":\"0x8D9D6684BD9E9FD\",\"lastModified\":\"2022-01-13T07:42:48.7151101Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask684\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask683\",\"eTag\":\"0x8D9D6684BDAFB6D\",\"lastModified\":\"2022-01-13T07:42:48.7221101Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask683\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -36527,9 +36527,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:47 GMT + - Thu, 13 Jan 2022 07:42:47 GMT request-id: - - b3d9831f-eb46-43a4-9f6a-60413a887b24 + - 7468757c-6f6a-4d66-8cc4-e6af16491241 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -41605,67 +41605,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:48 GMT + - Thu, 13 Jan 2022 07:42:49 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask632\",\"eTag\":\"0x8D9535BBA9DB1EF\",\"lastModified\":\"2021-07-30T13:12:48.7662063Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask632\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask631\",\"eTag\":\"0x8D9535BBA9EC374\",\"lastModified\":\"2021-07-30T13:12:48.7732084Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask631\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask630\",\"eTag\":\"0x8D9535BBA9F38AF\",\"lastModified\":\"2021-07-30T13:12:48.7762095Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask630\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask629\",\"eTag\":\"0x8D9535BBA9FADCD\",\"lastModified\":\"2021-07-30T13:12:48.7792077Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask629\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask628\",\"eTag\":\"0x8D9535BBAA022FD\",\"lastModified\":\"2021-07-30T13:12:48.7822077Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask628\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask627\",\"eTag\":\"0x8D9535BBAA0982E\",\"lastModified\":\"2021-07-30T13:12:48.7852078Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask627\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask626\",\"eTag\":\"0x8D9535BBAA0E64D\",\"lastModified\":\"2021-07-30T13:12:48.7872077Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask626\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask625\",\"eTag\":\"0x8D9535BBAA15B7D\",\"lastModified\":\"2021-07-30T13:12:48.7902077Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask625\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask624\",\"eTag\":\"0x8D9535BBAA1D0A8\",\"lastModified\":\"2021-07-30T13:12:48.7932072Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask624\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask622\",\"eTag\":\"0x8D9535BBAA2BB20\",\"lastModified\":\"2021-07-30T13:12:48.7992096Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask622\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask623\",\"eTag\":\"0x8D9535BBAA21ED3\",\"lastModified\":\"2021-07-30T13:12:48.7952083Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask623\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask621\",\"eTag\":\"0x8D9535BBAA37E5A\",\"lastModified\":\"2021-07-30T13:12:48.8042074Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask621\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask620\",\"eTag\":\"0x8D9535BBAA3CC80\",\"lastModified\":\"2021-07-30T13:12:48.806208Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask620\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask619\",\"eTag\":\"0x8D9535BBAA441B1\",\"lastModified\":\"2021-07-30T13:12:48.8092081Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask619\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask618\",\"eTag\":\"0x8D9535BBAA4B6E2\",\"lastModified\":\"2021-07-30T13:12:48.8122082Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask618\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask617\",\"eTag\":\"0x8D9535BBAA52C23\",\"lastModified\":\"2021-07-30T13:12:48.8152099Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask617\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask616\",\"eTag\":\"0x8D9535BBAA57A35\",\"lastModified\":\"2021-07-30T13:12:48.8172085Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask616\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask614\",\"eTag\":\"0x8D9535BBAA68BA5\",\"lastModified\":\"2021-07-30T13:12:48.8242085Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask614\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask615\",\"eTag\":\"0x8D9535BBAA6B2D4\",\"lastModified\":\"2021-07-30T13:12:48.8252116Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask615\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask613\",\"eTag\":\"0x8D9535BBAA72801\",\"lastModified\":\"2021-07-30T13:12:48.8282113Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask613\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask612\",\"eTag\":\"0x8D9535BBAA7C423\",\"lastModified\":\"2021-07-30T13:12:48.8322083Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask612\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask611\",\"eTag\":\"0x8D9535BBAA83957\",\"lastModified\":\"2021-07-30T13:12:48.8352087Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask611\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask610\",\"eTag\":\"0x8D9535BBAA8AE80\",\"lastModified\":\"2021-07-30T13:12:48.838208Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask610\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask609\",\"eTag\":\"0x8D9535BBAA923AD\",\"lastModified\":\"2021-07-30T13:12:48.8412077Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask609\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask608\",\"eTag\":\"0x8D9535BBAA971D6\",\"lastModified\":\"2021-07-30T13:12:48.8432086Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask608\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask607\",\"eTag\":\"0x8D9535BBAA9E708\",\"lastModified\":\"2021-07-30T13:12:48.8462088Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask607\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask606\",\"eTag\":\"0x8D9535BBAAA5C3E\",\"lastModified\":\"2021-07-30T13:12:48.8492094Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask606\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask605\",\"eTag\":\"0x8D9535BBAAAF877\",\"lastModified\":\"2021-07-30T13:12:48.8532087Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask605\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask604\",\"eTag\":\"0x8D9535BBAAB94C3\",\"lastModified\":\"2021-07-30T13:12:48.8572099Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask604\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask603\",\"eTag\":\"0x8D9535BBAABE2E3\",\"lastModified\":\"2021-07-30T13:12:48.8592099Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask603\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask602\",\"eTag\":\"0x8D9535BBAAC5809\",\"lastModified\":\"2021-07-30T13:12:48.8622089Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask602\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask601\",\"eTag\":\"0x8D9535BBAACCD3D\",\"lastModified\":\"2021-07-30T13:12:48.8652093Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask601\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask600\",\"eTag\":\"0x8D9535BBAAD426B\",\"lastModified\":\"2021-07-30T13:12:48.8682091Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask600\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask599\",\"eTag\":\"0x8D9535BBAADDEBD\",\"lastModified\":\"2021-07-30T13:12:48.8722109Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask599\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask598\",\"eTag\":\"0x8D9535BBAAE7AFB\",\"lastModified\":\"2021-07-30T13:12:48.8762107Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask598\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask597\",\"eTag\":\"0x8D9535BBAAEC91C\",\"lastModified\":\"2021-07-30T13:12:48.8782108Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask597\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask595\",\"eTag\":\"0x8D9535BBAAFB371\",\"lastModified\":\"2021-07-30T13:12:48.8842097Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask595\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask596\",\"eTag\":\"0x8D9535BBAAF3E3B\",\"lastModified\":\"2021-07-30T13:12:48.8812091Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask596\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask593\",\"eTag\":\"0x8D9535BBAB076BB\",\"lastModified\":\"2021-07-30T13:12:48.8892091Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask593\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask594\",\"eTag\":\"0x8D9535BBAB0289A\",\"lastModified\":\"2021-07-30T13:12:48.887209Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask594\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask592\",\"eTag\":\"0x8D9535BBAB16131\",\"lastModified\":\"2021-07-30T13:12:48.8952113Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask592\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask591\",\"eTag\":\"0x8D9535BBAB16131\",\"lastModified\":\"2021-07-30T13:12:48.8952113Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask591\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask590\",\"eTag\":\"0x8D9535BBAB2246E\",\"lastModified\":\"2021-07-30T13:12:48.9002094Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask590\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask589\",\"eTag\":\"0x8D9535BBAB27296\",\"lastModified\":\"2021-07-30T13:12:48.9022102Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask589\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask588\",\"eTag\":\"0x8D9535BBAB30ED4\",\"lastModified\":\"2021-07-30T13:12:48.90621Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask588\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask587\",\"eTag\":\"0x8D9535BBAB3D22B\",\"lastModified\":\"2021-07-30T13:12:48.9112107Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask587\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask586\",\"eTag\":\"0x8D9535BBAB3F930\",\"lastModified\":\"2021-07-30T13:12:48.9122096Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask586\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask585\",\"eTag\":\"0x8D9535BBAB44758\",\"lastModified\":\"2021-07-30T13:12:48.9142104Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask585\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask584\",\"eTag\":\"0x8D9535BBAB4BC7B\",\"lastModified\":\"2021-07-30T13:12:48.9172091Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask584\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask583\",\"eTag\":\"0x8D9535BBAB57FED\",\"lastModified\":\"2021-07-30T13:12:48.9222125Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask583\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask632\",\"eTag\":\"0x8D9D6684C16761B\",\"lastModified\":\"2022-01-13T07:42:49.1119131Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask632\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask631\",\"eTag\":\"0x8D9D6684C16C448\",\"lastModified\":\"2022-01-13T07:42:49.1139144Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask631\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask630\",\"eTag\":\"0x8D9D6684C173990\",\"lastModified\":\"2022-01-13T07:42:49.1169168Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask630\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask629\",\"eTag\":\"0x8D9D6684C17FCD4\",\"lastModified\":\"2022-01-13T07:42:49.1219156Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask629\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask628\",\"eTag\":\"0x8D9D6684C1871F6\",\"lastModified\":\"2022-01-13T07:42:49.1249142Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask628\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask626\",\"eTag\":\"0x8D9D6684C19AA68\",\"lastModified\":\"2022-01-13T07:42:49.1329128Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask626\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask627\",\"eTag\":\"0x8D9D6684C19AA68\",\"lastModified\":\"2022-01-13T07:42:49.1329128Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask627\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask625\",\"eTag\":\"0x8D9D6684C1ABBEB\",\"lastModified\":\"2022-01-13T07:42:49.1399147Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask625\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask624\",\"eTag\":\"0x8D9D6684C1BA664\",\"lastModified\":\"2022-01-13T07:42:49.1459172Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask624\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask623\",\"eTag\":\"0x8D9D6684C1C699E\",\"lastModified\":\"2022-01-13T07:42:49.150915Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask623\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask622\",\"eTag\":\"0x8D9D6684C1D53FF\",\"lastModified\":\"2022-01-13T07:42:49.1569151Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask622\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask621\",\"eTag\":\"0x8D9D6684C1DA212\",\"lastModified\":\"2022-01-13T07:42:49.1589138Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask621\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask620\",\"eTag\":\"0x8D9D6684C1E8C83\",\"lastModified\":\"2022-01-13T07:42:49.1649155Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask620\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask619\",\"eTag\":\"0x8D9D6684C1FEC0F\",\"lastModified\":\"2022-01-13T07:42:49.1739151Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask619\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask618\",\"eTag\":\"0x8D9D6684C208848\",\"lastModified\":\"2022-01-13T07:42:49.1779144Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask618\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask617\",\"eTag\":\"0x8D9D6684C2172BE\",\"lastModified\":\"2022-01-13T07:42:49.1839166Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask617\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask616\",\"eTag\":\"0x8D9D6684C228417\",\"lastModified\":\"2022-01-13T07:42:49.1909143Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask616\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask614\",\"eTag\":\"0x8D9D6684C23E3C8\",\"lastModified\":\"2022-01-13T07:42:49.1999176Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask614\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask615\",\"eTag\":\"0x8D9D6684C239592\",\"lastModified\":\"2022-01-13T07:42:49.1979154Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask615\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask613\",\"eTag\":\"0x8D9D6684C24A702\",\"lastModified\":\"2022-01-13T07:42:49.2049154Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask613\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask612\",\"eTag\":\"0x8D9D6684C260693\",\"lastModified\":\"2022-01-13T07:42:49.2139155Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask612\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask611\",\"eTag\":\"0x8D9D6684C26C9F1\",\"lastModified\":\"2022-01-13T07:42:49.2189169Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask611\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask610\",\"eTag\":\"0x8D9D6684C273F2F\",\"lastModified\":\"2022-01-13T07:42:49.2219183Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask610\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask609\",\"eTag\":\"0x8D9D6684C27B440\",\"lastModified\":\"2022-01-13T07:42:49.2249152Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask609\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask608\",\"eTag\":\"0x8D9D6684C28ECDD\",\"lastModified\":\"2022-01-13T07:42:49.2329181Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask608\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask607\",\"eTag\":\"0x8D9D6684C29891A\",\"lastModified\":\"2022-01-13T07:42:49.2369178Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask607\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask606\",\"eTag\":\"0x8D9D6684C2B0FC8\",\"lastModified\":\"2022-01-13T07:42:49.2469192Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask606\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask604\",\"eTag\":\"0x8D9D6684C2B84E1\",\"lastModified\":\"2022-01-13T07:42:49.2499169Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask604\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask603\",\"eTag\":\"0x8D9D6684C2BF9F7\",\"lastModified\":\"2022-01-13T07:42:49.2529143Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask603\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask605\",\"eTag\":\"0x8D9D6684C2B5E08\",\"lastModified\":\"2022-01-13T07:42:49.2489224Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask605\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask602\",\"eTag\":\"0x8D9D6684C2CE487\",\"lastModified\":\"2022-01-13T07:42:49.2589191Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask602\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask601\",\"eTag\":\"0x8D9D6684C2D3288\",\"lastModified\":\"2022-01-13T07:42:49.260916Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask601\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask600\",\"eTag\":\"0x8D9D6684C2DCECB\",\"lastModified\":\"2022-01-13T07:42:49.2649163Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask600\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask599\",\"eTag\":\"0x8D9D6684C2EE03A\",\"lastModified\":\"2022-01-13T07:42:49.2719162Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask599\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask597\",\"eTag\":\"0x8D9D6684C3018CD\",\"lastModified\":\"2022-01-13T07:42:49.2799181Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask597\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask598\",\"eTag\":\"0x8D9D6684C2FCA95\",\"lastModified\":\"2022-01-13T07:42:49.2779157Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask598\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask595\",\"eTag\":\"0x8D9D6684C30DC0E\",\"lastModified\":\"2022-01-13T07:42:49.2849166Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask595\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask596\",\"eTag\":\"0x8D9D6684C308DF4\",\"lastModified\":\"2022-01-13T07:42:49.2829172Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask596\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask594\",\"eTag\":\"0x8D9D6684C319F5D\",\"lastModified\":\"2022-01-13T07:42:49.2899165Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask594\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask593\",\"eTag\":\"0x8D9D6684C32148E\",\"lastModified\":\"2022-01-13T07:42:49.2929166Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask593\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask592\",\"eTag\":\"0x8D9D6684C32FEFF\",\"lastModified\":\"2022-01-13T07:42:49.2989183Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask592\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask591\",\"eTag\":\"0x8D9D6684C33E95F\",\"lastModified\":\"2022-01-13T07:42:49.3049183Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask591\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask590\",\"eTag\":\"0x8D9D6684C34379C\",\"lastModified\":\"2022-01-13T07:42:49.3069212Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask590\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask589\",\"eTag\":\"0x8D9D6684C354905\",\"lastModified\":\"2022-01-13T07:42:49.3139205Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask589\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask588\",\"eTag\":\"0x8D9D6684C35BE2B\",\"lastModified\":\"2022-01-13T07:42:49.3169195Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask588\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask587\",\"eTag\":\"0x8D9D6684C36CF79\",\"lastModified\":\"2022-01-13T07:42:49.3239161Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask587\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask586\",\"eTag\":\"0x8D9D6684C3792E8\",\"lastModified\":\"2022-01-13T07:42:49.3289192Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask586\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask585\",\"eTag\":\"0x8D9D6684C38A44C\",\"lastModified\":\"2022-01-13T07:42:49.335918Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask585\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask584\",\"eTag\":\"0x8D9D6684C38F265\",\"lastModified\":\"2022-01-13T07:42:49.3379173Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask584\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask583\",\"eTag\":\"0x8D9D6684C398EB8\",\"lastModified\":\"2022-01-13T07:42:49.3419192Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask583\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -41673,9 +41673,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:47 GMT + - Thu, 13 Jan 2022 07:42:49 GMT request-id: - - 10bb2792-2bb7-43b7-96d1-18ce9ffeff17 + - cd4d6baf-88b8-4eef-8be0-da088e1e058c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -46751,67 +46751,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:49 GMT + - Thu, 13 Jan 2022 07:42:49 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask582\",\"eTag\":\"0x8D9535BBB05B48A\",\"lastModified\":\"2021-07-30T13:12:49.4478474Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask582\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask581\",\"eTag\":\"0x8D9535BBB0602BB\",\"lastModified\":\"2021-07-30T13:12:49.4498491Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask581\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask580\",\"eTag\":\"0x8D9535BBB0677E1\",\"lastModified\":\"2021-07-30T13:12:49.4528481Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask580\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask579\",\"eTag\":\"0x8D9535BBB06C60E\",\"lastModified\":\"2021-07-30T13:12:49.4548494Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask579\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask578\",\"eTag\":\"0x8D9535BBB07B065\",\"lastModified\":\"2021-07-30T13:12:49.4608485Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask578\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask576\",\"eTag\":\"0x8D9535BBB08C1E1\",\"lastModified\":\"2021-07-30T13:12:49.4678497Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask576\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask577\",\"eTag\":\"0x8D9535BBB084CBD\",\"lastModified\":\"2021-07-30T13:12:49.4648509Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask577\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask575\",\"eTag\":\"0x8D9535BBB09FA7A\",\"lastModified\":\"2021-07-30T13:12:49.4758522Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask575\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask574\",\"eTag\":\"0x8D9535BBB0A96A4\",\"lastModified\":\"2021-07-30T13:12:49.47985Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask574\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask573\",\"eTag\":\"0x8D9535BBB0B0BD4\",\"lastModified\":\"2021-07-30T13:12:49.48285Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask573\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask572\",\"eTag\":\"0x8D9535BBB0BCF1D\",\"lastModified\":\"2021-07-30T13:12:49.4878493Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask572\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask571\",\"eTag\":\"0x8D9535BBB0C6B60\",\"lastModified\":\"2021-07-30T13:12:49.4918496Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask571\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask570\",\"eTag\":\"0x8D9535BBB0D7CCF\",\"lastModified\":\"2021-07-30T13:12:49.4988495Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask570\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask569\",\"eTag\":\"0x8D9535BBB0DCAF4\",\"lastModified\":\"2021-07-30T13:12:49.50085Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask569\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask568\",\"eTag\":\"0x8D9535BBB0DF1F5\",\"lastModified\":\"2021-07-30T13:12:49.5018485Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask568\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask567\",\"eTag\":\"0x8D9535BBB0E4023\",\"lastModified\":\"2021-07-30T13:12:49.5038499Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask567\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask566\",\"eTag\":\"0x8D9535BBB0EB554\",\"lastModified\":\"2021-07-30T13:12:49.50685Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask566\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask565\",\"eTag\":\"0x8D9535BBB0F2A8F\",\"lastModified\":\"2021-07-30T13:12:49.5098511Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask565\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask564\",\"eTag\":\"0x8D9535BBB0F78AD\",\"lastModified\":\"2021-07-30T13:12:49.5118509Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask564\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask563\",\"eTag\":\"0x8D9535BBB1014E8\",\"lastModified\":\"2021-07-30T13:12:49.5158504Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask563\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask562\",\"eTag\":\"0x8D9535BBB10D830\",\"lastModified\":\"2021-07-30T13:12:49.5208496Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask562\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask561\",\"eTag\":\"0x8D9535BBB114D65\",\"lastModified\":\"2021-07-30T13:12:49.5238501Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask561\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask560\",\"eTag\":\"0x8D9535BBB11C296\",\"lastModified\":\"2021-07-30T13:12:49.5268502Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask560\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask559\",\"eTag\":\"0x8D9535BBB1210C5\",\"lastModified\":\"2021-07-30T13:12:49.5288517Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask559\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask558\",\"eTag\":\"0x8D9535BBB1285F8\",\"lastModified\":\"2021-07-30T13:12:49.531852Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask558\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask557\",\"eTag\":\"0x8D9535BBB12FB06\",\"lastModified\":\"2021-07-30T13:12:49.5348486Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask557\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask556\",\"eTag\":\"0x8D9535BBB13E563\",\"lastModified\":\"2021-07-30T13:12:49.5408483Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask556\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask555\",\"eTag\":\"0x8D9535BBB145A9D\",\"lastModified\":\"2021-07-30T13:12:49.5438493Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask555\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask554\",\"eTag\":\"0x8D9535BBB14CFCC\",\"lastModified\":\"2021-07-30T13:12:49.5468492Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask554\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask553\",\"eTag\":\"0x8D9535BBB1544F9\",\"lastModified\":\"2021-07-30T13:12:49.5498489Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask553\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask552\",\"eTag\":\"0x8D9535BBB160857\",\"lastModified\":\"2021-07-30T13:12:49.5548503Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask552\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask551\",\"eTag\":\"0x8D9535BBB16A4BC\",\"lastModified\":\"2021-07-30T13:12:49.558854Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask551\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask550\",\"eTag\":\"0x8D9535BBB1740D8\",\"lastModified\":\"2021-07-30T13:12:49.5628504Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask550\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask549\",\"eTag\":\"0x8D9535BBB17DD0B\",\"lastModified\":\"2021-07-30T13:12:49.5668491Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask549\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask548\",\"eTag\":\"0x8D9535BBB182B35\",\"lastModified\":\"2021-07-30T13:12:49.5688501Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask548\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask547\",\"eTag\":\"0x8D9535BBB187964\",\"lastModified\":\"2021-07-30T13:12:49.5708516Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask547\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask546\",\"eTag\":\"0x8D9535BBB198AC7\",\"lastModified\":\"2021-07-30T13:12:49.5778503Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask546\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask545\",\"eTag\":\"0x8D9535BBB1A9C38\",\"lastModified\":\"2021-07-30T13:12:49.5848504Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask545\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask544\",\"eTag\":\"0x8D9535BBB1AEA66\",\"lastModified\":\"2021-07-30T13:12:49.5868518Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask544\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask543\",\"eTag\":\"0x8D9535BBB1B5F8D\",\"lastModified\":\"2021-07-30T13:12:49.5898509Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask543\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask542\",\"eTag\":\"0x8D9535BBB1BFBCC\",\"lastModified\":\"2021-07-30T13:12:49.5938508Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask542\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask541\",\"eTag\":\"0x8D9535BBB1C980D\",\"lastModified\":\"2021-07-30T13:12:49.5978509Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask541\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask540\",\"eTag\":\"0x8D9535BBB1D3450\",\"lastModified\":\"2021-07-30T13:12:49.6018512Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask540\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask538\",\"eTag\":\"0x8D9535BBB1E6CC0\",\"lastModified\":\"2021-07-30T13:12:49.6098496Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask538\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask539\",\"eTag\":\"0x8D9535BBB1DA999\",\"lastModified\":\"2021-07-30T13:12:49.6048537Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask539\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask536\",\"eTag\":\"0x8D9535BBB1FF373\",\"lastModified\":\"2021-07-30T13:12:49.6198515Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask536\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask537\",\"eTag\":\"0x8D9535BBB2068AF\",\"lastModified\":\"2021-07-30T13:12:49.6228527Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask537\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask535\",\"eTag\":\"0x8D9535BBB208F9A\",\"lastModified\":\"2021-07-30T13:12:49.623849Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask535\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask534\",\"eTag\":\"0x8D9535BBB20DDCF\",\"lastModified\":\"2021-07-30T13:12:49.6258511Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask534\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask533\",\"eTag\":\"0x8D9535BBB215301\",\"lastModified\":\"2021-07-30T13:12:49.6288513Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask533\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask582\",\"eTag\":\"0x8D9D6684C71B5EF\",\"lastModified\":\"2022-01-13T07:42:49.7099247Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask582\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask581\",\"eTag\":\"0x8D9D6684C72A05C\",\"lastModified\":\"2022-01-13T07:42:49.715926Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask581\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask580\",\"eTag\":\"0x8D9D6684C72A05C\",\"lastModified\":\"2022-01-13T07:42:49.715926Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask580\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask579\",\"eTag\":\"0x8D9D6684C73D8E8\",\"lastModified\":\"2022-01-13T07:42:49.7239272Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask579\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask578\",\"eTag\":\"0x8D9D6684C744E12\",\"lastModified\":\"2022-01-13T07:42:49.7269266Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask578\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask577\",\"eTag\":\"0x8D9D6684C74EA4B\",\"lastModified\":\"2022-01-13T07:42:49.7309259Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask577\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask576\",\"eTag\":\"0x8D9D6684C75387D\",\"lastModified\":\"2022-01-13T07:42:49.7329277Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask576\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask575\",\"eTag\":\"0x8D9D6684C75D4AB\",\"lastModified\":\"2022-01-13T07:42:49.7369259Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask575\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask574\",\"eTag\":\"0x8D9D6684C7670F8\",\"lastModified\":\"2022-01-13T07:42:49.7409272Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask574\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask573\",\"eTag\":\"0x8D9D6684C770D54\",\"lastModified\":\"2022-01-13T07:42:49.74493Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask573\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask572\",\"eTag\":\"0x8D9D6684C77D087\",\"lastModified\":\"2022-01-13T07:42:49.7499271Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask572\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask571\",\"eTag\":\"0x8D9D6684C7845AB\",\"lastModified\":\"2022-01-13T07:42:49.7529259Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask571\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask570\",\"eTag\":\"0x8D9D6684C7893CC\",\"lastModified\":\"2022-01-13T07:42:49.754926Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask570\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask569\",\"eTag\":\"0x8D9D6684C79571F\",\"lastModified\":\"2022-01-13T07:42:49.7599263Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask569\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask568\",\"eTag\":\"0x8D9D6684C79F378\",\"lastModified\":\"2022-01-13T07:42:49.7639288Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask568\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask566\",\"eTag\":\"0x8D9D6684C7A8FB7\",\"lastModified\":\"2022-01-13T07:42:49.7679287Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask566\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask567\",\"eTag\":\"0x8D9D6684C7A689C\",\"lastModified\":\"2022-01-13T07:42:49.7669276Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask567\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask565\",\"eTag\":\"0x8D9D6684C7BA123\",\"lastModified\":\"2022-01-13T07:42:49.7749283Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask565\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask564\",\"eTag\":\"0x8D9D6684C7BEF49\",\"lastModified\":\"2022-01-13T07:42:49.7769289Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask564\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask563\",\"eTag\":\"0x8D9D6684C7CB27A\",\"lastModified\":\"2022-01-13T07:42:49.7819258Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask563\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask562\",\"eTag\":\"0x8D9D6684C7D4EC0\",\"lastModified\":\"2022-01-13T07:42:49.7859264Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask562\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask560\",\"eTag\":\"0x8D9D6684C7E874D\",\"lastModified\":\"2022-01-13T07:42:49.7939277Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask560\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask559\",\"eTag\":\"0x8D9D6684C7EFC68\",\"lastModified\":\"2022-01-13T07:42:49.7969256Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask559\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask558\",\"eTag\":\"0x8D9D6684C7FBFD2\",\"lastModified\":\"2022-01-13T07:42:49.8019282Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask558\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask557\",\"eTag\":\"0x8D9D6684C805C1E\",\"lastModified\":\"2022-01-13T07:42:49.8059294Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask557\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask555\",\"eTag\":\"0x8D9D6684C816D78\",\"lastModified\":\"2022-01-13T07:42:49.8129272Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask555\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask556\",\"eTag\":\"0x8D9D6684C81E2C2\",\"lastModified\":\"2022-01-13T07:42:49.8159298Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask556\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask554\",\"eTag\":\"0x8D9D6684C8209BD\",\"lastModified\":\"2022-01-13T07:42:49.8169277Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask554\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask553\",\"eTag\":\"0x8D9D6684C8257E3\",\"lastModified\":\"2022-01-13T07:42:49.8189283Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask553\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask552\",\"eTag\":\"0x8D9D6684C831B41\",\"lastModified\":\"2022-01-13T07:42:49.8239297Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask552\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask551\",\"eTag\":\"0x8D9D6684C839058\",\"lastModified\":\"2022-01-13T07:42:49.8269272Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask551\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask549\",\"eTag\":\"0x8D9D6684C84EFEA\",\"lastModified\":\"2022-01-13T07:42:49.8359274Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask549\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask548\",\"eTag\":\"0x8D9D6684C853E35\",\"lastModified\":\"2022-01-13T07:42:49.8379317Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask548\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask550\",\"eTag\":\"0x8D9D6684C84C8D3\",\"lastModified\":\"2022-01-13T07:42:49.8349267Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask550\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask547\",\"eTag\":\"0x8D9D6684C85DA42\",\"lastModified\":\"2022-01-13T07:42:49.8419266Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask547\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask546\",\"eTag\":\"0x8D9D6684C86286F\",\"lastModified\":\"2022-01-13T07:42:49.8439279Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask546\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask545\",\"eTag\":\"0x8D9D6684C86C4C7\",\"lastModified\":\"2022-01-13T07:42:49.8479303Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask545\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask544\",\"eTag\":\"0x8D9D6684C8739F4\",\"lastModified\":\"2022-01-13T07:42:49.85093Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask544\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask543\",\"eTag\":\"0x8D9D6684C882458\",\"lastModified\":\"2022-01-13T07:42:49.8569304Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask543\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask542\",\"eTag\":\"0x8D9D6684C887259\",\"lastModified\":\"2022-01-13T07:42:49.8589273Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask542\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask541\",\"eTag\":\"0x8D9D6684C88E7A0\",\"lastModified\":\"2022-01-13T07:42:49.8619296Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask541\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask540\",\"eTag\":\"0x8D9D6684C8935B0\",\"lastModified\":\"2022-01-13T07:42:49.863928Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask540\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask539\",\"eTag\":\"0x8D9D6684C89D1E5\",\"lastModified\":\"2022-01-13T07:42:49.8679269Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask539\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask538\",\"eTag\":\"0x8D9D6684C8A2010\",\"lastModified\":\"2022-01-13T07:42:49.869928Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask538\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask536\",\"eTag\":\"0x8D9D6684C8AE358\",\"lastModified\":\"2022-01-13T07:42:49.8749272Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask536\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask537\",\"eTag\":\"0x8D9D6684C8AE358\",\"lastModified\":\"2022-01-13T07:42:49.8749272Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask537\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask535\",\"eTag\":\"0x8D9D6684C8BCDF7\",\"lastModified\":\"2022-01-13T07:42:49.8809335Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask535\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask534\",\"eTag\":\"0x8D9D6684C8C1BFA\",\"lastModified\":\"2022-01-13T07:42:49.8829306Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask534\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask533\",\"eTag\":\"0x8D9D6684C8CB832\",\"lastModified\":\"2022-01-13T07:42:49.8869298Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask533\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask561\",\"eTag\":\"0x8D9D6684C7E1218\",\"lastModified\":\"2022-01-13T07:42:49.7909272Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask561\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -46819,9 +46819,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:48 GMT + - Thu, 13 Jan 2022 07:42:49 GMT request-id: - - ad92bce0-bbcd-4617-9063-c604598ac105 + - 464adb43-a83b-4773-ada2-30ef0ffd6c63 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -51897,67 +51897,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:49 GMT + - Thu, 13 Jan 2022 07:42:50 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask532\",\"eTag\":\"0x8D9535BBBB4EFC0\",\"lastModified\":\"2021-07-30T13:12:50.5962432Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask532\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask531\",\"eTag\":\"0x8D9535BBBB53DE8\",\"lastModified\":\"2021-07-30T13:12:50.598244Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask531\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask530\",\"eTag\":\"0x8D9535BBBB58C11\",\"lastModified\":\"2021-07-30T13:12:50.6002449Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask530\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask529\",\"eTag\":\"0x8D9535BBBB60141\",\"lastModified\":\"2021-07-30T13:12:50.6032449Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask529\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask528\",\"eTag\":\"0x8D9535BBBB64F5E\",\"lastModified\":\"2021-07-30T13:12:50.6052446Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask528\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask527\",\"eTag\":\"0x8D9535BBBB6C4A6\",\"lastModified\":\"2021-07-30T13:12:50.608247Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask527\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask526\",\"eTag\":\"0x8D9535BBBB7FD25\",\"lastModified\":\"2021-07-30T13:12:50.6162469Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask526\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask525\",\"eTag\":\"0x8D9535BBBB89956\",\"lastModified\":\"2021-07-30T13:12:50.6202454Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask525\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask524\",\"eTag\":\"0x8D9535BBBB90E80\",\"lastModified\":\"2021-07-30T13:12:50.6232448Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask524\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask523\",\"eTag\":\"0x8D9535BBBB95CA9\",\"lastModified\":\"2021-07-30T13:12:50.6252457Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask523\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask522\",\"eTag\":\"0x8D9535BBBB9D1D4\",\"lastModified\":\"2021-07-30T13:12:50.6282452Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask522\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask521\",\"eTag\":\"0x8D9535BBBBA4707\",\"lastModified\":\"2021-07-30T13:12:50.6312455Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask521\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask520\",\"eTag\":\"0x8D9535BBBBABC34\",\"lastModified\":\"2021-07-30T13:12:50.6342452Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask520\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask519\",\"eTag\":\"0x8D9535BBBBB315C\",\"lastModified\":\"2021-07-30T13:12:50.6372444Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask519\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask517\",\"eTag\":\"0x8D9535BBBBBF4D2\",\"lastModified\":\"2021-07-30T13:12:50.6422482Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask517\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask518\",\"eTag\":\"0x8D9535BBBBBF4D2\",\"lastModified\":\"2021-07-30T13:12:50.6422482Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask518\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask516\",\"eTag\":\"0x8D9535BBBBCB802\",\"lastModified\":\"2021-07-30T13:12:50.647245Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask516\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask515\",\"eTag\":\"0x8D9535BBBBD2D2F\",\"lastModified\":\"2021-07-30T13:12:50.6502447Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask515\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask514\",\"eTag\":\"0x8D9535BBBBD7B58\",\"lastModified\":\"2021-07-30T13:12:50.6522456Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask514\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask513\",\"eTag\":\"0x8D9535BBBBE1786\",\"lastModified\":\"2021-07-30T13:12:50.6562438Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask513\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask511\",\"eTag\":\"0x8D9535BBBBEB3D7\",\"lastModified\":\"2021-07-30T13:12:50.6602455Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask511\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask510\",\"eTag\":\"0x8D9535BBBBF2908\",\"lastModified\":\"2021-07-30T13:12:50.6632456Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask510\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask509\",\"eTag\":\"0x8D9535BBBBF9E38\",\"lastModified\":\"2021-07-30T13:12:50.6662456Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask509\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask512\",\"eTag\":\"0x8D9535BBBBE3EAE\",\"lastModified\":\"2021-07-30T13:12:50.6572462Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask512\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask508\",\"eTag\":\"0x8D9535BBBC03A8E\",\"lastModified\":\"2021-07-30T13:12:50.6702478Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask508\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask507\",\"eTag\":\"0x8D9535BBBC0AFAA\",\"lastModified\":\"2021-07-30T13:12:50.6732458Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask507\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask506\",\"eTag\":\"0x8D9535BBBC124DD\",\"lastModified\":\"2021-07-30T13:12:50.6762461Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask506\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask505\",\"eTag\":\"0x8D9535BBBC19A05\",\"lastModified\":\"2021-07-30T13:12:50.6792453Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask505\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask504\",\"eTag\":\"0x8D9535BBBC1E831\",\"lastModified\":\"2021-07-30T13:12:50.6812465Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask504\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask503\",\"eTag\":\"0x8D9535BBBC2846C\",\"lastModified\":\"2021-07-30T13:12:50.685246Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask503\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask502\",\"eTag\":\"0x8D9535BBBC2D2A6\",\"lastModified\":\"2021-07-30T13:12:50.6872486Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask502\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask501\",\"eTag\":\"0x8D9535BBBC36ED5\",\"lastModified\":\"2021-07-30T13:12:50.6912469Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask501\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask500\",\"eTag\":\"0x8D9535BBBC40B27\",\"lastModified\":\"2021-07-30T13:12:50.6952487Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask500\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask499\",\"eTag\":\"0x8D9535BBBC4805A\",\"lastModified\":\"2021-07-30T13:12:50.698249Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask499\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask498\",\"eTag\":\"0x8D9535BBBC4F577\",\"lastModified\":\"2021-07-30T13:12:50.7012471Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask498\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask497\",\"eTag\":\"0x8D9535BBBC56AA7\",\"lastModified\":\"2021-07-30T13:12:50.7042471Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask497\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask496\",\"eTag\":\"0x8D9535BBBC5B8C7\",\"lastModified\":\"2021-07-30T13:12:50.7062471Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask496\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask495\",\"eTag\":\"0x8D9535BBBC62DF7\",\"lastModified\":\"2021-07-30T13:12:50.7092471Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask495\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask494\",\"eTag\":\"0x8D9535BBBC67C13\",\"lastModified\":\"2021-07-30T13:12:50.7112467Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask494\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask492\",\"eTag\":\"0x8D9535BBBC76687\",\"lastModified\":\"2021-07-30T13:12:50.7172487Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask492\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask493\",\"eTag\":\"0x8D9535BBBC73F64\",\"lastModified\":\"2021-07-30T13:12:50.7162468Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask493\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask491\",\"eTag\":\"0x8D9535BBBC829CE\",\"lastModified\":\"2021-07-30T13:12:50.7222478Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask491\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask490\",\"eTag\":\"0x8D9535BBBC89F13\",\"lastModified\":\"2021-07-30T13:12:50.7252499Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask490\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask489\",\"eTag\":\"0x8D9535BBBC9142C\",\"lastModified\":\"2021-07-30T13:12:50.7282476Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask489\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask488\",\"eTag\":\"0x8D9535BBBC9895D\",\"lastModified\":\"2021-07-30T13:12:50.7312477Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask488\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask487\",\"eTag\":\"0x8D9535BBBC9FE88\",\"lastModified\":\"2021-07-30T13:12:50.7342472Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask487\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask486\",\"eTag\":\"0x8D9535BBBCA73B4\",\"lastModified\":\"2021-07-30T13:12:50.7372468Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask486\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask485\",\"eTag\":\"0x8D9535BBBCAE912\",\"lastModified\":\"2021-07-30T13:12:50.7402514Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask485\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask484\",\"eTag\":\"0x8D9535BBBCB85B5\",\"lastModified\":\"2021-07-30T13:12:50.7442613Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask484\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask483\",\"eTag\":\"0x8D9535BBBCBD42B\",\"lastModified\":\"2021-07-30T13:12:50.7462699Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask483\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask532\",\"eTag\":\"0x8D9D6684CF4033C\",\"lastModified\":\"2022-01-13T07:42:50.5638716Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask532\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask531\",\"eTag\":\"0x8D9D6684CF4513A\",\"lastModified\":\"2022-01-13T07:42:50.5658682Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask531\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask530\",\"eTag\":\"0x8D9D6684CF49F7D\",\"lastModified\":\"2022-01-13T07:42:50.5678717Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask530\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask529\",\"eTag\":\"0x8D9D6684CF514BA\",\"lastModified\":\"2022-01-13T07:42:50.570873Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask529\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask524\",\"eTag\":\"0x8D9D6684CF9A898\",\"lastModified\":\"2022-01-13T07:42:50.6008728Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask524\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask525\",\"eTag\":\"0x8D9D6684CF8E579\",\"lastModified\":\"2022-01-13T07:42:50.5958777Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask525\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask526\",\"eTag\":\"0x8D9D6684CF8971D\",\"lastModified\":\"2022-01-13T07:42:50.5938717Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask526\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask527\",\"eTag\":\"0x8D9D6684CF7ACB4\",\"lastModified\":\"2022-01-13T07:42:50.5878708Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask527\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask528\",\"eTag\":\"0x8D9D6684CF589ED\",\"lastModified\":\"2022-01-13T07:42:50.5738733Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask528\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask522\",\"eTag\":\"0x8D9D6684CFAB9F2\",\"lastModified\":\"2022-01-13T07:42:50.6078706Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask522\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask516\",\"eTag\":\"0x8D9D6684CFEB19F\",\"lastModified\":\"2022-01-13T07:42:50.6338719Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask516\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask520\",\"eTag\":\"0x8D9D6684CFC40AC\",\"lastModified\":\"2022-01-13T07:42:50.6178732Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask520\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask521\",\"eTag\":\"0x8D9D6684CFBA44D\",\"lastModified\":\"2022-01-13T07:42:50.6138701Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask521\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask517\",\"eTag\":\"0x8D9D6684CFE1577\",\"lastModified\":\"2022-01-13T07:42:50.6298743Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask517\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask514\",\"eTag\":\"0x8D9D6684D008662\",\"lastModified\":\"2022-01-13T07:42:50.6458722Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask514\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask523\",\"eTag\":\"0x8D9D6684CF9F69F\",\"lastModified\":\"2022-01-13T07:42:50.6028703Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask523\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask519\",\"eTag\":\"0x8D9D6684CFCDCF5\",\"lastModified\":\"2022-01-13T07:42:50.6218741Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask519\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask513\",\"eTag\":\"0x8D9D6684D0170D5\",\"lastModified\":\"2022-01-13T07:42:50.6518741Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask513\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask518\",\"eTag\":\"0x8D9D6684CFD5217\",\"lastModified\":\"2022-01-13T07:42:50.6248727Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask518\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask511\",\"eTag\":\"0x8D9D6684D028241\",\"lastModified\":\"2022-01-13T07:42:50.6588737Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask511\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask507\",\"eTag\":\"0x8D9D6684D06EF2A\",\"lastModified\":\"2022-01-13T07:42:50.6878762Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask507\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask512\",\"eTag\":\"0x8D9D6684D020D0D\",\"lastModified\":\"2022-01-13T07:42:50.6558733Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask512\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask509\",\"eTag\":\"0x8D9D6684D042FF8\",\"lastModified\":\"2022-01-13T07:42:50.6698744Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask509\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask510\",\"eTag\":\"0x8D9D6684D0393AC\",\"lastModified\":\"2022-01-13T07:42:50.6658732Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask510\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask505\",\"eTag\":\"0x8D9D6684D08EAEF\",\"lastModified\":\"2022-01-13T07:42:50.7008751Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask505\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask515\",\"eTag\":\"0x8D9D6684CFF4DFA\",\"lastModified\":\"2022-01-13T07:42:50.6378746Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask515\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask508\",\"eTag\":\"0x8D9D6684D0604B6\",\"lastModified\":\"2022-01-13T07:42:50.6818742Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask508\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask506\",\"eTag\":\"0x8D9D6684D076442\",\"lastModified\":\"2022-01-13T07:42:50.6908738Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask506\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask502\",\"eTag\":\"0x8D9D6684D0B0DD7\",\"lastModified\":\"2022-01-13T07:42:50.7148759Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask502\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask503\",\"eTag\":\"0x8D9D6684D09FC5A\",\"lastModified\":\"2022-01-13T07:42:50.7078746Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask503\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask501\",\"eTag\":\"0x8D9D6684D0B34E6\",\"lastModified\":\"2022-01-13T07:42:50.7158758Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask501\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask496\",\"eTag\":\"0x8D9D6684D0F2C88\",\"lastModified\":\"2022-01-13T07:42:50.741876Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask496\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask498\",\"eTag\":\"0x8D9D6684D0D57C8\",\"lastModified\":\"2022-01-13T07:42:50.729876Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask498\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask499\",\"eTag\":\"0x8D9D6684D0CBB8D\",\"lastModified\":\"2022-01-13T07:42:50.7258765Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask499\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask497\",\"eTag\":\"0x8D9D6684D0E1B0C\",\"lastModified\":\"2022-01-13T07:42:50.7348748Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask497\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask504\",\"eTag\":\"0x8D9D6684D09AE1E\",\"lastModified\":\"2022-01-13T07:42:50.7058718Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask504\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask500\",\"eTag\":\"0x8D9D6684D0BF836\",\"lastModified\":\"2022-01-13T07:42:50.7208758Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask500\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask495\",\"eTag\":\"0x8D9D6684D0FA1BD\",\"lastModified\":\"2022-01-13T07:42:50.7448765Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask495\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask493\",\"eTag\":\"0x8D9D6684D10DA2D\",\"lastModified\":\"2022-01-13T07:42:50.7528749Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask493\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask494\",\"eTag\":\"0x8D9D6684D103E10\",\"lastModified\":\"2022-01-13T07:42:50.7488784Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask494\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask489\",\"eTag\":\"0x8D9D6684D14AAAF\",\"lastModified\":\"2022-01-13T07:42:50.7778735Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask489\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask492\",\"eTag\":\"0x8D9D6684D119D78\",\"lastModified\":\"2022-01-13T07:42:50.7578744Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask492\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask488\",\"eTag\":\"0x8D9D6684D160A57\",\"lastModified\":\"2022-01-13T07:42:50.7868759Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask488\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask490\",\"eTag\":\"0x8D9D6684D140E9D\",\"lastModified\":\"2022-01-13T07:42:50.7738781Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask490\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask491\",\"eTag\":\"0x8D9D6684D1260D0\",\"lastModified\":\"2022-01-13T07:42:50.7628752Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask491\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask485\",\"eTag\":\"0x8D9D6684D1A5020\",\"lastModified\":\"2022-01-13T07:42:50.8148768Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask485\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask483\",\"eTag\":\"0x8D9D6684D1B136F\",\"lastModified\":\"2022-01-13T07:42:50.8198767Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask483\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask486\",\"eTag\":\"0x8D9D6684D18C98F\",\"lastModified\":\"2022-01-13T07:42:50.8048783Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask486\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask487\",\"eTag\":\"0x8D9D6684D167FA0\",\"lastModified\":\"2022-01-13T07:42:50.7898784Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask487\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask484\",\"eTag\":\"0x8D9D6684D1A771C\",\"lastModified\":\"2022-01-13T07:42:50.8158748Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask484\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -51965,9 +51965,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:49 GMT + - Thu, 13 Jan 2022 07:42:52 GMT request-id: - - ec3fa3f6-6187-4d08-9037-ce6b890cdf52 + - 4d4322ca-8da0-4f92-bd60-c07bd9230a6d server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -57043,67 +57043,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:51 GMT + - Thu, 13 Jan 2022 07:42:52 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask482\",\"eTag\":\"0x8D9535BBC17EAB5\",\"lastModified\":\"2021-07-30T13:12:51.2449205Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask482\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask480\",\"eTag\":\"0x8D9535BBC18ADEB\",\"lastModified\":\"2021-07-30T13:12:51.2499179Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask480\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask481\",\"eTag\":\"0x8D9535BBC185FE7\",\"lastModified\":\"2021-07-30T13:12:51.2479207Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask481\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask479\",\"eTag\":\"0x8D9535BBC192336\",\"lastModified\":\"2021-07-30T13:12:51.2529206Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask479\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask478\",\"eTag\":\"0x8D9535BBC19E677\",\"lastModified\":\"2021-07-30T13:12:51.2579191Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask478\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask477\",\"eTag\":\"0x8D9535BBC1A82A8\",\"lastModified\":\"2021-07-30T13:12:51.2619176Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask477\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask476\",\"eTag\":\"0x8D9535BBC1B4617\",\"lastModified\":\"2021-07-30T13:12:51.2669207Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask476\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask475\",\"eTag\":\"0x8D9535BBC1B6D32\",\"lastModified\":\"2021-07-30T13:12:51.2679218Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask475\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask474\",\"eTag\":\"0x8D9535BBC1BE240\",\"lastModified\":\"2021-07-30T13:12:51.2709184Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask474\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask473\",\"eTag\":\"0x8D9535BBC1C3064\",\"lastModified\":\"2021-07-30T13:12:51.2729188Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask473\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask472\",\"eTag\":\"0x8D9535BBC1CA58F\",\"lastModified\":\"2021-07-30T13:12:51.2759183Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask472\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask471\",\"eTag\":\"0x8D9535BBC1CF3B6\",\"lastModified\":\"2021-07-30T13:12:51.277919Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask471\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask470\",\"eTag\":\"0x8D9535BBC1D68DC\",\"lastModified\":\"2021-07-30T13:12:51.280918Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask470\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask469\",\"eTag\":\"0x8D9535BBC1E2C32\",\"lastModified\":\"2021-07-30T13:12:51.2859186Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask469\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask468\",\"eTag\":\"0x8D9535BBC1EC85D\",\"lastModified\":\"2021-07-30T13:12:51.2899165Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask468\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask467\",\"eTag\":\"0x8D9535BBC1F168E\",\"lastModified\":\"2021-07-30T13:12:51.2919182Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask467\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask466\",\"eTag\":\"0x8D9535BBC1F8BDE\",\"lastModified\":\"2021-07-30T13:12:51.2949214Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask466\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask465\",\"eTag\":\"0x8D9535BBC2000FE\",\"lastModified\":\"2021-07-30T13:12:51.2979198Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask465\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask463\",\"eTag\":\"0x8D9535BBC20EB64\",\"lastModified\":\"2021-07-30T13:12:51.3039204Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask463\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask464\",\"eTag\":\"0x8D9535BBC20EB64\",\"lastModified\":\"2021-07-30T13:12:51.3039204Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask464\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask462\",\"eTag\":\"0x8D9535BBC21AE9D\",\"lastModified\":\"2021-07-30T13:12:51.3089181Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask462\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask461\",\"eTag\":\"0x8D9535BBC2223CC\",\"lastModified\":\"2021-07-30T13:12:51.311918Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask461\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask460\",\"eTag\":\"0x8D9535BBC2271FB\",\"lastModified\":\"2021-07-30T13:12:51.3139195Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask460\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask459\",\"eTag\":\"0x8D9535BBC230E38\",\"lastModified\":\"2021-07-30T13:12:51.3179192Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask459\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask458\",\"eTag\":\"0x8D9535BBC23836A\",\"lastModified\":\"2021-07-30T13:12:51.3209194Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask458\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask457\",\"eTag\":\"0x8D9535BBC23F898\",\"lastModified\":\"2021-07-30T13:12:51.3239192Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask457\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask456\",\"eTag\":\"0x8D9535BBC24BBE3\",\"lastModified\":\"2021-07-30T13:12:51.3289187Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask456\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask455\",\"eTag\":\"0x8D9535BBC253119\",\"lastModified\":\"2021-07-30T13:12:51.3319193Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask455\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask454\",\"eTag\":\"0x8D9535BBC25A63C\",\"lastModified\":\"2021-07-30T13:12:51.334918Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask454\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask453\",\"eTag\":\"0x8D9535BBC261B7C\",\"lastModified\":\"2021-07-30T13:12:51.3379196Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask453\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask452\",\"eTag\":\"0x8D9535BBC2690A1\",\"lastModified\":\"2021-07-30T13:12:51.3409185Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask452\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask451\",\"eTag\":\"0x8D9535BBC2705CF\",\"lastModified\":\"2021-07-30T13:12:51.3439183Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask451\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask450\",\"eTag\":\"0x8D9535BBC27C91A\",\"lastModified\":\"2021-07-30T13:12:51.3489178Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask450\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask449\",\"eTag\":\"0x8D9535BBC281748\",\"lastModified\":\"2021-07-30T13:12:51.3509192Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask449\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask448\",\"eTag\":\"0x8D9535BBC286569\",\"lastModified\":\"2021-07-30T13:12:51.3529193Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask448\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask447\",\"eTag\":\"0x8D9535BBC28DAB1\",\"lastModified\":\"2021-07-30T13:12:51.3559217Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask447\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask446\",\"eTag\":\"0x8D9535BBC294FCD\",\"lastModified\":\"2021-07-30T13:12:51.3589197Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask446\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask445\",\"eTag\":\"0x8D9535BBC29C4F1\",\"lastModified\":\"2021-07-30T13:12:51.3619185Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask445\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask444\",\"eTag\":\"0x8D9535BBC2A6149\",\"lastModified\":\"2021-07-30T13:12:51.3659209Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask444\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask443\",\"eTag\":\"0x8D9535BBC2AFD7B\",\"lastModified\":\"2021-07-30T13:12:51.3699195Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask443\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask442\",\"eTag\":\"0x8D9535BBC2B72B9\",\"lastModified\":\"2021-07-30T13:12:51.3729209Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask442\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask441\",\"eTag\":\"0x8D9535BBC2BC0D4\",\"lastModified\":\"2021-07-30T13:12:51.3749204Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask441\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask440\",\"eTag\":\"0x8D9535BBC2C5D0B\",\"lastModified\":\"2021-07-30T13:12:51.3789195Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask440\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask439\",\"eTag\":\"0x8D9535BBC2CAB31\",\"lastModified\":\"2021-07-30T13:12:51.3809201Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask439\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask438\",\"eTag\":\"0x8D9535BBC2D205B\",\"lastModified\":\"2021-07-30T13:12:51.3839195Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask438\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask437\",\"eTag\":\"0x8D9535BBC2D958F\",\"lastModified\":\"2021-07-30T13:12:51.3869199Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask437\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask436\",\"eTag\":\"0x8D9535BBC2E0AC7\",\"lastModified\":\"2021-07-30T13:12:51.3899207Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask436\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask435\",\"eTag\":\"0x8D9535BBC2EA717\",\"lastModified\":\"2021-07-30T13:12:51.3939223Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask435\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask434\",\"eTag\":\"0x8D9535BBC2F1C93\",\"lastModified\":\"2021-07-30T13:12:51.3969299Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask434\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask433\",\"eTag\":\"0x8D9535BBC2F6A4B\",\"lastModified\":\"2021-07-30T13:12:51.3989195Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask433\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask482\",\"eTag\":\"0x8D9D6684E2B3EA4\",\"lastModified\":\"2022-01-13T07:42:52.603562Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask482\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask481\",\"eTag\":\"0x8D9D6684E2B8CD8\",\"lastModified\":\"2022-01-13T07:42:52.605564Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask481\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask479\",\"eTag\":\"0x8D9D6684E2C772E\",\"lastModified\":\"2022-01-13T07:42:52.611563Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask479\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask480\",\"eTag\":\"0x8D9D6684E2C01FA\",\"lastModified\":\"2022-01-13T07:42:52.6085626Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask480\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask478\",\"eTag\":\"0x8D9D6684E2CEC63\",\"lastModified\":\"2022-01-13T07:42:52.6145635Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask478\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask477\",\"eTag\":\"0x8D9D6684E2D3A7E\",\"lastModified\":\"2022-01-13T07:42:52.616563Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask477\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask476\",\"eTag\":\"0x8D9D6684E2DAFA8\",\"lastModified\":\"2022-01-13T07:42:52.6195624Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask476\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask475\",\"eTag\":\"0x8D9D6684E2DFDE3\",\"lastModified\":\"2022-01-13T07:42:52.6215651Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask475\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask474\",\"eTag\":\"0x8D9D6684E2EC138\",\"lastModified\":\"2022-01-13T07:42:52.6265656Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask474\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask473\",\"eTag\":\"0x8D9D6684E2F0F5D\",\"lastModified\":\"2022-01-13T07:42:52.6285661Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask473\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask471\",\"eTag\":\"0x8D9D6684E3020AB\",\"lastModified\":\"2022-01-13T07:42:52.6355627Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask471\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask472\",\"eTag\":\"0x8D9D6684E3020AB\",\"lastModified\":\"2022-01-13T07:42:52.6355627Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask472\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask470\",\"eTag\":\"0x8D9D6684E310B0A\",\"lastModified\":\"2022-01-13T07:42:52.6415626Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask470\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask469\",\"eTag\":\"0x8D9D6684E315942\",\"lastModified\":\"2022-01-13T07:42:52.643565Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask469\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask467\",\"eTag\":\"0x8D9D6684E31CE7E\",\"lastModified\":\"2022-01-13T07:42:52.6465662Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask467\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask468\",\"eTag\":\"0x8D9D6684E31CE7E\",\"lastModified\":\"2022-01-13T07:42:52.6465662Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask468\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask466\",\"eTag\":\"0x8D9D6684E3291AC\",\"lastModified\":\"2022-01-13T07:42:52.6515628Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask466\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask465\",\"eTag\":\"0x8D9D6684E32DFF7\",\"lastModified\":\"2022-01-13T07:42:52.6535671Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask465\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask464\",\"eTag\":\"0x8D9D6684E33550C\",\"lastModified\":\"2022-01-13T07:42:52.6565644Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask464\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask463\",\"eTag\":\"0x8D9D6684E33A33C\",\"lastModified\":\"2022-01-13T07:42:52.658566Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask463\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask462\",\"eTag\":\"0x8D9D6684E343F60\",\"lastModified\":\"2022-01-13T07:42:52.6625632Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask462\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask461\",\"eTag\":\"0x8D9D6684E348D93\",\"lastModified\":\"2022-01-13T07:42:52.6645651Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask461\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask460\",\"eTag\":\"0x8D9D6684E3502C6\",\"lastModified\":\"2022-01-13T07:42:52.6675654Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask460\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask459\",\"eTag\":\"0x8D9D6684E359F09\",\"lastModified\":\"2022-01-13T07:42:52.6715657Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask459\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask458\",\"eTag\":\"0x8D9D6684E363B42\",\"lastModified\":\"2022-01-13T07:42:52.675565Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask458\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask457\",\"eTag\":\"0x8D9D6684E36896B\",\"lastModified\":\"2022-01-13T07:42:52.6775659Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask457\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask456\",\"eTag\":\"0x8D9D6684E372594\",\"lastModified\":\"2022-01-13T07:42:52.6815636Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask456\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask455\",\"eTag\":\"0x8D9D6684E3773C8\",\"lastModified\":\"2022-01-13T07:42:52.6835656Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask455\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask454\",\"eTag\":\"0x8D9D6684E37E8F6\",\"lastModified\":\"2022-01-13T07:42:52.6865654Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask454\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask453\",\"eTag\":\"0x8D9D6684E385E1F\",\"lastModified\":\"2022-01-13T07:42:52.6895647Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask453\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask452\",\"eTag\":\"0x8D9D6684E39216B\",\"lastModified\":\"2022-01-13T07:42:52.6945643Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask452\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask451\",\"eTag\":\"0x8D9D6684E396F9F\",\"lastModified\":\"2022-01-13T07:42:52.6965663Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask451\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask450\",\"eTag\":\"0x8D9D6684E39E4BC\",\"lastModified\":\"2022-01-13T07:42:52.6995644Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask450\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask449\",\"eTag\":\"0x8D9D6684E3A32EF\",\"lastModified\":\"2022-01-13T07:42:52.7015663Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask449\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask448\",\"eTag\":\"0x8D9D6684E3ACF2A\",\"lastModified\":\"2022-01-13T07:42:52.7055658Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask448\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask447\",\"eTag\":\"0x8D9D6684E3AF64A\",\"lastModified\":\"2022-01-13T07:42:52.7065674Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask447\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask446\",\"eTag\":\"0x8D9D6684E3B9269\",\"lastModified\":\"2022-01-13T07:42:52.7105641Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask446\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask445\",\"eTag\":\"0x8D9D6684E3BE09E\",\"lastModified\":\"2022-01-13T07:42:52.7125662Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask445\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask444\",\"eTag\":\"0x8D9D6684E3C7CE0\",\"lastModified\":\"2022-01-13T07:42:52.7165664Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask444\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask443\",\"eTag\":\"0x8D9D6684E3D1909\",\"lastModified\":\"2022-01-13T07:42:52.7205641Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask443\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask442\",\"eTag\":\"0x8D9D6684E3D8E46\",\"lastModified\":\"2022-01-13T07:42:52.7235654Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask442\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask441\",\"eTag\":\"0x8D9D6684E3DB565\",\"lastModified\":\"2022-01-13T07:42:52.7245669Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask441\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask440\",\"eTag\":\"0x8D9D6684E3E5194\",\"lastModified\":\"2022-01-13T07:42:52.7285652Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask440\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask439\",\"eTag\":\"0x8D9D6684E3E9FB0\",\"lastModified\":\"2022-01-13T07:42:52.7305648Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask439\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask438\",\"eTag\":\"0x8D9D6684E3F14DC\",\"lastModified\":\"2022-01-13T07:42:52.7335644Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask438\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask437\",\"eTag\":\"0x8D9D6684E3F6313\",\"lastModified\":\"2022-01-13T07:42:52.7355667Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask437\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask434\",\"eTag\":\"0x8D9D6684E4110CC\",\"lastModified\":\"2022-01-13T07:42:52.7465676Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask434\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask433\",\"eTag\":\"0x8D9D6684E415EE8\",\"lastModified\":\"2022-01-13T07:42:52.7485672Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask433\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask435\",\"eTag\":\"0x8D9D6684E404D6C\",\"lastModified\":\"2022-01-13T07:42:52.741566Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask435\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask436\",\"eTag\":\"0x8D9D6684E3FD862\",\"lastModified\":\"2022-01-13T07:42:52.7385698Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask436\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -57111,9 +57111,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:50 GMT + - Thu, 13 Jan 2022 07:42:52 GMT request-id: - - da814dc5-c297-4d13-a899-664c18be7050 + - ad12523d-5d68-4c8c-89cd-6bcf0a0d5a1b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -62189,67 +62189,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:51 GMT + - Thu, 13 Jan 2022 07:42:53 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask432\",\"eTag\":\"0x8D9535BBC7A4FF1\",\"lastModified\":\"2021-07-30T13:12:51.8897649Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask432\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask431\",\"eTag\":\"0x8D9535BBC7BAFAA\",\"lastModified\":\"2021-07-30T13:12:51.898769Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask431\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask430\",\"eTag\":\"0x8D9535BBC7C72E6\",\"lastModified\":\"2021-07-30T13:12:51.903767Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask430\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask429\",\"eTag\":\"0x8D9535BBC7D0F27\",\"lastModified\":\"2021-07-30T13:12:51.9077671Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask429\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask428\",\"eTag\":\"0x8D9535BBC7DF994\",\"lastModified\":\"2021-07-30T13:12:51.9137684Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask428\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask427\",\"eTag\":\"0x8D9535BBC7F31F5\",\"lastModified\":\"2021-07-30T13:12:51.9217653Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask427\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask426\",\"eTag\":\"0x8D9535BBC7FF556\",\"lastModified\":\"2021-07-30T13:12:51.926767Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask426\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask425\",\"eTag\":\"0x8D9535BBC806A7A\",\"lastModified\":\"2021-07-30T13:12:51.9297658Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask425\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask424\",\"eTag\":\"0x8D9535BBC8106C1\",\"lastModified\":\"2021-07-30T13:12:51.9337665Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask424\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask423\",\"eTag\":\"0x8D9535BBC8154F7\",\"lastModified\":\"2021-07-30T13:12:51.9357687Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask423\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask422\",\"eTag\":\"0x8D9535BBC81CA08\",\"lastModified\":\"2021-07-30T13:12:51.9387656Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask422\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask421\",\"eTag\":\"0x8D9535BBC83028B\",\"lastModified\":\"2021-07-30T13:12:51.9467659Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask421\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask420\",\"eTag\":\"0x8D9535BBC832999\",\"lastModified\":\"2021-07-30T13:12:51.9477657Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask420\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask419\",\"eTag\":\"0x8D9535BBC84B046\",\"lastModified\":\"2021-07-30T13:12:51.957767Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask419\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask418\",\"eTag\":\"0x8D9535BBC854C84\",\"lastModified\":\"2021-07-30T13:12:51.9617668Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask418\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask417\",\"eTag\":\"0x8D9535BBC860FD2\",\"lastModified\":\"2021-07-30T13:12:51.9667666Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask417\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask416\",\"eTag\":\"0x8D9535BBC868504\",\"lastModified\":\"2021-07-30T13:12:51.9697668Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask416\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask415\",\"eTag\":\"0x8D9535BBC880BBB\",\"lastModified\":\"2021-07-30T13:12:51.9797691Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask415\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask414\",\"eTag\":\"0x8D9535BBC88A7F6\",\"lastModified\":\"2021-07-30T13:12:51.9837686Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask414\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask413\",\"eTag\":\"0x8D9535BBC89E074\",\"lastModified\":\"2021-07-30T13:12:51.9917684Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask413\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask412\",\"eTag\":\"0x8D9535BBC8B8E2A\",\"lastModified\":\"2021-07-30T13:12:52.002769Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask412\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask411\",\"eTag\":\"0x8D9535BBC8C2A62\",\"lastModified\":\"2021-07-30T13:12:52.0067682Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask411\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask410\",\"eTag\":\"0x8D9535BBC8D89FE\",\"lastModified\":\"2021-07-30T13:12:52.0157694Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask410\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask409\",\"eTag\":\"0x8D9535BBC8E745C\",\"lastModified\":\"2021-07-30T13:12:52.0217692Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask409\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask408\",\"eTag\":\"0x8D9535BBC8FACB7\",\"lastModified\":\"2021-07-30T13:12:52.0297655Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask408\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask407\",\"eTag\":\"0x8D9535BBC904904\",\"lastModified\":\"2021-07-30T13:12:52.0337668Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask407\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask406\",\"eTag\":\"0x8D9535BBC910C55\",\"lastModified\":\"2021-07-30T13:12:52.0387669Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask406\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask405\",\"eTag\":\"0x8D9535BBC91A8B0\",\"lastModified\":\"2021-07-30T13:12:52.0427696Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask405\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask404\",\"eTag\":\"0x8D9535BBC9244FD\",\"lastModified\":\"2021-07-30T13:12:52.0467709Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask404\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask403\",\"eTag\":\"0x8D9535BBC93564D\",\"lastModified\":\"2021-07-30T13:12:52.0537677Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask403\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask402\",\"eTag\":\"0x8D9535BBC93CB7E\",\"lastModified\":\"2021-07-30T13:12:52.0567678Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask402\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask401\",\"eTag\":\"0x8D9535BBC948EF3\",\"lastModified\":\"2021-07-30T13:12:52.0617715Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask401\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask400\",\"eTag\":\"0x8D9535BBC963C8C\",\"lastModified\":\"2021-07-30T13:12:52.0727692Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask400\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask399\",\"eTag\":\"0x8D9535BBC96638A\",\"lastModified\":\"2021-07-30T13:12:52.0737674Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask399\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask398\",\"eTag\":\"0x8D9535BBC96B1B5\",\"lastModified\":\"2021-07-30T13:12:52.0757685Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask398\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask397\",\"eTag\":\"0x8D9535BBC9726E2\",\"lastModified\":\"2021-07-30T13:12:52.0787682Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask397\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask396\",\"eTag\":\"0x8D9535BBC979C17\",\"lastModified\":\"2021-07-30T13:12:52.0817687Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask396\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask395\",\"eTag\":\"0x8D9535BBC97EA5C\",\"lastModified\":\"2021-07-30T13:12:52.0837724Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask395\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask394\",\"eTag\":\"0x8D9535BBC988689\",\"lastModified\":\"2021-07-30T13:12:52.0877705Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask394\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask393\",\"eTag\":\"0x8D9535BBC9949D0\",\"lastModified\":\"2021-07-30T13:12:52.0927696Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask393\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask392\",\"eTag\":\"0x8D9535BBC99BEFA\",\"lastModified\":\"2021-07-30T13:12:52.095769Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask392\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask391\",\"eTag\":\"0x8D9535BBC9A342B\",\"lastModified\":\"2021-07-30T13:12:52.0987691Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask391\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask390\",\"eTag\":\"0x8D9535BBC9AA964\",\"lastModified\":\"2021-07-30T13:12:52.10177Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask390\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask389\",\"eTag\":\"0x8D9535BBC9B1E8A\",\"lastModified\":\"2021-07-30T13:12:52.104769Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask389\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask388\",\"eTag\":\"0x8D9535BBC9BBAD5\",\"lastModified\":\"2021-07-30T13:12:52.1087701Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask388\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask387\",\"eTag\":\"0x8D9535BBC9C08EB\",\"lastModified\":\"2021-07-30T13:12:52.1107691Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask387\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask386\",\"eTag\":\"0x8D9535BBC9CCC44\",\"lastModified\":\"2021-07-30T13:12:52.11577Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask386\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask385\",\"eTag\":\"0x8D9535BBC9D4171\",\"lastModified\":\"2021-07-30T13:12:52.1187697Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask385\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask384\",\"eTag\":\"0x8D9535BBC9DB6EB\",\"lastModified\":\"2021-07-30T13:12:52.1217771Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask384\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask383\",\"eTag\":\"0x8D9535BBC9E04B9\",\"lastModified\":\"2021-07-30T13:12:52.1237689Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask383\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask431\",\"eTag\":\"0x8D9D6684E7F5B9E\",\"lastModified\":\"2022-01-13T07:42:53.1548062Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask431\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask432\",\"eTag\":\"0x8D9D6684E7EE65E\",\"lastModified\":\"2022-01-13T07:42:53.1518046Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask432\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask430\",\"eTag\":\"0x8D9D6684E801EED\",\"lastModified\":\"2022-01-13T07:42:53.1598061Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask430\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask429\",\"eTag\":\"0x8D9D6684E80942E\",\"lastModified\":\"2022-01-13T07:42:53.1628078Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask429\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask428\",\"eTag\":\"0x8D9D6684E815776\",\"lastModified\":\"2022-01-13T07:42:53.167807Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask428\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask427\",\"eTag\":\"0x8D9D6684E81CCBD\",\"lastModified\":\"2022-01-13T07:42:53.1708093Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask427\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask426\",\"eTag\":\"0x8D9D6684E828FF6\",\"lastModified\":\"2022-01-13T07:42:53.175807Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask426\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask425\",\"eTag\":\"0x8D9D6684E83052D\",\"lastModified\":\"2022-01-13T07:42:53.1788077Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask425\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask424\",\"eTag\":\"0x8D9D6684E83A162\",\"lastModified\":\"2022-01-13T07:42:53.1828066Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask424\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask423\",\"eTag\":\"0x8D9D6684E8416B3\",\"lastModified\":\"2022-01-13T07:42:53.1858099Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask423\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask422\",\"eTag\":\"0x8D9D6684E84D9FA\",\"lastModified\":\"2022-01-13T07:42:53.190809Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask422\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask421\",\"eTag\":\"0x8D9D6684E859D28\",\"lastModified\":\"2022-01-13T07:42:53.1958056Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask421\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask420\",\"eTag\":\"0x8D9D6684E86AED8\",\"lastModified\":\"2022-01-13T07:42:53.202812Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask420\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask419\",\"eTag\":\"0x8D9D6684E86D5B9\",\"lastModified\":\"2022-01-13T07:42:53.2038073Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask419\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask418\",\"eTag\":\"0x8D9D6684E879908\",\"lastModified\":\"2022-01-13T07:42:53.2088072Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask418\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask417\",\"eTag\":\"0x8D9D6684E880E3C\",\"lastModified\":\"2022-01-13T07:42:53.2118076Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask417\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask415\",\"eTag\":\"0x8D9D6684E891FA6\",\"lastModified\":\"2022-01-13T07:42:53.218807Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask415\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask416\",\"eTag\":\"0x8D9D6684E88AA70\",\"lastModified\":\"2022-01-13T07:42:53.2158064Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask416\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask412\",\"eTag\":\"0x8D9D6684E8ACD6B\",\"lastModified\":\"2022-01-13T07:42:53.2298091Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask412\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask413\",\"eTag\":\"0x8D9D6684E8A7F43\",\"lastModified\":\"2022-01-13T07:42:53.2278083Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask413\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask411\",\"eTag\":\"0x8D9D6684E8B6999\",\"lastModified\":\"2022-01-13T07:42:53.2338073Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask411\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask414\",\"eTag\":\"0x8D9D6684E8B42B9\",\"lastModified\":\"2022-01-13T07:42:53.2328121Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask414\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask410\",\"eTag\":\"0x8D9D6684E8BDEE3\",\"lastModified\":\"2022-01-13T07:42:53.2368099Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask410\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask409\",\"eTag\":\"0x8D9D6684E8CF054\",\"lastModified\":\"2022-01-13T07:42:53.24381Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask409\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask408\",\"eTag\":\"0x8D9D6684E8D8C8B\",\"lastModified\":\"2022-01-13T07:42:53.2478091Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask408\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask407\",\"eTag\":\"0x8D9D6684E8E76F8\",\"lastModified\":\"2022-01-13T07:42:53.2538104Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask407\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask406\",\"eTag\":\"0x8D9D6684E8E9DF0\",\"lastModified\":\"2022-01-13T07:42:53.254808Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask406\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask405\",\"eTag\":\"0x8D9D6684E8F6153\",\"lastModified\":\"2022-01-13T07:42:53.2598099Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask405\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask404\",\"eTag\":\"0x8D9D6684E8F8854\",\"lastModified\":\"2022-01-13T07:42:53.2608084Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask404\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask402\",\"eTag\":\"0x8D9D6684E913604\",\"lastModified\":\"2022-01-13T07:42:53.2718084Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask402\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask403\",\"eTag\":\"0x8D9D6684E904BAF\",\"lastModified\":\"2022-01-13T07:42:53.2658095Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask403\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask401\",\"eTag\":\"0x8D9D6684E91AB32\",\"lastModified\":\"2022-01-13T07:42:53.2748082Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask401\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask400\",\"eTag\":\"0x8D9D6684E91F954\",\"lastModified\":\"2022-01-13T07:42:53.2768084Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask400\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask399\",\"eTag\":\"0x8D9D6684E926E8B\",\"lastModified\":\"2022-01-13T07:42:53.2798091Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask399\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask397\",\"eTag\":\"0x8D9D6684E9358F4\",\"lastModified\":\"2022-01-13T07:42:53.28581Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask397\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask398\",\"eTag\":\"0x8D9D6684E92BCB2\",\"lastModified\":\"2022-01-13T07:42:53.2818098Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask398\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask396\",\"eTag\":\"0x8D9D6684E93CE2A\",\"lastModified\":\"2022-01-13T07:42:53.2888106Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask396\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask395\",\"eTag\":\"0x8D9D6684E94B886\",\"lastModified\":\"2022-01-13T07:42:53.2948102Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask395\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask394\",\"eTag\":\"0x8D9D6684E94DF8E\",\"lastModified\":\"2022-01-13T07:42:53.2958094Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask394\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask393\",\"eTag\":\"0x8D9D6684E95C9EB\",\"lastModified\":\"2022-01-13T07:42:53.3018091Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask393\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask391\",\"eTag\":\"0x8D9D6684E966643\",\"lastModified\":\"2022-01-13T07:42:53.3058115Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask391\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask390\",\"eTag\":\"0x8D9D6684E970292\",\"lastModified\":\"2022-01-13T07:42:53.309813Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask390\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask389\",\"eTag\":\"0x8D9D6684E97C5AC\",\"lastModified\":\"2022-01-13T07:42:53.3148076Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask389\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask392\",\"eTag\":\"0x8D9D6684E95F113\",\"lastModified\":\"2022-01-13T07:42:53.3028115Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask392\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask388\",\"eTag\":\"0x8D9D6684E9813ED\",\"lastModified\":\"2022-01-13T07:42:53.3168109Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask388\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask387\",\"eTag\":\"0x8D9D6684E98D71F\",\"lastModified\":\"2022-01-13T07:42:53.3218079Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask387\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask386\",\"eTag\":\"0x8D9D6684E99E894\",\"lastModified\":\"2022-01-13T07:42:53.3288084Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask386\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask385\",\"eTag\":\"0x8D9D6684E99E894\",\"lastModified\":\"2022-01-13T07:42:53.3288084Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask385\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask384\",\"eTag\":\"0x8D9D6684E9B211F\",\"lastModified\":\"2022-01-13T07:42:53.3368095Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask384\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask383\",\"eTag\":\"0x8D9D6684E9B964C\",\"lastModified\":\"2022-01-13T07:42:53.3398092Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask383\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -62257,9 +62257,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:51 GMT + - Thu, 13 Jan 2022 07:42:53 GMT request-id: - - 47ba0fce-b548-4630-9d74-00d7ac787fde + - b53197a0-9823-4ae2-9fc1-50fec5921b5b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -67335,67 +67335,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:52 GMT + - Thu, 13 Jan 2022 07:42:53 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask382\",\"eTag\":\"0x8D9535BBCE517E7\",\"lastModified\":\"2021-07-30T13:12:52.5895655Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask382\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask381\",\"eTag\":\"0x8D9535BBCE517E7\",\"lastModified\":\"2021-07-30T13:12:52.5895655Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask381\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask380\",\"eTag\":\"0x8D9535BBCE60262\",\"lastModified\":\"2021-07-30T13:12:52.5955682Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask380\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask379\",\"eTag\":\"0x8D9535BBCE69E90\",\"lastModified\":\"2021-07-30T13:12:52.5995664Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask379\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask378\",\"eTag\":\"0x8D9535BBCE713CF\",\"lastModified\":\"2021-07-30T13:12:52.6025679Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask378\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask377\",\"eTag\":\"0x8D9535BBCE788E5\",\"lastModified\":\"2021-07-30T13:12:52.6055653Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask377\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask376\",\"eTag\":\"0x8D9535BBCE7D710\",\"lastModified\":\"2021-07-30T13:12:52.6075664Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask376\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask374\",\"eTag\":\"0x8D9535BBCE9D2D6\",\"lastModified\":\"2021-07-30T13:12:52.6205654Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask374\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask375\",\"eTag\":\"0x8D9535BBCE9D2D6\",\"lastModified\":\"2021-07-30T13:12:52.6205654Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask375\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask373\",\"eTag\":\"0x8D9535BBCEA9628\",\"lastModified\":\"2021-07-30T13:12:52.6255656Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask373\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask372\",\"eTag\":\"0x8D9535BBCEB0B6C\",\"lastModified\":\"2021-07-30T13:12:52.6285676Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask372\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask371\",\"eTag\":\"0x8D9535BBCEB598E\",\"lastModified\":\"2021-07-30T13:12:52.6305678Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask371\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask370\",\"eTag\":\"0x8D9535BBCEBCECB\",\"lastModified\":\"2021-07-30T13:12:52.6335691Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask370\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask369\",\"eTag\":\"0x8D9535BBCEC43E8\",\"lastModified\":\"2021-07-30T13:12:52.6365672Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask369\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask368\",\"eTag\":\"0x8D9535BBCECB906\",\"lastModified\":\"2021-07-30T13:12:52.6395654Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask368\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask367\",\"eTag\":\"0x8D9535BBCED0734\",\"lastModified\":\"2021-07-30T13:12:52.6415668Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask367\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask366\",\"eTag\":\"0x8D9535BBCEDCA6B\",\"lastModified\":\"2021-07-30T13:12:52.6465643Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask366\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask365\",\"eTag\":\"0x8D9535BBCEE66E1\",\"lastModified\":\"2021-07-30T13:12:52.6505697Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask365\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask364\",\"eTag\":\"0x8D9535BBCEEDC0C\",\"lastModified\":\"2021-07-30T13:12:52.6535692Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask364\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask363\",\"eTag\":\"0x8D9535BBCF01473\",\"lastModified\":\"2021-07-30T13:12:52.6615667Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask363\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask361\",\"eTag\":\"0x8D9535BBCF0629A\",\"lastModified\":\"2021-07-30T13:12:52.6635674Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask361\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask362\",\"eTag\":\"0x8D9535BBCF03B97\",\"lastModified\":\"2021-07-30T13:12:52.6625687Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask362\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask360\",\"eTag\":\"0x8D9535BBCF089AB\",\"lastModified\":\"2021-07-30T13:12:52.6645675Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask360\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask359\",\"eTag\":\"0x8D9535BBCF0D7C4\",\"lastModified\":\"2021-07-30T13:12:52.6665668Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask359\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask358\",\"eTag\":\"0x8D9535BBCF173FB\",\"lastModified\":\"2021-07-30T13:12:52.6705659Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask358\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask357\",\"eTag\":\"0x8D9535BBCF19B1D\",\"lastModified\":\"2021-07-30T13:12:52.6715677Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask357\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask356\",\"eTag\":\"0x8D9535BBCF28574\",\"lastModified\":\"2021-07-30T13:12:52.6775668Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask356\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask355\",\"eTag\":\"0x8D9535BBCF2FA9F\",\"lastModified\":\"2021-07-30T13:12:52.6805663Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask355\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask354\",\"eTag\":\"0x8D9535BBCF348BF\",\"lastModified\":\"2021-07-30T13:12:52.6825663Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask354\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask353\",\"eTag\":\"0x8D9535BBCF3BDF4\",\"lastModified\":\"2021-07-30T13:12:52.6855668Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask353\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask352\",\"eTag\":\"0x8D9535BBCF4332D\",\"lastModified\":\"2021-07-30T13:12:52.6885677Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask352\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask351\",\"eTag\":\"0x8D9535BBCF48164\",\"lastModified\":\"2021-07-30T13:12:52.69057Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask351\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask350\",\"eTag\":\"0x8D9535BBCF56B9B\",\"lastModified\":\"2021-07-30T13:12:52.6965659Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask350\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask349\",\"eTag\":\"0x8D9535BBCF5B9CD\",\"lastModified\":\"2021-07-30T13:12:52.6985677Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask349\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask348\",\"eTag\":\"0x8D9535BBCF62EF0\",\"lastModified\":\"2021-07-30T13:12:52.7015664Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask348\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask347\",\"eTag\":\"0x8D9535BBCF67D19\",\"lastModified\":\"2021-07-30T13:12:52.7035673Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask347\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask346\",\"eTag\":\"0x8D9535BBCF7DCA8\",\"lastModified\":\"2021-07-30T13:12:52.7125672Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask346\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask344\",\"eTag\":\"0x8D9535BBCF803C7\",\"lastModified\":\"2021-07-30T13:12:52.7135687Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask344\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask345\",\"eTag\":\"0x8D9535BBCF803C7\",\"lastModified\":\"2021-07-30T13:12:52.7135687Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask345\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask343\",\"eTag\":\"0x8D9535BBCF82ADA\",\"lastModified\":\"2021-07-30T13:12:52.714569Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask343\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask342\",\"eTag\":\"0x8D9535BBCF8A00A\",\"lastModified\":\"2021-07-30T13:12:52.717569Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask342\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask341\",\"eTag\":\"0x8D9535BBCF93C45\",\"lastModified\":\"2021-07-30T13:12:52.7215685Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask341\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask340\",\"eTag\":\"0x8D9535BBCF9D89A\",\"lastModified\":\"2021-07-30T13:12:52.7255706Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask340\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask339\",\"eTag\":\"0x8D9535BBCFA4DB9\",\"lastModified\":\"2021-07-30T13:12:52.7285689Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask339\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask338\",\"eTag\":\"0x8D9535BBCFA9BC3\",\"lastModified\":\"2021-07-30T13:12:52.7305667Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask338\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask337\",\"eTag\":\"0x8D9535BBCFB10EA\",\"lastModified\":\"2021-07-30T13:12:52.7335658Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask337\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask336\",\"eTag\":\"0x8D9535BBCFBAD53\",\"lastModified\":\"2021-07-30T13:12:52.7375699Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask336\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask335\",\"eTag\":\"0x8D9535BBCFC4980\",\"lastModified\":\"2021-07-30T13:12:52.741568Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask335\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask334\",\"eTag\":\"0x8D9535BBCFC97AD\",\"lastModified\":\"2021-07-30T13:12:52.7435693Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask334\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask333\",\"eTag\":\"0x8D9535BBCFD0CCD\",\"lastModified\":\"2021-07-30T13:12:52.7465677Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask333\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask382\",\"eTag\":\"0x8D9D6684ED58F2F\",\"lastModified\":\"2022-01-13T07:42:53.7197359Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask382\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask381\",\"eTag\":\"0x8D9D6684ED6A0B1\",\"lastModified\":\"2022-01-13T07:42:53.7267377Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask381\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask380\",\"eTag\":\"0x8D9D6684ED6EEE1\",\"lastModified\":\"2022-01-13T07:42:53.7287393Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask380\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask377\",\"eTag\":\"0x8D9D6684ED84E5A\",\"lastModified\":\"2022-01-13T07:42:53.737737Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask377\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask379\",\"eTag\":\"0x8D9D6684ED6EEE1\",\"lastModified\":\"2022-01-13T07:42:53.7287393Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask379\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask378\",\"eTag\":\"0x8D9D6684ED84E5A\",\"lastModified\":\"2022-01-13T07:42:53.737737Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask378\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask376\",\"eTag\":\"0x8D9D6684ED95FC5\",\"lastModified\":\"2022-01-13T07:42:53.7447365Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask376\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask375\",\"eTag\":\"0x8D9D6684ED9ADFF\",\"lastModified\":\"2022-01-13T07:42:53.7467391Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask375\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask374\",\"eTag\":\"0x8D9D6684EDA232B\",\"lastModified\":\"2022-01-13T07:42:53.7497387Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask374\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask373\",\"eTag\":\"0x8D9D6684EDA984A\",\"lastModified\":\"2022-01-13T07:42:53.752737Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask373\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask372\",\"eTag\":\"0x8D9D6684EDB0D7A\",\"lastModified\":\"2022-01-13T07:42:53.755737Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask372\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask371\",\"eTag\":\"0x8D9D6684EDB5BB0\",\"lastModified\":\"2022-01-13T07:42:53.7577392Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask371\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask370\",\"eTag\":\"0x8D9D6684EDC1F1D\",\"lastModified\":\"2022-01-13T07:42:53.7627421Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask370\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask369\",\"eTag\":\"0x8D9D6684EDC4607\",\"lastModified\":\"2022-01-13T07:42:53.7637383Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask369\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask368\",\"eTag\":\"0x8D9D6684EDD7E8B\",\"lastModified\":\"2022-01-13T07:42:53.7717387Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask368\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask367\",\"eTag\":\"0x8D9D6684EDDA58F\",\"lastModified\":\"2022-01-13T07:42:53.7727375Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask367\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask366\",\"eTag\":\"0x8D9D6684EDE1AC0\",\"lastModified\":\"2022-01-13T07:42:53.7757376Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask366\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask365\",\"eTag\":\"0x8D9D6684EDE8FFC\",\"lastModified\":\"2022-01-13T07:42:53.7787388Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask365\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask364\",\"eTag\":\"0x8D9D6684EDEDE05\",\"lastModified\":\"2022-01-13T07:42:53.7807365Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask364\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask363\",\"eTag\":\"0x8D9D6684EDF2C47\",\"lastModified\":\"2022-01-13T07:42:53.7827399Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask363\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask362\",\"eTag\":\"0x8D9D6684EDFC87D\",\"lastModified\":\"2022-01-13T07:42:53.7867389Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask362\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask361\",\"eTag\":\"0x8D9D6684EE0169B\",\"lastModified\":\"2022-01-13T07:42:53.7887387Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask361\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask360\",\"eTag\":\"0x8D9D6684EE100F4\",\"lastModified\":\"2022-01-13T07:42:53.794738Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask360\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask359\",\"eTag\":\"0x8D9D6684EE17639\",\"lastModified\":\"2022-01-13T07:42:53.7977401Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask359\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask358\",\"eTag\":\"0x8D9D6684EE1EB60\",\"lastModified\":\"2022-01-13T07:42:53.8007392Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask358\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask356\",\"eTag\":\"0x8D9D6684EE2879C\",\"lastModified\":\"2022-01-13T07:42:53.8047388Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask356\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask357\",\"eTag\":\"0x8D9D6684EE26087\",\"lastModified\":\"2022-01-13T07:42:53.8037383Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask357\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask355\",\"eTag\":\"0x8D9D6684EE2FCDE\",\"lastModified\":\"2022-01-13T07:42:53.8077406Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask355\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask354\",\"eTag\":\"0x8D9D6684EE3993E\",\"lastModified\":\"2022-01-13T07:42:53.8117438Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask354\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask348\",\"eTag\":\"0x8D9D6684EE60A17\",\"lastModified\":\"2022-01-13T07:42:53.8277399Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask348\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask350\",\"eTag\":\"0x8D9D6684EE51FAB\",\"lastModified\":\"2022-01-13T07:42:53.8217387Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask350\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask349\",\"eTag\":\"0x8D9D6684EE594D1\",\"lastModified\":\"2022-01-13T07:42:53.8247377Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask349\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask347\",\"eTag\":\"0x8D9D6684EE63130\",\"lastModified\":\"2022-01-13T07:42:53.8287408Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask347\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask353\",\"eTag\":\"0x8D9D6684EE3C02D\",\"lastModified\":\"2022-01-13T07:42:53.8127405Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask353\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask345\",\"eTag\":\"0x8D9D6684EE74299\",\"lastModified\":\"2022-01-13T07:42:53.8357401Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask345\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask351\",\"eTag\":\"0x8D9D6684EE4F8A2\",\"lastModified\":\"2022-01-13T07:42:53.8207394Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask351\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask346\",\"eTag\":\"0x8D9D6684EE6CD5A\",\"lastModified\":\"2022-01-13T07:42:53.8327386Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask346\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask352\",\"eTag\":\"0x8D9D6684EE43562\",\"lastModified\":\"2022-01-13T07:42:53.815741Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask352\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask344\",\"eTag\":\"0x8D9D6684EE790C1\",\"lastModified\":\"2022-01-13T07:42:53.8377409Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask344\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask343\",\"eTag\":\"0x8D9D6684EE85406\",\"lastModified\":\"2022-01-13T07:42:53.8427398Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask343\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask342\",\"eTag\":\"0x8D9D6684EE8C93F\",\"lastModified\":\"2022-01-13T07:42:53.8457407Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask342\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask341\",\"eTag\":\"0x8D9D6684EE8F04F\",\"lastModified\":\"2022-01-13T07:42:53.8467407Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask341\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask340\",\"eTag\":\"0x8D9D6684EE98C79\",\"lastModified\":\"2022-01-13T07:42:53.8507385Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask340\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask339\",\"eTag\":\"0x8D9D6684EE9DAAC\",\"lastModified\":\"2022-01-13T07:42:53.8527404Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask339\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask338\",\"eTag\":\"0x8D9D6684EEA76EF\",\"lastModified\":\"2022-01-13T07:42:53.8567407Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask338\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask337\",\"eTag\":\"0x8D9D6684EEAC512\",\"lastModified\":\"2022-01-13T07:42:53.858741Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask337\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask336\",\"eTag\":\"0x8D9D6684EEB6146\",\"lastModified\":\"2022-01-13T07:42:53.8627398Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask336\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask335\",\"eTag\":\"0x8D9D6684EEBD684\",\"lastModified\":\"2022-01-13T07:42:53.8657412Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask335\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask334\",\"eTag\":\"0x8D9D6684EEC72B0\",\"lastModified\":\"2022-01-13T07:42:53.8697392Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask334\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask333\",\"eTag\":\"0x8D9D6684EECC0D2\",\"lastModified\":\"2022-01-13T07:42:53.8717394Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask333\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -67403,9 +67403,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:51 GMT + - Thu, 13 Jan 2022 07:42:53 GMT request-id: - - 64c24241-a35b-4a87-b619-b9397a91ffb8 + - 98c2a50d-ea77-40eb-ae9e-f46a104defe4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -72481,67 +72481,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:53 GMT + - Thu, 13 Jan 2022 07:42:54 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask332\",\"eTag\":\"0x8D9535BBD46D6A7\",\"lastModified\":\"2021-07-30T13:12:53.2301479Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask332\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask331\",\"eTag\":\"0x8D9535BBD4724D6\",\"lastModified\":\"2021-07-30T13:12:53.2321494Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask331\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask330\",\"eTag\":\"0x8D9535BBD48364C\",\"lastModified\":\"2021-07-30T13:12:53.23915Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask330\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask329\",\"eTag\":\"0x8D9535BBD48D290\",\"lastModified\":\"2021-07-30T13:12:53.2431504Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask329\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask328\",\"eTag\":\"0x8D9535BBD4920D0\",\"lastModified\":\"2021-07-30T13:12:53.2451536Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask328\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask327\",\"eTag\":\"0x8D9535BBD4995E5\",\"lastModified\":\"2021-07-30T13:12:53.2481509Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask327\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask325\",\"eTag\":\"0x8D9535BBD4A593D\",\"lastModified\":\"2021-07-30T13:12:53.2531517Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask325\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask326\",\"eTag\":\"0x8D9535BBD4A3227\",\"lastModified\":\"2021-07-30T13:12:53.2521511Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask326\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask324\",\"eTag\":\"0x8D9535BBD4AF56D\",\"lastModified\":\"2021-07-30T13:12:53.2571501Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask324\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask323\",\"eTag\":\"0x8D9535BBD4B91AE\",\"lastModified\":\"2021-07-30T13:12:53.2611502Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask323\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask322\",\"eTag\":\"0x8D9535BBD4C2DF3\",\"lastModified\":\"2021-07-30T13:12:53.2651507Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask322\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask321\",\"eTag\":\"0x8D9535BBD4CA322\",\"lastModified\":\"2021-07-30T13:12:53.2681506Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask321\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask320\",\"eTag\":\"0x8D9535BBD4CF14B\",\"lastModified\":\"2021-07-30T13:12:53.2701515Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask320\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask319\",\"eTag\":\"0x8D9535BBD4D6667\",\"lastModified\":\"2021-07-30T13:12:53.2731495Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask319\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask318\",\"eTag\":\"0x8D9535BBD4DDBA6\",\"lastModified\":\"2021-07-30T13:12:53.276151Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask318\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask317\",\"eTag\":\"0x8D9535BBD4E29B6\",\"lastModified\":\"2021-07-30T13:12:53.2781494Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask317\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask316\",\"eTag\":\"0x8D9535BBD4E9EF4\",\"lastModified\":\"2021-07-30T13:12:53.2811508Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask316\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask314\",\"eTag\":\"0x8D9535BBD4F6260\",\"lastModified\":\"2021-07-30T13:12:53.2861536Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask314\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask315\",\"eTag\":\"0x8D9535BBD4F6260\",\"lastModified\":\"2021-07-30T13:12:53.2861536Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask315\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask313\",\"eTag\":\"0x8D9535BBD5073A3\",\"lastModified\":\"2021-07-30T13:12:53.2931491Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask313\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask312\",\"eTag\":\"0x8D9535BBD50C1DC\",\"lastModified\":\"2021-07-30T13:12:53.2951516Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask312\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask311\",\"eTag\":\"0x8D9535BBD515E16\",\"lastModified\":\"2021-07-30T13:12:53.299151Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask311\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask310\",\"eTag\":\"0x8D9535BBD51AC3B\",\"lastModified\":\"2021-07-30T13:12:53.3011515Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask310\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask309\",\"eTag\":\"0x8D9535BBD52216A\",\"lastModified\":\"2021-07-30T13:12:53.3041514Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask309\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask308\",\"eTag\":\"0x8D9535BBD52E4BE\",\"lastModified\":\"2021-07-30T13:12:53.3091518Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask308\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask307\",\"eTag\":\"0x8D9535BBD530BD3\",\"lastModified\":\"2021-07-30T13:12:53.3101523Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask307\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask306\",\"eTag\":\"0x8D9535BBD53A801\",\"lastModified\":\"2021-07-30T13:12:53.3141505Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask306\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask305\",\"eTag\":\"0x8D9535BBD541D26\",\"lastModified\":\"2021-07-30T13:12:53.3171494Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask305\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask304\",\"eTag\":\"0x8D9535BBD546B5A\",\"lastModified\":\"2021-07-30T13:12:53.3191514Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask304\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask303\",\"eTag\":\"0x8D9535BBD54E088\",\"lastModified\":\"2021-07-30T13:12:53.3221512Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask303\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask302\",\"eTag\":\"0x8D9535BBD5555A6\",\"lastModified\":\"2021-07-30T13:12:53.3251494Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask302\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask301\",\"eTag\":\"0x8D9535BBD55A3D9\",\"lastModified\":\"2021-07-30T13:12:53.3271513Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask301\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask300\",\"eTag\":\"0x8D9535BBD5618FE\",\"lastModified\":\"2021-07-30T13:12:53.3301502Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask300\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask299\",\"eTag\":\"0x8D9535BBD568E34\",\"lastModified\":\"2021-07-30T13:12:53.3331508Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask299\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask298\",\"eTag\":\"0x8D9535BBD572A7F\",\"lastModified\":\"2021-07-30T13:12:53.3371519Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask298\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask296\",\"eTag\":\"0x8D9535BBD583BDB\",\"lastModified\":\"2021-07-30T13:12:53.3441499Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask296\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask295\",\"eTag\":\"0x8D9535BBD5889FB\",\"lastModified\":\"2021-07-30T13:12:53.3461499Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask295\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask294\",\"eTag\":\"0x8D9535BBD594D58\",\"lastModified\":\"2021-07-30T13:12:53.3511512Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask294\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask297\",\"eTag\":\"0x8D9535BBD594D58\",\"lastModified\":\"2021-07-30T13:12:53.3511512Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask297\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask293\",\"eTag\":\"0x8D9535BBD59E9B0\",\"lastModified\":\"2021-07-30T13:12:53.3551536Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask293\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask292\",\"eTag\":\"0x8D9535BBD5A85ED\",\"lastModified\":\"2021-07-30T13:12:53.3591533Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask292\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask291\",\"eTag\":\"0x8D9535BBD5AD3E0\",\"lastModified\":\"2021-07-30T13:12:53.3611488Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask291\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask290\",\"eTag\":\"0x8D9535BBD5B7037\",\"lastModified\":\"2021-07-30T13:12:53.3651511Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask290\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask289\",\"eTag\":\"0x8D9535BBD5C0C79\",\"lastModified\":\"2021-07-30T13:12:53.3691513Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask289\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask288\",\"eTag\":\"0x8D9535BBD5CA8CD\",\"lastModified\":\"2021-07-30T13:12:53.3731533Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask288\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask287\",\"eTag\":\"0x8D9535BBD5D1DF6\",\"lastModified\":\"2021-07-30T13:12:53.3761526Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask287\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask286\",\"eTag\":\"0x8D9535BBD5D9319\",\"lastModified\":\"2021-07-30T13:12:53.3791513Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask286\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask285\",\"eTag\":\"0x8D9535BBD5E0848\",\"lastModified\":\"2021-07-30T13:12:53.3821512Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask285\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask284\",\"eTag\":\"0x8D9535BBD5E7D86\",\"lastModified\":\"2021-07-30T13:12:53.3851526Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask284\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask283\",\"eTag\":\"0x8D9535BBD5ECBAB\",\"lastModified\":\"2021-07-30T13:12:53.3871531Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask283\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask332\",\"eTag\":\"0x8D9D6684F264AB0\",\"lastModified\":\"2022-01-13T07:42:54.248824Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask332\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask330\",\"eTag\":\"0x8D9D6684F275C69\",\"lastModified\":\"2022-01-13T07:42:54.2558313Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask330\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask331\",\"eTag\":\"0x8D9D6684F2698FF\",\"lastModified\":\"2022-01-13T07:42:54.2508287Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask331\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask329\",\"eTag\":\"0x8D9D6684F286DBA\",\"lastModified\":\"2022-01-13T07:42:54.2628282Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask329\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask328\",\"eTag\":\"0x8D9D6684F28E2D7\",\"lastModified\":\"2022-01-13T07:42:54.2658263Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask328\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask327\",\"eTag\":\"0x8D9D6684F297F16\",\"lastModified\":\"2022-01-13T07:42:54.2698262Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask327\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask326\",\"eTag\":\"0x8D9D6684F29F464\",\"lastModified\":\"2022-01-13T07:42:54.2728292Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask326\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask325\",\"eTag\":\"0x8D9D6684F2A907F\",\"lastModified\":\"2022-01-13T07:42:54.2768255Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask325\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask324\",\"eTag\":\"0x8D9D6684F2B2CD8\",\"lastModified\":\"2022-01-13T07:42:54.280828Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask324\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask323\",\"eTag\":\"0x8D9D6684F2BF02A\",\"lastModified\":\"2022-01-13T07:42:54.2858282Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask323\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask322\",\"eTag\":\"0x8D9D6684F2C3E4D\",\"lastModified\":\"2022-01-13T07:42:54.2878285Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask322\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask321\",\"eTag\":\"0x8D9D6684F2D289C\",\"lastModified\":\"2022-01-13T07:42:54.2938268Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask321\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask320\",\"eTag\":\"0x8D9D6684F2DC4D9\",\"lastModified\":\"2022-01-13T07:42:54.2978265Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask320\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask319\",\"eTag\":\"0x8D9D6684F2E3A1F\",\"lastModified\":\"2022-01-13T07:42:54.3008287Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask319\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask318\",\"eTag\":\"0x8D9D6684F2ED655\",\"lastModified\":\"2022-01-13T07:42:54.3048277Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask318\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask317\",\"eTag\":\"0x8D9D6684F2F99BF\",\"lastModified\":\"2022-01-13T07:42:54.3098303Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask317\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask316\",\"eTag\":\"0x8D9D6684F305CF1\",\"lastModified\":\"2022-01-13T07:42:54.3148273Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask316\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask315\",\"eTag\":\"0x8D9D6684F30D223\",\"lastModified\":\"2022-01-13T07:42:54.3178275Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask315\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask314\",\"eTag\":\"0x8D9D6684F31956C\",\"lastModified\":\"2022-01-13T07:42:54.3228268Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask314\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask313\",\"eTag\":\"0x8D9D6684F31E39E\",\"lastModified\":\"2022-01-13T07:42:54.3248286Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask313\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask312\",\"eTag\":\"0x8D9D6684F32A6DE\",\"lastModified\":\"2022-01-13T07:42:54.329827Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask312\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask311\",\"eTag\":\"0x8D9D6684F32CDFA\",\"lastModified\":\"2022-01-13T07:42:54.3308282Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask311\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask310\",\"eTag\":\"0x8D9D6684F33B87A\",\"lastModified\":\"2022-01-13T07:42:54.3368314Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask310\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask309\",\"eTag\":\"0x8D9D6684F347BA9\",\"lastModified\":\"2022-01-13T07:42:54.3418281Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask309\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask308\",\"eTag\":\"0x8D9D6684F34A2BC\",\"lastModified\":\"2022-01-13T07:42:54.3428284Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask308\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask307\",\"eTag\":\"0x8D9D6684F356611\",\"lastModified\":\"2022-01-13T07:42:54.3478289Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask307\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask306\",\"eTag\":\"0x8D9D6684F35DB42\",\"lastModified\":\"2022-01-13T07:42:54.350829Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask306\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask305\",\"eTag\":\"0x8D9D6684F369E9F\",\"lastModified\":\"2022-01-13T07:42:54.3558303Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask305\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask304\",\"eTag\":\"0x8D9D6684F373ADB\",\"lastModified\":\"2022-01-13T07:42:54.3598299Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask304\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask302\",\"eTag\":\"0x8D9D6684F382537\",\"lastModified\":\"2022-01-13T07:42:54.3658295Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask302\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask303\",\"eTag\":\"0x8D9D6684F37D713\",\"lastModified\":\"2022-01-13T07:42:54.3638291Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask303\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask301\",\"eTag\":\"0x8D9D6684F390F81\",\"lastModified\":\"2022-01-13T07:42:54.3718273Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask301\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask300\",\"eTag\":\"0x8D9D6684F395DBC\",\"lastModified\":\"2022-01-13T07:42:54.37383Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask300\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask299\",\"eTag\":\"0x8D9D6684F3A4802\",\"lastModified\":\"2022-01-13T07:42:54.3798274Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask299\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask298\",\"eTag\":\"0x8D9D6684F3A962F\",\"lastModified\":\"2022-01-13T07:42:54.3818287Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask298\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask297\",\"eTag\":\"0x8D9D6684F3B598B\",\"lastModified\":\"2022-01-13T07:42:54.3868299Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask297\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask295\",\"eTag\":\"0x8D9D6684F3BCEDD\",\"lastModified\":\"2022-01-13T07:42:54.3898333Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask295\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask296\",\"eTag\":\"0x8D9D6684F3BCEDD\",\"lastModified\":\"2022-01-13T07:42:54.3898333Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask296\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask294\",\"eTag\":\"0x8D9D6684F3CE028\",\"lastModified\":\"2022-01-13T07:42:54.3968296Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask294\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask293\",\"eTag\":\"0x8D9D6684F3D0732\",\"lastModified\":\"2022-01-13T07:42:54.397829Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask293\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask292\",\"eTag\":\"0x8D9D6684F3D7C81\",\"lastModified\":\"2022-01-13T07:42:54.4008321Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask292\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask291\",\"eTag\":\"0x8D9D6684F3E18AE\",\"lastModified\":\"2022-01-13T07:42:54.4048302Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask291\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask290\",\"eTag\":\"0x8D9D6684F3F031A\",\"lastModified\":\"2022-01-13T07:42:54.4108314Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask290\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask289\",\"eTag\":\"0x8D9D6684F3F9F3C\",\"lastModified\":\"2022-01-13T07:42:54.4148284Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask289\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask288\",\"eTag\":\"0x8D9D6684F3FED6A\",\"lastModified\":\"2022-01-13T07:42:54.4168298Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask288\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask287\",\"eTag\":\"0x8D9D6684F40147C\",\"lastModified\":\"2022-01-13T07:42:54.41783Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask287\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask286\",\"eTag\":\"0x8D9D6684F40D7C9\",\"lastModified\":\"2022-01-13T07:42:54.4228297Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask286\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask285\",\"eTag\":\"0x8D9D6684F4125F3\",\"lastModified\":\"2022-01-13T07:42:54.4248307Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask285\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask283\",\"eTag\":\"0x8D9D6684F42104E\",\"lastModified\":\"2022-01-13T07:42:54.4308302Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask283\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask284\",\"eTag\":\"0x8D9D6684F425E6D\",\"lastModified\":\"2022-01-13T07:42:54.4328301Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask284\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -72549,9 +72549,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:52 GMT + - Thu, 13 Jan 2022 07:42:54 GMT request-id: - - e914d537-f8bb-4cc9-952c-ed1fecdf52e8 + - 278dbdae-401c-46a0-a200-15649e5a112f server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -77627,67 +77627,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:53 GMT + - Thu, 13 Jan 2022 07:42:54 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask282\",\"eTag\":\"0x8D9535BBDEF921A\",\"lastModified\":\"2021-07-30T13:12:54.3359514Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask282\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask281\",\"eTag\":\"0x8D9535BBDF07C8E\",\"lastModified\":\"2021-07-30T13:12:54.3419534Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask281\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask280\",\"eTag\":\"0x8D9535BBDF0F1C2\",\"lastModified\":\"2021-07-30T13:12:54.3449538Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask280\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask279\",\"eTag\":\"0x8D9535BBDF13FE1\",\"lastModified\":\"2021-07-30T13:12:54.3469537Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask279\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask278\",\"eTag\":\"0x8D9535BBDF1B519\",\"lastModified\":\"2021-07-30T13:12:54.3499545Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask278\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask277\",\"eTag\":\"0x8D9535BBDF22A45\",\"lastModified\":\"2021-07-30T13:12:54.3529541Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask277\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask275\",\"eTag\":\"0x8D9535BBDF2ED81\",\"lastModified\":\"2021-07-30T13:12:54.3579521Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask275\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask276\",\"eTag\":\"0x8D9535BBDF2C66D\",\"lastModified\":\"2021-07-30T13:12:54.3569517Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask276\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask274\",\"eTag\":\"0x8D9535BBDF3D7F4\",\"lastModified\":\"2021-07-30T13:12:54.363954Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask274\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask273\",\"eTag\":\"0x8D9535BBDF4C24F\",\"lastModified\":\"2021-07-30T13:12:54.3699535Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask273\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask272\",\"eTag\":\"0x8D9535BBDF5858A\",\"lastModified\":\"2021-07-30T13:12:54.3749514Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask272\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask271\",\"eTag\":\"0x8D9535BBDF5ACA0\",\"lastModified\":\"2021-07-30T13:12:54.375952Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask271\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask269\",\"eTag\":\"0x8D9535BBDF621D6\",\"lastModified\":\"2021-07-30T13:12:54.3789526Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask269\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask270\",\"eTag\":\"0x8D9535BBDF5FAD4\",\"lastModified\":\"2021-07-30T13:12:54.377954Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask270\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask268\",\"eTag\":\"0x8D9535BBDF66FF4\",\"lastModified\":\"2021-07-30T13:12:54.3809524Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask268\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask266\",\"eTag\":\"0x8D9535BBDF75A76\",\"lastModified\":\"2021-07-30T13:12:54.3869558Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask266\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask267\",\"eTag\":\"0x8D9535BBDF7334C\",\"lastModified\":\"2021-07-30T13:12:54.3859532Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask267\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask265\",\"eTag\":\"0x8D9535BBDF844D5\",\"lastModified\":\"2021-07-30T13:12:54.3929557Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask265\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask264\",\"eTag\":\"0x8D9535BBDF89313\",\"lastModified\":\"2021-07-30T13:12:54.3949587Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask264\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask263\",\"eTag\":\"0x8D9535BBDF9080A\",\"lastModified\":\"2021-07-30T13:12:54.397953Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask263\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask262\",\"eTag\":\"0x8D9535BBDF97D43\",\"lastModified\":\"2021-07-30T13:12:54.4009539Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask262\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask261\",\"eTag\":\"0x8D9535BBDF9F27A\",\"lastModified\":\"2021-07-30T13:12:54.4039546Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask261\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask260\",\"eTag\":\"0x8D9535BBDFA8EDB\",\"lastModified\":\"2021-07-30T13:12:54.4079579Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask260\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask259\",\"eTag\":\"0x8D9535BBDFB2B02\",\"lastModified\":\"2021-07-30T13:12:54.4119554Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask259\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask258\",\"eTag\":\"0x8D9535BBDFB790D\",\"lastModified\":\"2021-07-30T13:12:54.4139533Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask258\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask257\",\"eTag\":\"0x8D9535BBDFC1549\",\"lastModified\":\"2021-07-30T13:12:54.4179529Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask257\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask256\",\"eTag\":\"0x8D9535BBDFC6371\",\"lastModified\":\"2021-07-30T13:12:54.4199537Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask256\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask255\",\"eTag\":\"0x8D9535BBDFCD8B3\",\"lastModified\":\"2021-07-30T13:12:54.4229555Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask255\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask254\",\"eTag\":\"0x8D9535BBDFD74FD\",\"lastModified\":\"2021-07-30T13:12:54.4269565Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask254\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask253\",\"eTag\":\"0x8D9535BBDFDC2F2\",\"lastModified\":\"2021-07-30T13:12:54.4289522Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask253\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask252\",\"eTag\":\"0x8D9535BBDFE865F\",\"lastModified\":\"2021-07-30T13:12:54.4339551Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask252\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask251\",\"eTag\":\"0x8D9535BBDFF228B\",\"lastModified\":\"2021-07-30T13:12:54.4379531Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask251\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask250\",\"eTag\":\"0x8D9535BBDFF70E5\",\"lastModified\":\"2021-07-30T13:12:54.4399589Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask250\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask249\",\"eTag\":\"0x8D9535BBDFFBECF\",\"lastModified\":\"2021-07-30T13:12:54.4419535Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask249\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask248\",\"eTag\":\"0x8D9535BBE0033FD\",\"lastModified\":\"2021-07-30T13:12:54.4449533Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask248\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask247\",\"eTag\":\"0x8D9535BBE00A92F\",\"lastModified\":\"2021-07-30T13:12:54.4479535Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask247\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask246\",\"eTag\":\"0x8D9535BBE011E64\",\"lastModified\":\"2021-07-30T13:12:54.450954Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask246\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask245\",\"eTag\":\"0x8D9535BBE01E1AD\",\"lastModified\":\"2021-07-30T13:12:54.4559533Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask245\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask244\",\"eTag\":\"0x8D9535BBE0256E0\",\"lastModified\":\"2021-07-30T13:12:54.4589536Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask244\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask243\",\"eTag\":\"0x8D9535BBE02A4FE\",\"lastModified\":\"2021-07-30T13:12:54.4609534Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask243\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask242\",\"eTag\":\"0x8D9535BBE031A32\",\"lastModified\":\"2021-07-30T13:12:54.4639538Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask242\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask241\",\"eTag\":\"0x8D9535BBE036850\",\"lastModified\":\"2021-07-30T13:12:54.4659536Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask241\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask240\",\"eTag\":\"0x8D9535BBE040492\",\"lastModified\":\"2021-07-30T13:12:54.4699538Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask240\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask239\",\"eTag\":\"0x8D9535BBE04A0CF\",\"lastModified\":\"2021-07-30T13:12:54.4739535Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask239\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask238\",\"eTag\":\"0x8D9535BBE051608\",\"lastModified\":\"2021-07-30T13:12:54.4769544Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask238\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask237\",\"eTag\":\"0x8D9535BBE058B36\",\"lastModified\":\"2021-07-30T13:12:54.4799542Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask237\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask236\",\"eTag\":\"0x8D9535BBE060064\",\"lastModified\":\"2021-07-30T13:12:54.482954Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask236\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask235\",\"eTag\":\"0x8D9535BBE069CB5\",\"lastModified\":\"2021-07-30T13:12:54.4869557Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask235\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask234\",\"eTag\":\"0x8D9535BBE0711D1\",\"lastModified\":\"2021-07-30T13:12:54.4899537Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask234\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask233\",\"eTag\":\"0x8D9535BBE07AE69\",\"lastModified\":\"2021-07-30T13:12:54.4939625Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask233\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask282\",\"eTag\":\"0x8D9D6684F7EF281\",\"lastModified\":\"2022-01-13T07:42:54.8298369Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask282\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask281\",\"eTag\":\"0x8D9D6684F7F8EC9\",\"lastModified\":\"2022-01-13T07:42:54.8338377Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask281\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask280\",\"eTag\":\"0x8D9D6684F7FDCE5\",\"lastModified\":\"2022-01-13T07:42:54.8358373Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask280\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask278\",\"eTag\":\"0x8D9D6684F80A031\",\"lastModified\":\"2022-01-13T07:42:54.8408369Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask278\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask276\",\"eTag\":\"0x8D9D6684F8226D8\",\"lastModified\":\"2022-01-13T07:42:54.8508376Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask276\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask277\",\"eTag\":\"0x8D9D6684F80EE50\",\"lastModified\":\"2022-01-13T07:42:54.8428368Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask277\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask275\",\"eTag\":\"0x8D9D6684F833846\",\"lastModified\":\"2022-01-13T07:42:54.8578374Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask275\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask273\",\"eTag\":\"0x8D9D6684F8422B7\",\"lastModified\":\"2022-01-13T07:42:54.8638391Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask273\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask272\",\"eTag\":\"0x8D9D6684F84981C\",\"lastModified\":\"2022-01-13T07:42:54.8668444Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask272\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask271\",\"eTag\":\"0x8D9D6684F85342D\",\"lastModified\":\"2022-01-13T07:42:54.8708397Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask271\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask270\",\"eTag\":\"0x8D9D6684F861E7F\",\"lastModified\":\"2022-01-13T07:42:54.8768383Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask270\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask269\",\"eTag\":\"0x8D9D6684F86BAAC\",\"lastModified\":\"2022-01-13T07:42:54.8808364Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask269\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask267\",\"eTag\":\"0x8D9D6684F875702\",\"lastModified\":\"2022-01-13T07:42:54.8848386Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask267\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask268\",\"eTag\":\"0x8D9D6684F872FE3\",\"lastModified\":\"2022-01-13T07:42:54.8838371Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask268\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask266\",\"eTag\":\"0x8D9D6684F881A50\",\"lastModified\":\"2022-01-13T07:42:54.8898384Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask266\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask265\",\"eTag\":\"0x8D9D6684F884169\",\"lastModified\":\"2022-01-13T07:42:54.8908393Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask265\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask274\",\"eTag\":\"0x8D9D6684F838675\",\"lastModified\":\"2022-01-13T07:42:54.8598389Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask274\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask264\",\"eTag\":\"0x8D9D6684F88DDB4\",\"lastModified\":\"2022-01-13T07:42:54.8948404Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask264\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask279\",\"eTag\":\"0x8D9D6684F8904BC\",\"lastModified\":\"2022-01-13T07:42:54.8958396Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask279\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask263\",\"eTag\":\"0x8D9D6684F89A0E2\",\"lastModified\":\"2022-01-13T07:42:54.899837Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask263\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask262\",\"eTag\":\"0x8D9D6684F89EF10\",\"lastModified\":\"2022-01-13T07:42:54.9018384Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask262\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask261\",\"eTag\":\"0x8D9D6684F8A8B42\",\"lastModified\":\"2022-01-13T07:42:54.905837Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask261\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask260\",\"eTag\":\"0x8D9D6684F8AD965\",\"lastModified\":\"2022-01-13T07:42:54.9078373Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask260\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask259\",\"eTag\":\"0x8D9D6684F8B75AE\",\"lastModified\":\"2022-01-13T07:42:54.9118382Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask259\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask258\",\"eTag\":\"0x8D9D6684F8BEAF9\",\"lastModified\":\"2022-01-13T07:42:54.9148409Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask258\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask257\",\"eTag\":\"0x8D9D6684F8CAE2A\",\"lastModified\":\"2022-01-13T07:42:54.9198378Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask257\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask256\",\"eTag\":\"0x8D9D6684F8CFC5B\",\"lastModified\":\"2022-01-13T07:42:54.9218395Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask256\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask255\",\"eTag\":\"0x8D9D6684F8D989B\",\"lastModified\":\"2022-01-13T07:42:54.9258395Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask255\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask254\",\"eTag\":\"0x8D9D6684F8DE6D8\",\"lastModified\":\"2022-01-13T07:42:54.9278424Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask254\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask253\",\"eTag\":\"0x8D9D6684F8E5BEC\",\"lastModified\":\"2022-01-13T07:42:54.9308396Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask253\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask252\",\"eTag\":\"0x8D9D6684F8ED119\",\"lastModified\":\"2022-01-13T07:42:54.9338393Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask252\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask251\",\"eTag\":\"0x8D9D6684F8FBBA0\",\"lastModified\":\"2022-01-13T07:42:54.9398432Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask251\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask250\",\"eTag\":\"0x8D9D6684F8FE29F\",\"lastModified\":\"2022-01-13T07:42:54.9408415Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask250\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask249\",\"eTag\":\"0x8D9D6684F9057EF\",\"lastModified\":\"2022-01-13T07:42:54.9438447Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask249\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask248\",\"eTag\":\"0x8D9D6684F911B2F\",\"lastModified\":\"2022-01-13T07:42:54.9488431Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask248\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask245\",\"eTag\":\"0x8D9D6684F9253C2\",\"lastModified\":\"2022-01-13T07:42:54.956845Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask245\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask246\",\"eTag\":\"0x8D9D6684F920564\",\"lastModified\":\"2022-01-13T07:42:54.9548388Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask246\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask247\",\"eTag\":\"0x8D9D6684F914255\",\"lastModified\":\"2022-01-13T07:42:54.9498453Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask247\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask244\",\"eTag\":\"0x8D9D6684F933E0C\",\"lastModified\":\"2022-01-13T07:42:54.9628428Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask244\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask243\",\"eTag\":\"0x8D9D6684F938C13\",\"lastModified\":\"2022-01-13T07:42:54.9648403Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask243\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask242\",\"eTag\":\"0x8D9D6684F940159\",\"lastModified\":\"2022-01-13T07:42:54.9678425Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask242\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask241\",\"eTag\":\"0x8D9D6684F944F62\",\"lastModified\":\"2022-01-13T07:42:54.9698402Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask241\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask240\",\"eTag\":\"0x8D9D6684F94EBBD\",\"lastModified\":\"2022-01-13T07:42:54.9738429Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask240\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask239\",\"eTag\":\"0x8D9D6684F9539CB\",\"lastModified\":\"2022-01-13T07:42:54.9758411Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask239\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask238\",\"eTag\":\"0x8D9D6684F962425\",\"lastModified\":\"2022-01-13T07:42:54.9818405Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask238\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask237\",\"eTag\":\"0x8D9D6684F96994A\",\"lastModified\":\"2022-01-13T07:42:54.9848394Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask237\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask236\",\"eTag\":\"0x8D9D6684F975CA8\",\"lastModified\":\"2022-01-13T07:42:54.9898408Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask236\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask235\",\"eTag\":\"0x8D9D6684F9783C9\",\"lastModified\":\"2022-01-13T07:42:54.9908425Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask235\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask234\",\"eTag\":\"0x8D9D6684F981FEE\",\"lastModified\":\"2022-01-13T07:42:54.9948398Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask234\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask233\",\"eTag\":\"0x8D9D6684F986E1F\",\"lastModified\":\"2022-01-13T07:42:54.9968415Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask233\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -77695,9 +77695,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:53 GMT + - Thu, 13 Jan 2022 07:42:54 GMT request-id: - - 2bbbc852-0ce8-475a-990a-cb43f3373e09 + - 188a5d71-3c41-4e7c-8e26-b494f9563b01 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -82773,67 +82773,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:54 GMT + - Thu, 13 Jan 2022 07:42:55 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask232\",\"eTag\":\"0x8D9535BBE5299F2\",\"lastModified\":\"2021-07-30T13:12:54.9849586Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask232\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask231\",\"eTag\":\"0x8D9535BBE530F22\",\"lastModified\":\"2021-07-30T13:12:54.9879586Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask231\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask230\",\"eTag\":\"0x8D9535BBE535D53\",\"lastModified\":\"2021-07-30T13:12:54.9899603Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask230\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask229\",\"eTag\":\"0x8D9535BBE53D27D\",\"lastModified\":\"2021-07-30T13:12:54.9929597Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask229\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask228\",\"eTag\":\"0x8D9535BBE5420B4\",\"lastModified\":\"2021-07-30T13:12:54.994962Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask228\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask227\",\"eTag\":\"0x8D9535BBE5495D8\",\"lastModified\":\"2021-07-30T13:12:54.9979608Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask227\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask225\",\"eTag\":\"0x8D9535BBE558036\",\"lastModified\":\"2021-07-30T13:12:55.0039606Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask225\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask226\",\"eTag\":\"0x8D9535BBE550B08\",\"lastModified\":\"2021-07-30T13:12:55.0009608Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask226\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask224\",\"eTag\":\"0x8D9535BBE566A98\",\"lastModified\":\"2021-07-30T13:12:55.0099608Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask224\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask223\",\"eTag\":\"0x8D9535BBE56DFCE\",\"lastModified\":\"2021-07-30T13:12:55.0129614Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask223\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask222\",\"eTag\":\"0x8D9535BBE572E03\",\"lastModified\":\"2021-07-30T13:12:55.0149635Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask222\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask221\",\"eTag\":\"0x8D9535BBE58185A\",\"lastModified\":\"2021-07-30T13:12:55.0209626Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask221\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask220\",\"eTag\":\"0x8D9535BBE58B48B\",\"lastModified\":\"2021-07-30T13:12:55.0249611Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask220\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask219\",\"eTag\":\"0x8D9535BBE5929B5\",\"lastModified\":\"2021-07-30T13:12:55.0279605Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask219\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask218\",\"eTag\":\"0x8D9535BBE599EF1\",\"lastModified\":\"2021-07-30T13:12:55.0309617Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask218\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask217\",\"eTag\":\"0x8D9535BBE5A624E\",\"lastModified\":\"2021-07-30T13:12:55.035963Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask217\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask216\",\"eTag\":\"0x8D9535BBE5A8960\",\"lastModified\":\"2021-07-30T13:12:55.0369632Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask216\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask215\",\"eTag\":\"0x8D9535BBE5AD776\",\"lastModified\":\"2021-07-30T13:12:55.0389622Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask215\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask214\",\"eTag\":\"0x8D9535BBE5BC1D2\",\"lastModified\":\"2021-07-30T13:12:55.0449618Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask214\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask213\",\"eTag\":\"0x8D9535BBE5C8517\",\"lastModified\":\"2021-07-30T13:12:55.0499607Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask213\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask212\",\"eTag\":\"0x8D9535BBE5D2161\",\"lastModified\":\"2021-07-30T13:12:55.0539617Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask212\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask211\",\"eTag\":\"0x8D9535BBE5D4897\",\"lastModified\":\"2021-07-30T13:12:55.0549655Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask211\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask210\",\"eTag\":\"0x8D9535BBE5D96B1\",\"lastModified\":\"2021-07-30T13:12:55.0569649Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask210\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask209\",\"eTag\":\"0x8D9535BBE5DE4B2\",\"lastModified\":\"2021-07-30T13:12:55.0589618Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask209\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask208\",\"eTag\":\"0x8D9535BBE5E80F7\",\"lastModified\":\"2021-07-30T13:12:55.0629623Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask208\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask207\",\"eTag\":\"0x8D9535BBE5ECF2A\",\"lastModified\":\"2021-07-30T13:12:55.0649642Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask207\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask206\",\"eTag\":\"0x8D9535BBE5FE085\",\"lastModified\":\"2021-07-30T13:12:55.0719621Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask206\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask204\",\"eTag\":\"0x8D9535BBE60A3CE\",\"lastModified\":\"2021-07-30T13:12:55.0769614Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask204\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask205\",\"eTag\":\"0x8D9535BBE6055B2\",\"lastModified\":\"2021-07-30T13:12:55.0749618Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask205\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask203\",\"eTag\":\"0x8D9535BBE60F1F4\",\"lastModified\":\"2021-07-30T13:12:55.078962Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask203\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask202\",\"eTag\":\"0x8D9535BBE614018\",\"lastModified\":\"2021-07-30T13:12:55.0809624Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask202\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask201\",\"eTag\":\"0x8D9535BBE622A80\",\"lastModified\":\"2021-07-30T13:12:55.0869632Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask201\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask200\",\"eTag\":\"0x8D9535BBE625198\",\"lastModified\":\"2021-07-30T13:12:55.087964Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask200\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask199\",\"eTag\":\"0x8D9535BBE62EDB4\",\"lastModified\":\"2021-07-30T13:12:55.0919604Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask199\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask197\",\"eTag\":\"0x8D9535BBE63B11A\",\"lastModified\":\"2021-07-30T13:12:55.0969626Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask197\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask198\",\"eTag\":\"0x8D9535BBE6362F5\",\"lastModified\":\"2021-07-30T13:12:55.0949621Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask198\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask196\",\"eTag\":\"0x8D9535BBE642642\",\"lastModified\":\"2021-07-30T13:12:55.0999618Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask196\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask195\",\"eTag\":\"0x8D9535BBE64746A\",\"lastModified\":\"2021-07-30T13:12:55.1019626Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask195\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask194\",\"eTag\":\"0x8D9535BBE64E998\",\"lastModified\":\"2021-07-30T13:12:55.1049624Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask194\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask193\",\"eTag\":\"0x8D9535BBE6585DD\",\"lastModified\":\"2021-07-30T13:12:55.1089629Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask193\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask192\",\"eTag\":\"0x8D9535BBE664913\",\"lastModified\":\"2021-07-30T13:12:55.1139603Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask192\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask191\",\"eTag\":\"0x8D9535BBE66BE5F\",\"lastModified\":\"2021-07-30T13:12:55.1169631Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask191\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask190\",\"eTag\":\"0x8D9535BBE670C7F\",\"lastModified\":\"2021-07-30T13:12:55.1189631Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask190\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask189\",\"eTag\":\"0x8D9535BBE6781AF\",\"lastModified\":\"2021-07-30T13:12:55.1219631Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask189\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask188\",\"eTag\":\"0x8D9535BBE67F6DE\",\"lastModified\":\"2021-07-30T13:12:55.124963Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask188\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask187\",\"eTag\":\"0x8D9535BBE68BA2E\",\"lastModified\":\"2021-07-30T13:12:55.129963Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask187\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask186\",\"eTag\":\"0x8D9535BBE68E185\",\"lastModified\":\"2021-07-30T13:12:55.1309701Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask186\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask185\",\"eTag\":\"0x8D9535BBE69A48A\",\"lastModified\":\"2021-07-30T13:12:55.1359626Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask185\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask184\",\"eTag\":\"0x8D9535BBE6A19C8\",\"lastModified\":\"2021-07-30T13:12:55.138964Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask184\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask183\",\"eTag\":\"0x8D9535BBE6A8EE9\",\"lastModified\":\"2021-07-30T13:12:55.1419625Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask183\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask232\",\"eTag\":\"0x8D9D6684FD3E353\",\"lastModified\":\"2022-01-13T07:42:55.3865043Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask232\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask231\",\"eTag\":\"0x8D9D6684FD4316B\",\"lastModified\":\"2022-01-13T07:42:55.3885035Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask231\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask230\",\"eTag\":\"0x8D9D6684FD51BD4\",\"lastModified\":\"2022-01-13T07:42:55.3945044Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask230\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask228\",\"eTag\":\"0x8D9D6684FD5911A\",\"lastModified\":\"2022-01-13T07:42:55.3975066Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask228\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask229\",\"eTag\":\"0x8D9D6684FD542F6\",\"lastModified\":\"2022-01-13T07:42:55.3955062Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask229\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask227\",\"eTag\":\"0x8D9D6684FD62D51\",\"lastModified\":\"2022-01-13T07:42:55.4015057Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask227\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask225\",\"eTag\":\"0x8D9D6684FD6C981\",\"lastModified\":\"2022-01-13T07:42:55.4055041Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask225\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask226\",\"eTag\":\"0x8D9D6684FD67B73\",\"lastModified\":\"2022-01-13T07:42:55.4035059Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask226\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask224\",\"eTag\":\"0x8D9D6684FD7DB0B\",\"lastModified\":\"2022-01-13T07:42:55.4125067Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask224\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask223\",\"eTag\":\"0x8D9D6684FD80215\",\"lastModified\":\"2022-01-13T07:42:55.4135061Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask223\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask222\",\"eTag\":\"0x8D9D6684FD87744\",\"lastModified\":\"2022-01-13T07:42:55.416506Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask222\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask220\",\"eTag\":\"0x8D9D6684FD988C3\",\"lastModified\":\"2022-01-13T07:42:55.4235075Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask220\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask221\",\"eTag\":\"0x8D9D6684FDA731E\",\"lastModified\":\"2022-01-13T07:42:55.429507Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask221\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask219\",\"eTag\":\"0x8D9D6684FDA731E\",\"lastModified\":\"2022-01-13T07:42:55.429507Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask219\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask218\",\"eTag\":\"0x8D9D6684FDAE84C\",\"lastModified\":\"2022-01-13T07:42:55.4325068Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask218\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask216\",\"eTag\":\"0x8D9D6684FDC95F8\",\"lastModified\":\"2022-01-13T07:42:55.4435064Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask216\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask217\",\"eTag\":\"0x8D9D6684FDC95F8\",\"lastModified\":\"2022-01-13T07:42:55.4435064Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask217\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask215\",\"eTag\":\"0x8D9D6684FDCE41A\",\"lastModified\":\"2022-01-13T07:42:55.4455066Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask215\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask214\",\"eTag\":\"0x8D9D6684FDD804F\",\"lastModified\":\"2022-01-13T07:42:55.4495055Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask214\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask213\",\"eTag\":\"0x8D9D6684FDE43DF\",\"lastModified\":\"2022-01-13T07:42:55.4545119Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask213\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask212\",\"eTag\":\"0x8D9D6684FDE43DF\",\"lastModified\":\"2022-01-13T07:42:55.4545119Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask212\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask211\",\"eTag\":\"0x8D9D6684FDF5512\",\"lastModified\":\"2022-01-13T07:42:55.4615058Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask211\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask210\",\"eTag\":\"0x8D9D6684FDFA343\",\"lastModified\":\"2022-01-13T07:42:55.4635075Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask210\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask209\",\"eTag\":\"0x8D9D6684FE03F71\",\"lastModified\":\"2022-01-13T07:42:55.4675057Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask209\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask208\",\"eTag\":\"0x8D9D6684FE08DB7\",\"lastModified\":\"2022-01-13T07:42:55.4695095Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask208\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask207\",\"eTag\":\"0x8D9D6684FE129EA\",\"lastModified\":\"2022-01-13T07:42:55.4735082Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask207\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask206\",\"eTag\":\"0x8D9D6684FE1C62A\",\"lastModified\":\"2022-01-13T07:42:55.4775082Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask206\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask205\",\"eTag\":\"0x8D9D6684FE2D796\",\"lastModified\":\"2022-01-13T07:42:55.4845078Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask205\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask204\",\"eTag\":\"0x8D9D6684FE325BE\",\"lastModified\":\"2022-01-13T07:42:55.4865086Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask204\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask203\",\"eTag\":\"0x8D9D6684FE39AE7\",\"lastModified\":\"2022-01-13T07:42:55.4895079Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask203\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask202\",\"eTag\":\"0x8D9D6684FE41016\",\"lastModified\":\"2022-01-13T07:42:55.4925078Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask202\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask201\",\"eTag\":\"0x8D9D6684FE45E3E\",\"lastModified\":\"2022-01-13T07:42:55.4945086Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask201\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask199\",\"eTag\":\"0x8D9D6684FE596B5\",\"lastModified\":\"2022-01-13T07:42:55.5025077Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask199\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask200\",\"eTag\":\"0x8D9D6684FE4FA7C\",\"lastModified\":\"2022-01-13T07:42:55.4985084Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask200\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask198\",\"eTag\":\"0x8D9D6684FE632EF\",\"lastModified\":\"2022-01-13T07:42:55.5065071Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask198\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask197\",\"eTag\":\"0x8D9D6684FE6A837\",\"lastModified\":\"2022-01-13T07:42:55.5095095Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask197\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask196\",\"eTag\":\"0x8D9D6684FE7448A\",\"lastModified\":\"2022-01-13T07:42:55.5135114Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask196\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask195\",\"eTag\":\"0x8D9D6684FE7B9A7\",\"lastModified\":\"2022-01-13T07:42:55.5165095Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask195\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask194\",\"eTag\":\"0x8D9D6684FE8CB1E\",\"lastModified\":\"2022-01-13T07:42:55.5235102Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask194\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask193\",\"eTag\":\"0x8D9D6684FE8CB1E\",\"lastModified\":\"2022-01-13T07:42:55.5235102Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask193\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask192\",\"eTag\":\"0x8D9D6684FE98E65\",\"lastModified\":\"2022-01-13T07:42:55.5285093Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask192\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask191\",\"eTag\":\"0x8D9D6684FEA51D9\",\"lastModified\":\"2022-01-13T07:42:55.5335129Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask191\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask190\",\"eTag\":\"0x8D9D6684FEA9FE2\",\"lastModified\":\"2022-01-13T07:42:55.5355106Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask190\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask189\",\"eTag\":\"0x8D9D6684FEB6315\",\"lastModified\":\"2022-01-13T07:42:55.5405077Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask189\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask188\",\"eTag\":\"0x8D9D6684FEBB162\",\"lastModified\":\"2022-01-13T07:42:55.5425122Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask188\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask187\",\"eTag\":\"0x8D9D6684FEC4D81\",\"lastModified\":\"2022-01-13T07:42:55.5465089Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask187\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask186\",\"eTag\":\"0x8D9D6684FEC9B9F\",\"lastModified\":\"2022-01-13T07:42:55.5485087Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask186\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask185\",\"eTag\":\"0x8D9D6684FED381C\",\"lastModified\":\"2022-01-13T07:42:55.5525148Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask185\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask184\",\"eTag\":\"0x8D9D6684FEDD417\",\"lastModified\":\"2022-01-13T07:42:55.5565079Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask184\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask183\",\"eTag\":\"0x8D9D6684FEE4960\",\"lastModified\":\"2022-01-13T07:42:55.5595104Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask183\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -82841,9 +82841,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:54 GMT + - Thu, 13 Jan 2022 07:42:55 GMT request-id: - - 016bbfd0-95fa-4b9f-a4b6-5ff86bfc212d + - e2bd9385-0758-4443-b486-9698ba335d74 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -87919,67 +87919,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:55 GMT + - Thu, 13 Jan 2022 07:42:55 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask182\",\"eTag\":\"0x8D9535BBEB1A518\",\"lastModified\":\"2021-07-30T13:12:55.607836Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask182\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask181\",\"eTag\":\"0x8D9535BBEB1F33B\",\"lastModified\":\"2021-07-30T13:12:55.6098363Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask181\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask180\",\"eTag\":\"0x8D9535BBEB2686B\",\"lastModified\":\"2021-07-30T13:12:55.6128363Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask180\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask179\",\"eTag\":\"0x8D9535BBEB2DD9C\",\"lastModified\":\"2021-07-30T13:12:55.6158364Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask179\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask178\",\"eTag\":\"0x8D9535BBEB352C6\",\"lastModified\":\"2021-07-30T13:12:55.6188358Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask178\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask177\",\"eTag\":\"0x8D9535BBEB3A0EF\",\"lastModified\":\"2021-07-30T13:12:55.6208367Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask177\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask176\",\"eTag\":\"0x8D9535BBEB5279B\",\"lastModified\":\"2021-07-30T13:12:55.6308379Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask176\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask175\",\"eTag\":\"0x8D9535BBEB5C3D0\",\"lastModified\":\"2021-07-30T13:12:55.6348368Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask175\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask174\",\"eTag\":\"0x8D9535BBEB638FB\",\"lastModified\":\"2021-07-30T13:12:55.6378363Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask174\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask173\",\"eTag\":\"0x8D9535BBEB6871E\",\"lastModified\":\"2021-07-30T13:12:55.6398366Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask173\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask172\",\"eTag\":\"0x8D9535BBEB6FC52\",\"lastModified\":\"2021-07-30T13:12:55.642837Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask172\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask171\",\"eTag\":\"0x8D9535BBEB7717F\",\"lastModified\":\"2021-07-30T13:12:55.6458367Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask171\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask170\",\"eTag\":\"0x8D9535BBEB7BFB6\",\"lastModified\":\"2021-07-30T13:12:55.647839Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask170\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask169\",\"eTag\":\"0x8D9535BBEB834D1\",\"lastModified\":\"2021-07-30T13:12:55.6508369Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask169\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask168\",\"eTag\":\"0x8D9535BBEB8AA07\",\"lastModified\":\"2021-07-30T13:12:55.6538375Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask168\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask167\",\"eTag\":\"0x8D9535BBEB94636\",\"lastModified\":\"2021-07-30T13:12:55.6578358Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask167\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask166\",\"eTag\":\"0x8D9535BBEBA3094\",\"lastModified\":\"2021-07-30T13:12:55.6638356Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask166\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask165\",\"eTag\":\"0x8D9535BBEBAA5DA\",\"lastModified\":\"2021-07-30T13:12:55.6668378Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask165\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask164\",\"eTag\":\"0x8D9535BBEBAF3F7\",\"lastModified\":\"2021-07-30T13:12:55.6688375Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask164\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask163\",\"eTag\":\"0x8D9535BBEBB6923\",\"lastModified\":\"2021-07-30T13:12:55.6718371Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask163\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask162\",\"eTag\":\"0x8D9535BBEBBDE63\",\"lastModified\":\"2021-07-30T13:12:55.6748387Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask162\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask161\",\"eTag\":\"0x8D9535BBEBC7AB2\",\"lastModified\":\"2021-07-30T13:12:55.6788402Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask161\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask160\",\"eTag\":\"0x8D9535BBEBCA1B9\",\"lastModified\":\"2021-07-30T13:12:55.6798393Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask160\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask159\",\"eTag\":\"0x8D9535BBEBD8C09\",\"lastModified\":\"2021-07-30T13:12:55.6858377Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask159\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask158\",\"eTag\":\"0x8D9535BBEBDDA3B\",\"lastModified\":\"2021-07-30T13:12:55.6878395Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask158\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask157\",\"eTag\":\"0x8D9535BBEBE4F56\",\"lastModified\":\"2021-07-30T13:12:55.6908374Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask157\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask156\",\"eTag\":\"0x8D9535BBEBEC48A\",\"lastModified\":\"2021-07-30T13:12:55.6938378Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask156\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask155\",\"eTag\":\"0x8D9535BBEBF39B9\",\"lastModified\":\"2021-07-30T13:12:55.6968377Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask155\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask154\",\"eTag\":\"0x8D9535BBEBFD5F7\",\"lastModified\":\"2021-07-30T13:12:55.7008375Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask154\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask153\",\"eTag\":\"0x8D9535BBEC02414\",\"lastModified\":\"2021-07-30T13:12:55.7028372Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask153\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask152\",\"eTag\":\"0x8D9535BBEC0E76C\",\"lastModified\":\"2021-07-30T13:12:55.707838Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask152\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask151\",\"eTag\":\"0x8D9535BBEC13592\",\"lastModified\":\"2021-07-30T13:12:55.7098386Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask151\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask150\",\"eTag\":\"0x8D9535BBEC1AAC1\",\"lastModified\":\"2021-07-30T13:12:55.7128385Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask150\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask149\",\"eTag\":\"0x8D9535BBEC21FEF\",\"lastModified\":\"2021-07-30T13:12:55.7158383Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask149\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask148\",\"eTag\":\"0x8D9535BBEC29518\",\"lastModified\":\"2021-07-30T13:12:55.7188376Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask148\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask147\",\"eTag\":\"0x8D9535BBEC3315F\",\"lastModified\":\"2021-07-30T13:12:55.7228383Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask147\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask146\",\"eTag\":\"0x8D9535BBEC3CDA5\",\"lastModified\":\"2021-07-30T13:12:55.7268389Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask146\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask145\",\"eTag\":\"0x8D9535BBEC4431C\",\"lastModified\":\"2021-07-30T13:12:55.729846Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask145\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask144\",\"eTag\":\"0x8D9535BBEC490FA\",\"lastModified\":\"2021-07-30T13:12:55.7318394Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask144\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask143\",\"eTag\":\"0x8D9535BBEC52D2C\",\"lastModified\":\"2021-07-30T13:12:55.735838Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask143\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask142\",\"eTag\":\"0x8D9535BBEC57B52\",\"lastModified\":\"2021-07-30T13:12:55.7378386Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask142\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask141\",\"eTag\":\"0x8D9535BBEC5F07F\",\"lastModified\":\"2021-07-30T13:12:55.7408383Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask141\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask140\",\"eTag\":\"0x8D9535BBEC68CBF\",\"lastModified\":\"2021-07-30T13:12:55.7448383Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask140\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask139\",\"eTag\":\"0x8D9535BBEC72906\",\"lastModified\":\"2021-07-30T13:12:55.748839Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask139\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask138\",\"eTag\":\"0x8D9535BBEC79E3F\",\"lastModified\":\"2021-07-30T13:12:55.7518399Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask138\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask137\",\"eTag\":\"0x8D9535BBEC8135B\",\"lastModified\":\"2021-07-30T13:12:55.7548379Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask137\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask136\",\"eTag\":\"0x8D9535BBEC8889E\",\"lastModified\":\"2021-07-30T13:12:55.7578398Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask136\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask135\",\"eTag\":\"0x8D9535BBEC8D6B2\",\"lastModified\":\"2021-07-30T13:12:55.7598386Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask135\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask134\",\"eTag\":\"0x8D9535BBEC94BF2\",\"lastModified\":\"2021-07-30T13:12:55.7628402Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask134\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask133\",\"eTag\":\"0x8D9535BBEC9C11F\",\"lastModified\":\"2021-07-30T13:12:55.7658399Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask133\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask182\",\"eTag\":\"0x8D9D6685027ABC6\",\"lastModified\":\"2022-01-13T07:42:55.9355846Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask182\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask181\",\"eTag\":\"0x8D9D6685028480E\",\"lastModified\":\"2022-01-13T07:42:55.9395854Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask181\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask179\",\"eTag\":\"0x8D9D6685028BD39\",\"lastModified\":\"2022-01-13T07:42:55.9425849Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask179\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask180\",\"eTag\":\"0x8D9D66850289631\",\"lastModified\":\"2022-01-13T07:42:55.9415857Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask180\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask178\",\"eTag\":\"0x8D9D66850293290\",\"lastModified\":\"2022-01-13T07:42:55.9455888Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask178\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask177\",\"eTag\":\"0x8D9D6685029A7A4\",\"lastModified\":\"2022-01-13T07:42:55.948586Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask177\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask176\",\"eTag\":\"0x8D9D668502A4400\",\"lastModified\":\"2022-01-13T07:42:55.9525888Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask176\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask175\",\"eTag\":\"0x8D9D668502B0728\",\"lastModified\":\"2022-01-13T07:42:55.9575848Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask175\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask174\",\"eTag\":\"0x8D9D668502B7C64\",\"lastModified\":\"2022-01-13T07:42:55.960586Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask174\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask173\",\"eTag\":\"0x8D9D668502C18C3\",\"lastModified\":\"2022-01-13T07:42:55.9645891Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask173\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask172\",\"eTag\":\"0x8D9D668502C3FBD\",\"lastModified\":\"2022-01-13T07:42:55.9655869Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask172\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask171\",\"eTag\":\"0x8D9D668502CB4ED\",\"lastModified\":\"2022-01-13T07:42:55.9685869Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask171\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask170\",\"eTag\":\"0x8D9D668502D9F63\",\"lastModified\":\"2022-01-13T07:42:55.9745891Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask170\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask169\",\"eTag\":\"0x8D9D668502D9F63\",\"lastModified\":\"2022-01-13T07:42:55.9745891Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask169\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask168\",\"eTag\":\"0x8D9D668502E89AF\",\"lastModified\":\"2022-01-13T07:42:55.9805871Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask168\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask167\",\"eTag\":\"0x8D9D668502EB0BA\",\"lastModified\":\"2022-01-13T07:42:55.9815866Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask167\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask166\",\"eTag\":\"0x8D9D668502F740B\",\"lastModified\":\"2022-01-13T07:42:55.9865867Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask166\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask165\",\"eTag\":\"0x8D9D6685030ACBC\",\"lastModified\":\"2022-01-13T07:42:55.9945916Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask165\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask163\",\"eTag\":\"0x8D9D668503148CC\",\"lastModified\":\"2022-01-13T07:42:55.9985868Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask163\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask161\",\"eTag\":\"0x8D9D66850317013\",\"lastModified\":\"2022-01-13T07:42:55.9995923Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask161\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask162\",\"eTag\":\"0x8D9D668503148CC\",\"lastModified\":\"2022-01-13T07:42:55.9985868Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask162\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask164\",\"eTag\":\"0x8D9D6685030FAB0\",\"lastModified\":\"2022-01-13T07:42:55.9965872Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask164\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask160\",\"eTag\":\"0x8D9D66850325A50\",\"lastModified\":\"2022-01-13T07:42:56.0055888Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask160\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask159\",\"eTag\":\"0x8D9D6685032A863\",\"lastModified\":\"2022-01-13T07:42:56.0075875Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask159\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask158\",\"eTag\":\"0x8D9D668503344C7\",\"lastModified\":\"2022-01-13T07:42:56.0115911Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask158\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask157\",\"eTag\":\"0x8D9D66850336BC4\",\"lastModified\":\"2022-01-13T07:42:56.0125892Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask157\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask156\",\"eTag\":\"0x8D9D668503407FE\",\"lastModified\":\"2022-01-13T07:42:56.0165886Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask156\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask155\",\"eTag\":\"0x8D9D66850347D24\",\"lastModified\":\"2022-01-13T07:42:56.0195876Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask155\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask154\",\"eTag\":\"0x8D9D66850354087\",\"lastModified\":\"2022-01-13T07:42:56.0245895Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask154\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask153\",\"eTag\":\"0x8D9D6685035B5BE\",\"lastModified\":\"2022-01-13T07:42:56.0275902Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask153\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask152\",\"eTag\":\"0x8D9D668503678F0\",\"lastModified\":\"2022-01-13T07:42:56.0325872Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask152\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask151\",\"eTag\":\"0x8D9D6685036C721\",\"lastModified\":\"2022-01-13T07:42:56.0345889Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask151\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask150\",\"eTag\":\"0x8D9D66850378A6B\",\"lastModified\":\"2022-01-13T07:42:56.0395883Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask150\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask149\",\"eTag\":\"0x8D9D6685037B19F\",\"lastModified\":\"2022-01-13T07:42:56.0405919Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask149\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask148\",\"eTag\":\"0x8D9D66850389BE4\",\"lastModified\":\"2022-01-13T07:42:56.0465892Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask148\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask147\",\"eTag\":\"0x8D9D6685039381A\",\"lastModified\":\"2022-01-13T07:42:56.0505882Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask147\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask146\",\"eTag\":\"0x8D9D6685039AD61\",\"lastModified\":\"2022-01-13T07:42:56.0535905Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask146\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask145\",\"eTag\":\"0x8D9D6685039FB92\",\"lastModified\":\"2022-01-13T07:42:56.0555922Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask145\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask144\",\"eTag\":\"0x8D9D668503AE5D8\",\"lastModified\":\"2022-01-13T07:42:56.0615896Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask144\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask143\",\"eTag\":\"0x8D9D668503B33F6\",\"lastModified\":\"2022-01-13T07:42:56.0635894Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask143\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask142\",\"eTag\":\"0x8D9D668503C6CB1\",\"lastModified\":\"2022-01-13T07:42:56.0715953Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask142\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask140\",\"eTag\":\"0x8D9D668503CBA96\",\"lastModified\":\"2022-01-13T07:42:56.0735894Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask140\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask141\",\"eTag\":\"0x8D9D668503C6CB1\",\"lastModified\":\"2022-01-13T07:42:56.0715953Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask141\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask139\",\"eTag\":\"0x8D9D668503D7DF6\",\"lastModified\":\"2022-01-13T07:42:56.078591Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask139\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask138\",\"eTag\":\"0x8D9D668503DA4F7\",\"lastModified\":\"2022-01-13T07:42:56.0795895Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask138\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask136\",\"eTag\":\"0x8D9D668503EB69F\",\"lastModified\":\"2022-01-13T07:42:56.0865951Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask136\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask135\",\"eTag\":\"0x8D9D668503F2B91\",\"lastModified\":\"2022-01-13T07:42:56.0895889Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask135\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask137\",\"eTag\":\"0x8D9D668503EDD71\",\"lastModified\":\"2022-01-13T07:42:56.0875889Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask137\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask133\",\"eTag\":\"0x8D9D668503FEEEF\",\"lastModified\":\"2022-01-13T07:42:56.0945903Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask133\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask134\",\"eTag\":\"0x8D9D668503F79D1\",\"lastModified\":\"2022-01-13T07:42:56.0915921Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask134\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -87987,9 +87987,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:54 GMT + - Thu, 13 Jan 2022 07:42:55 GMT request-id: - - b4432c87-2eea-43fd-98cf-4bd914ea05ae + - 38eb80c1-325c-417f-90cb-a1c5b2d9eef2 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -93065,67 +93065,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:56 GMT + - Thu, 13 Jan 2022 07:42:56 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask132\",\"eTag\":\"0x8D9535BBF11C6CB\",\"lastModified\":\"2021-07-30T13:12:56.2378443Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask132\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask131\",\"eTag\":\"0x8D9535BBF1214F2\",\"lastModified\":\"2021-07-30T13:12:56.239845Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask131\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask130\",\"eTag\":\"0x8D9535BBF165AB3\",\"lastModified\":\"2021-07-30T13:12:56.2678451Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask130\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask129\",\"eTag\":\"0x8D9535BBF1681CA\",\"lastModified\":\"2021-07-30T13:12:56.2688458Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask129\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask128\",\"eTag\":\"0x8D9535BBF1681CA\",\"lastModified\":\"2021-07-30T13:12:56.2688458Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask128\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask126\",\"eTag\":\"0x8D9535BBF16A8D7\",\"lastModified\":\"2021-07-30T13:12:56.2698455Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask126\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask127\",\"eTag\":\"0x8D9535BBF16A8D7\",\"lastModified\":\"2021-07-30T13:12:56.2698455Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask127\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask125\",\"eTag\":\"0x8D9535BBF16A8D7\",\"lastModified\":\"2021-07-30T13:12:56.2698455Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask125\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask123\",\"eTag\":\"0x8D9535BBF16A8D7\",\"lastModified\":\"2021-07-30T13:12:56.2698455Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask123\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask121\",\"eTag\":\"0x8D9535BBF171E04\",\"lastModified\":\"2021-07-30T13:12:56.2728452Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask121\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask122\",\"eTag\":\"0x8D9535BBF16F6FB\",\"lastModified\":\"2021-07-30T13:12:56.2718459Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask122\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask124\",\"eTag\":\"0x8D9535BBF16A8D7\",\"lastModified\":\"2021-07-30T13:12:56.2698455Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask124\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask120\",\"eTag\":\"0x8D9535BBF176C24\",\"lastModified\":\"2021-07-30T13:12:56.2748452Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask120\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask119\",\"eTag\":\"0x8D9535BBF18087B\",\"lastModified\":\"2021-07-30T13:12:56.2788475Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask119\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask118\",\"eTag\":\"0x8D9535BBF18A4B2\",\"lastModified\":\"2021-07-30T13:12:56.2828466Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask118\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask117\",\"eTag\":\"0x8D9535BBF1919E3\",\"lastModified\":\"2021-07-30T13:12:56.2858467Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask117\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask116\",\"eTag\":\"0x8D9535BBF1967FA\",\"lastModified\":\"2021-07-30T13:12:56.2878458Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask116\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask115\",\"eTag\":\"0x8D9535BBF19DD2A\",\"lastModified\":\"2021-07-30T13:12:56.2908458Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask115\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask114\",\"eTag\":\"0x8D9535BBF1A525F\",\"lastModified\":\"2021-07-30T13:12:56.2938463Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask114\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask113\",\"eTag\":\"0x8D9535BBF1AC788\",\"lastModified\":\"2021-07-30T13:12:56.2968456Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask113\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask112\",\"eTag\":\"0x8D9535BBF1B15B8\",\"lastModified\":\"2021-07-30T13:12:56.2988472Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask112\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask111\",\"eTag\":\"0x8D9535BBF1BB21B\",\"lastModified\":\"2021-07-30T13:12:56.3028507Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask111\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask110\",\"eTag\":\"0x8D9535BBF1C0043\",\"lastModified\":\"2021-07-30T13:12:56.3048515Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask110\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask109\",\"eTag\":\"0x8D9535BBF1C9C47\",\"lastModified\":\"2021-07-30T13:12:56.3088455Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask109\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask108\",\"eTag\":\"0x8D9535BBF1D3877\",\"lastModified\":\"2021-07-30T13:12:56.3128439Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask108\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask107\",\"eTag\":\"0x8D9535BBF1D5FAC\",\"lastModified\":\"2021-07-30T13:12:56.3138476Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask107\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask106\",\"eTag\":\"0x8D9535BBF1DD4C8\",\"lastModified\":\"2021-07-30T13:12:56.3168456Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask106\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask105\",\"eTag\":\"0x8D9535BBF1E4A00\",\"lastModified\":\"2021-07-30T13:12:56.3198464Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask105\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask104\",\"eTag\":\"0x8D9535BBF1E9820\",\"lastModified\":\"2021-07-30T13:12:56.3218464Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask104\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask103\",\"eTag\":\"0x8D9535BBF1F0D49\",\"lastModified\":\"2021-07-30T13:12:56.3248457Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask103\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask102\",\"eTag\":\"0x8D9535BBF1F829B\",\"lastModified\":\"2021-07-30T13:12:56.3278491Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask102\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask101\",\"eTag\":\"0x8D9535BBF2045CD\",\"lastModified\":\"2021-07-30T13:12:56.3328461Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask101\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask98\",\"eTag\":\"0x8D9535BBF215769\",\"lastModified\":\"2021-07-30T13:12:56.3398505Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask98\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask99\",\"eTag\":\"0x8D9535BBF21093A\",\"lastModified\":\"2021-07-30T13:12:56.337849Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask99\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask100\",\"eTag\":\"0x8D9535BBF209406\",\"lastModified\":\"2021-07-30T13:12:56.3348486Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask100\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask97\",\"eTag\":\"0x8D9535BBF21CC93\",\"lastModified\":\"2021-07-30T13:12:56.3428499Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask97\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask96\",\"eTag\":\"0x8D9535BBF221A9F\",\"lastModified\":\"2021-07-30T13:12:56.3448479Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask96\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask95\",\"eTag\":\"0x8D9535BBF228FF6\",\"lastModified\":\"2021-07-30T13:12:56.3478518Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask95\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask94\",\"eTag\":\"0x8D9535BBF23051B\",\"lastModified\":\"2021-07-30T13:12:56.3508507Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask94\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask93\",\"eTag\":\"0x8D9535BBF23A13E\",\"lastModified\":\"2021-07-30T13:12:56.3548478Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask93\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask92\",\"eTag\":\"0x8D9535BBF24167A\",\"lastModified\":\"2021-07-30T13:12:56.357849Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask92\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask91\",\"eTag\":\"0x8D9535BBF248B8B\",\"lastModified\":\"2021-07-30T13:12:56.3608459Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask91\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask90\",\"eTag\":\"0x8D9535BBF24D9B3\",\"lastModified\":\"2021-07-30T13:12:56.3628467Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask90\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask89\",\"eTag\":\"0x8D9535BBF254EE3\",\"lastModified\":\"2021-07-30T13:12:56.3658467Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask89\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask88\",\"eTag\":\"0x8D9535BBF259D04\",\"lastModified\":\"2021-07-30T13:12:56.3678468Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask88\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask87\",\"eTag\":\"0x8D9535BBF26122F\",\"lastModified\":\"2021-07-30T13:12:56.3708463Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask87\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask86\",\"eTag\":\"0x8D9535BBF268777\",\"lastModified\":\"2021-07-30T13:12:56.3738487Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask86\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask85\",\"eTag\":\"0x8D9535BBF2723A5\",\"lastModified\":\"2021-07-30T13:12:56.3778469Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask85\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask84\",\"eTag\":\"0x8D9535BBF2771E4\",\"lastModified\":\"2021-07-30T13:12:56.37985Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask84\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask83\",\"eTag\":\"0x8D9535BBF280E5C\",\"lastModified\":\"2021-07-30T13:12:56.3838556Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask83\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask132\",\"eTag\":\"0x8D9D668507AC9B1\",\"lastModified\":\"2022-01-13T07:42:56.4802993Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask132\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask131\",\"eTag\":\"0x8D9D668507B17AA\",\"lastModified\":\"2022-01-13T07:42:56.4822954Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask131\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask130\",\"eTag\":\"0x8D9D668507B65DA\",\"lastModified\":\"2022-01-13T07:42:56.484297Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask130\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask129\",\"eTag\":\"0x8D9D668507D88BC\",\"lastModified\":\"2022-01-13T07:42:56.4982972Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask129\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask128\",\"eTag\":\"0x8D9D668507E7319\",\"lastModified\":\"2022-01-13T07:42:56.5042969Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask128\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask127\",\"eTag\":\"0x8D9D668507EE869\",\"lastModified\":\"2022-01-13T07:42:56.5073001Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask127\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask126\",\"eTag\":\"0x8D9D668507F0F60\",\"lastModified\":\"2022-01-13T07:42:56.5082976Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask126\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask125\",\"eTag\":\"0x8D9D668507F8495\",\"lastModified\":\"2022-01-13T07:42:56.5112981Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask125\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask124\",\"eTag\":\"0x8D9D668507FF9C2\",\"lastModified\":\"2022-01-13T07:42:56.5142978Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask124\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask123\",\"eTag\":\"0x8D9D66850806EF5\",\"lastModified\":\"2022-01-13T07:42:56.5172981Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask123\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask122\",\"eTag\":\"0x8D9D6685080BD24\",\"lastModified\":\"2022-01-13T07:42:56.5192996Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask122\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask121\",\"eTag\":\"0x8D9D66850815969\",\"lastModified\":\"2022-01-13T07:42:56.5233001Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask121\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask120\",\"eTag\":\"0x8D9D66850826AD4\",\"lastModified\":\"2022-01-13T07:42:56.5302996Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask120\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask119\",\"eTag\":\"0x8D9D6685082DFFE\",\"lastModified\":\"2022-01-13T07:42:56.533299Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask119\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask118\",\"eTag\":\"0x8D9D66850835526\",\"lastModified\":\"2022-01-13T07:42:56.5362982Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask118\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask117\",\"eTag\":\"0x8D9D6685083A354\",\"lastModified\":\"2022-01-13T07:42:56.5382996Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask117\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask116\",\"eTag\":\"0x8D9D66850843F97\",\"lastModified\":\"2022-01-13T07:42:56.5422999Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask116\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask115\",\"eTag\":\"0x8D9D66850848DBC\",\"lastModified\":\"2022-01-13T07:42:56.5443004Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask115\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask114\",\"eTag\":\"0x8D9D66850852A16\",\"lastModified\":\"2022-01-13T07:42:56.548303Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask114\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask113\",\"eTag\":\"0x8D9D66850861456\",\"lastModified\":\"2022-01-13T07:42:56.5542998Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask113\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask112\",\"eTag\":\"0x8D9D668508689A8\",\"lastModified\":\"2022-01-13T07:42:56.5573032Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask112\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask111\",\"eTag\":\"0x8D9D66850874CCE\",\"lastModified\":\"2022-01-13T07:42:56.562299Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask111\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask110\",\"eTag\":\"0x8D9D6685087C22D\",\"lastModified\":\"2022-01-13T07:42:56.5653037Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask110\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask109\",\"eTag\":\"0x8D9D6685088FA97\",\"lastModified\":\"2022-01-13T07:42:56.5733015Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask109\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask108\",\"eTag\":\"0x8D9D6685089219E\",\"lastModified\":\"2022-01-13T07:42:56.5743006Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask108\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask107\",\"eTag\":\"0x8D9D668508996ED\",\"lastModified\":\"2022-01-13T07:42:56.5773037Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask107\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask106\",\"eTag\":\"0x8D9D668508A8123\",\"lastModified\":\"2022-01-13T07:42:56.5832995Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask106\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask105\",\"eTag\":\"0x8D9D668508AF664\",\"lastModified\":\"2022-01-13T07:42:56.5863012Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask105\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask104\",\"eTag\":\"0x8D9D668508B9291\",\"lastModified\":\"2022-01-13T07:42:56.5902993Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask104\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask103\",\"eTag\":\"0x8D9D668508BE0C0\",\"lastModified\":\"2022-01-13T07:42:56.5923008Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask103\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask102\",\"eTag\":\"0x8D9D668508C7CF3\",\"lastModified\":\"2022-01-13T07:42:56.5962995Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask102\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask101\",\"eTag\":\"0x8D9D668508CCB29\",\"lastModified\":\"2022-01-13T07:42:56.5983017Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask101\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask100\",\"eTag\":\"0x8D9D668508D675E\",\"lastModified\":\"2022-01-13T07:42:56.6023006Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask100\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask98\",\"eTag\":\"0x8D9D668508E9FE6\",\"lastModified\":\"2022-01-13T07:42:56.6103014Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask98\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask97\",\"eTag\":\"0x8D9D668508F8A44\",\"lastModified\":\"2022-01-13T07:42:56.6163012Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask97\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask96\",\"eTag\":\"0x8D9D6685090268C\",\"lastModified\":\"2022-01-13T07:42:56.620302Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask96\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask95\",\"eTag\":\"0x8D9D6685090C2D0\",\"lastModified\":\"2022-01-13T07:42:56.6243024Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask95\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask94\",\"eTag\":\"0x8D9D668509110EC\",\"lastModified\":\"2022-01-13T07:42:56.626302Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask94\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask93\",\"eTag\":\"0x8D9D6685091AD29\",\"lastModified\":\"2022-01-13T07:42:56.6303017Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask93\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask92\",\"eTag\":\"0x8D9D66850924958\",\"lastModified\":\"2022-01-13T07:42:56.6343Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask92\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask91\",\"eTag\":\"0x8D9D6685092BEB6\",\"lastModified\":\"2022-01-13T07:42:56.6373046Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask91\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask90\",\"eTag\":\"0x8D9D668509333CE\",\"lastModified\":\"2022-01-13T07:42:56.6403022Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask90\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask89\",\"eTag\":\"0x8D9D66850941E39\",\"lastModified\":\"2022-01-13T07:42:56.6463033Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask89\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask88\",\"eTag\":\"0x8D9D66850946C55\",\"lastModified\":\"2022-01-13T07:42:56.6483029Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask88\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask87\",\"eTag\":\"0x8D9D66850950889\",\"lastModified\":\"2022-01-13T07:42:56.6523017Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask87\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask86\",\"eTag\":\"0x8D9D66850957DBD\",\"lastModified\":\"2022-01-13T07:42:56.6553021Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask86\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask85\",\"eTag\":\"0x8D9D6685096411C\",\"lastModified\":\"2022-01-13T07:42:56.6603036Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask85\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask84\",\"eTag\":\"0x8D9D66850968F41\",\"lastModified\":\"2022-01-13T07:42:56.6623041Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask84\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask83\",\"eTag\":\"0x8D9D66850972B7B\",\"lastModified\":\"2022-01-13T07:42:56.6663035Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask83\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask99\",\"eTag\":\"0x8D9D668508E51E4\",\"lastModified\":\"2022-01-13T07:42:56.6083044Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask99\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -93133,9 +93133,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:55 GMT + - Thu, 13 Jan 2022 07:42:56 GMT request-id: - - b3210eed-673b-4667-829e-547607dece11 + - 49c9c080-0793-4831-b56f-45544a7d76b7 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -98211,67 +98211,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:56 GMT + - Thu, 13 Jan 2022 07:42:57 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask82\",\"eTag\":\"0x8D9535BBFC06F55\",\"lastModified\":\"2021-07-30T13:12:57.3824853Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask82\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask81\",\"eTag\":\"0x8D9535BBFC1329B\",\"lastModified\":\"2021-07-30T13:12:57.3874843Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask81\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask80\",\"eTag\":\"0x8D9535BBFC159AB\",\"lastModified\":\"2021-07-30T13:12:57.3884843Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask80\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask79\",\"eTag\":\"0x8D9535BBFC1CEDE\",\"lastModified\":\"2021-07-30T13:12:57.3914846Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask79\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask78\",\"eTag\":\"0x8D9535BBFC2440C\",\"lastModified\":\"2021-07-30T13:12:57.3944844Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask78\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask77\",\"eTag\":\"0x8D9535BBFC2B931\",\"lastModified\":\"2021-07-30T13:12:57.3974833Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask77\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask76\",\"eTag\":\"0x8D9535BBFC3075C\",\"lastModified\":\"2021-07-30T13:12:57.3994844Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask76\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask75\",\"eTag\":\"0x8D9535BBFC3558C\",\"lastModified\":\"2021-07-30T13:12:57.401486Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask75\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask74\",\"eTag\":\"0x8D9535BBFC3F1BD\",\"lastModified\":\"2021-07-30T13:12:57.4054845Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask74\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask73\",\"eTag\":\"0x8D9535BBFC48E2E\",\"lastModified\":\"2021-07-30T13:12:57.4094894Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask73\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask72\",\"eTag\":\"0x8D9535BBFC57855\",\"lastModified\":\"2021-07-30T13:12:57.4154837Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask72\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask71\",\"eTag\":\"0x8D9535BBFC5C683\",\"lastModified\":\"2021-07-30T13:12:57.4174851Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask71\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask70\",\"eTag\":\"0x8D9535BBFC614A5\",\"lastModified\":\"2021-07-30T13:12:57.4194853Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask70\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask69\",\"eTag\":\"0x8D9535BBFC689CF\",\"lastModified\":\"2021-07-30T13:12:57.4224847Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask69\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask68\",\"eTag\":\"0x8D9535BBFC6FF08\",\"lastModified\":\"2021-07-30T13:12:57.4254856Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask68\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask67\",\"eTag\":\"0x8D9535BBFC74D27\",\"lastModified\":\"2021-07-30T13:12:57.4274855Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask67\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask66\",\"eTag\":\"0x8D9535BBFC7C254\",\"lastModified\":\"2021-07-30T13:12:57.4304852Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask66\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask65\",\"eTag\":\"0x8D9535BBFC83781\",\"lastModified\":\"2021-07-30T13:12:57.4334849Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask65\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask64\",\"eTag\":\"0x8D9535BBFC8D3C6\",\"lastModified\":\"2021-07-30T13:12:57.4374854Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask64\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask63\",\"eTag\":\"0x8D9535BBFC921E5\",\"lastModified\":\"2021-07-30T13:12:57.4394853Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask63\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask62\",\"eTag\":\"0x8D9535BBFC99716\",\"lastModified\":\"2021-07-30T13:12:57.4424854Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask62\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask61\",\"eTag\":\"0x8D9535BBFCA0C48\",\"lastModified\":\"2021-07-30T13:12:57.4454856Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask61\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask58\",\"eTag\":\"0x8D9535BBFCBE135\",\"lastModified\":\"2021-07-30T13:12:57.4574901Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask58\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask60\",\"eTag\":\"0x8D9535BBFCB6BF1\",\"lastModified\":\"2021-07-30T13:12:57.4544881Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask60\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask59\",\"eTag\":\"0x8D9535BBFCBE135\",\"lastModified\":\"2021-07-30T13:12:57.4574901Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask59\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask57\",\"eTag\":\"0x8D9535BBFCBE135\",\"lastModified\":\"2021-07-30T13:12:57.4574901Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask57\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask54\",\"eTag\":\"0x8D9535BBFCD40B1\",\"lastModified\":\"2021-07-30T13:12:57.4664881Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask54\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask55\",\"eTag\":\"0x8D9535BBFCCF282\",\"lastModified\":\"2021-07-30T13:12:57.4644866Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask55\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask53\",\"eTag\":\"0x8D9535BBFCDB5DD\",\"lastModified\":\"2021-07-30T13:12:57.4694877Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask53\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask51\",\"eTag\":\"0x8D9535BBFCFD8A8\",\"lastModified\":\"2021-07-30T13:12:57.4834856Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask51\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask52\",\"eTag\":\"0x8D9535BBFCE521F\",\"lastModified\":\"2021-07-30T13:12:57.4734879Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask52\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask50\",\"eTag\":\"0x8D9535BBFCFFFC8\",\"lastModified\":\"2021-07-30T13:12:57.4844872Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask50\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask48\",\"eTag\":\"0x8D9535BBFD0EA1E\",\"lastModified\":\"2021-07-30T13:12:57.4904862Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask48\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask49\",\"eTag\":\"0x8D9535BBFD074F5\",\"lastModified\":\"2021-07-30T13:12:57.4874869Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask49\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask47\",\"eTag\":\"0x8D9535BBFD15F77\",\"lastModified\":\"2021-07-30T13:12:57.4934903Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask47\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask46\",\"eTag\":\"0x8D9535BBFD2229C\",\"lastModified\":\"2021-07-30T13:12:57.498486Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask46\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask56\",\"eTag\":\"0x8D9535BBFCC083B\",\"lastModified\":\"2021-07-30T13:12:57.4584891Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask56\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask44\",\"eTag\":\"0x8D9535BBFD30D0F\",\"lastModified\":\"2021-07-30T13:12:57.5044879Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask44\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask45\",\"eTag\":\"0x8D9535BBFD270D6\",\"lastModified\":\"2021-07-30T13:12:57.5004886Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask45\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask41\",\"eTag\":\"0x8D9535BBFD41E78\",\"lastModified\":\"2021-07-30T13:12:57.5114872Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask41\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask39\",\"eTag\":\"0x8D9535BBFD508F9\",\"lastModified\":\"2021-07-30T13:12:57.5174905Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask39\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask38\",\"eTag\":\"0x8D9535BBFD5F340\",\"lastModified\":\"2021-07-30T13:12:57.523488Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask38\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask42\",\"eTag\":\"0x8D9535BBFD3D06E\",\"lastModified\":\"2021-07-30T13:12:57.5094894Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask42\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask43\",\"eTag\":\"0x8D9535BBFD35B4B\",\"lastModified\":\"2021-07-30T13:12:57.5064907Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask43\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask40\",\"eTag\":\"0x8D9535BBFD493AA\",\"lastModified\":\"2021-07-30T13:12:57.5144874Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask40\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask35\",\"eTag\":\"0x8D9535BBFD72BBB\",\"lastModified\":\"2021-07-30T13:12:57.5314875Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask35\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask36\",\"eTag\":\"0x8D9535BBFD6DD93\",\"lastModified\":\"2021-07-30T13:12:57.5294867Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask36\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask34\",\"eTag\":\"0x8D9535BBFD7A0E5\",\"lastModified\":\"2021-07-30T13:12:57.5344869Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask34\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask37\",\"eTag\":\"0x8D9535BBFD64161\",\"lastModified\":\"2021-07-30T13:12:57.5254881Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask37\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask33\",\"eTag\":\"0x8D9535BBFD7EF12\",\"lastModified\":\"2021-07-30T13:12:57.5364882Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask33\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask82\",\"eTag\":\"0x8D9D66850E968FC\",\"lastModified\":\"2022-01-13T07:42:57.2052732Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask82\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask81\",\"eTag\":\"0x8D9D66850EAA154\",\"lastModified\":\"2022-01-13T07:42:57.2132692Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask81\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask80\",\"eTag\":\"0x8D9D66850EAEF74\",\"lastModified\":\"2022-01-13T07:42:57.2152692Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask80\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask79\",\"eTag\":\"0x8D9D66850EB649F\",\"lastModified\":\"2022-01-13T07:42:57.2182687Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask79\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask78\",\"eTag\":\"0x8D9D66850EBB2CA\",\"lastModified\":\"2022-01-13T07:42:57.2202698Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask78\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask77\",\"eTag\":\"0x8D9D66850EBD9CC\",\"lastModified\":\"2022-01-13T07:42:57.2212684Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask77\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask76\",\"eTag\":\"0x8D9D66850EC760B\",\"lastModified\":\"2022-01-13T07:42:57.2252683Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask76\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask75\",\"eTag\":\"0x8D9D66850ECC43A\",\"lastModified\":\"2022-01-13T07:42:57.2272698Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask75\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask74\",\"eTag\":\"0x8D9D66850ED3964\",\"lastModified\":\"2022-01-13T07:42:57.2302692Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask74\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask73\",\"eTag\":\"0x8D9D66850EDFCA6\",\"lastModified\":\"2022-01-13T07:42:57.2352678Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask73\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask72\",\"eTag\":\"0x8D9D66850EE71E1\",\"lastModified\":\"2022-01-13T07:42:57.2382689Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask72\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask71\",\"eTag\":\"0x8D9D66850EEC010\",\"lastModified\":\"2022-01-13T07:42:57.2402704Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask71\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask70\",\"eTag\":\"0x8D9D66850EF8360\",\"lastModified\":\"2022-01-13T07:42:57.2452704Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask70\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask68\",\"eTag\":\"0x8D9D66850EFF88F\",\"lastModified\":\"2022-01-13T07:42:57.2482703Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask68\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask69\",\"eTag\":\"0x8D9D66850EFAA85\",\"lastModified\":\"2022-01-13T07:42:57.2462725Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask69\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask67\",\"eTag\":\"0x8D9D66850F094CC\",\"lastModified\":\"2022-01-13T07:42:57.25227Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask67\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask65\",\"eTag\":\"0x8D9D66850F13124\",\"lastModified\":\"2022-01-13T07:42:57.2562724Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask65\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask66\",\"eTag\":\"0x8D9D66850F0E2F4\",\"lastModified\":\"2022-01-13T07:42:57.2542708Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask66\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask64\",\"eTag\":\"0x8D9D66850F21B6E\",\"lastModified\":\"2022-01-13T07:42:57.2622702Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask64\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask63\",\"eTag\":\"0x8D9D66850F2699A\",\"lastModified\":\"2022-01-13T07:42:57.2642714Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask63\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask62\",\"eTag\":\"0x8D9D66850F2DEDA\",\"lastModified\":\"2022-01-13T07:42:57.267273Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask62\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask61\",\"eTag\":\"0x8D9D66850F353E8\",\"lastModified\":\"2022-01-13T07:42:57.2702696Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask61\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask60\",\"eTag\":\"0x8D9D66850F3C934\",\"lastModified\":\"2022-01-13T07:42:57.2732724Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask60\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask59\",\"eTag\":\"0x8D9D66850F43E61\",\"lastModified\":\"2022-01-13T07:42:57.2762721Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask59\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask58\",\"eTag\":\"0x8D9D66850F48C7A\",\"lastModified\":\"2022-01-13T07:42:57.2782714Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask58\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask57\",\"eTag\":\"0x8D9D66850F501A5\",\"lastModified\":\"2022-01-13T07:42:57.2812709Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask57\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask56\",\"eTag\":\"0x8D9D66850F59DC4\",\"lastModified\":\"2022-01-13T07:42:57.2852676Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask56\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask55\",\"eTag\":\"0x8D9D66850F612FC\",\"lastModified\":\"2022-01-13T07:42:57.2882684Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask55\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask54\",\"eTag\":\"0x8D9D66850F66131\",\"lastModified\":\"2022-01-13T07:42:57.2902705Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask54\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask53\",\"eTag\":\"0x8D9D66850F77294\",\"lastModified\":\"2022-01-13T07:42:57.2972692Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask53\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask52\",\"eTag\":\"0x8D9D66850F8D232\",\"lastModified\":\"2022-01-13T07:42:57.3062706Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask52\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask51\",\"eTag\":\"0x8D9D66850F8F943\",\"lastModified\":\"2022-01-13T07:42:57.3072707Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask51\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask49\",\"eTag\":\"0x8D9D66850F8F943\",\"lastModified\":\"2022-01-13T07:42:57.3072707Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask49\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask48\",\"eTag\":\"0x8D9D66850F9477A\",\"lastModified\":\"2022-01-13T07:42:57.309273Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask48\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask50\",\"eTag\":\"0x8D9D66850F9207D\",\"lastModified\":\"2022-01-13T07:42:57.3082749Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask50\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask47\",\"eTag\":\"0x8D9D66850F9BCA4\",\"lastModified\":\"2022-01-13T07:42:57.3122724Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask47\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask46\",\"eTag\":\"0x8D9D66850FA31E8\",\"lastModified\":\"2022-01-13T07:42:57.3152744Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask46\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask45\",\"eTag\":\"0x8D9D66850FACE05\",\"lastModified\":\"2022-01-13T07:42:57.3192709Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask45\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask44\",\"eTag\":\"0x8D9D66850FB433E\",\"lastModified\":\"2022-01-13T07:42:57.3222718Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask44\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask43\",\"eTag\":\"0x8D9D66850FBB884\",\"lastModified\":\"2022-01-13T07:42:57.325274Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask43\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask42\",\"eTag\":\"0x8D9D66850FC7BB2\",\"lastModified\":\"2022-01-13T07:42:57.3302706Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask42\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask41\",\"eTag\":\"0x8D9D66850FCC9E4\",\"lastModified\":\"2022-01-13T07:42:57.3322724Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask41\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask40\",\"eTag\":\"0x8D9D66850FD3F08\",\"lastModified\":\"2022-01-13T07:42:57.3352712Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask40\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask39\",\"eTag\":\"0x8D9D66850FD8D3B\",\"lastModified\":\"2022-01-13T07:42:57.3372731Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask39\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask38\",\"eTag\":\"0x8D9D66850FE2962\",\"lastModified\":\"2022-01-13T07:42:57.3412706Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask38\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask36\",\"eTag\":\"0x8D9D66850FF13E1\",\"lastModified\":\"2022-01-13T07:42:57.3472737Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask36\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask37\",\"eTag\":\"0x8D9D66850FEECB3\",\"lastModified\":\"2022-01-13T07:42:57.3462707Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask37\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask35\",\"eTag\":\"0x8D9D66850FFD713\",\"lastModified\":\"2022-01-13T07:42:57.3522707Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask35\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask34\",\"eTag\":\"0x8D9D66851004C3E\",\"lastModified\":\"2022-01-13T07:42:57.3552702Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask34\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask33\",\"eTag\":\"0x8D9D6685100736D\",\"lastModified\":\"2022-01-13T07:42:57.3562733Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask33\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -98279,9 +98279,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:56 GMT + - Thu, 13 Jan 2022 07:42:56 GMT request-id: - - 2dbe5f0a-6677-4f6c-9e86-cb92077aed3d + - fc095a70-91fd-4d9e-9a5b-58223988c845 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -103357,67 +103357,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:57 GMT + - Thu, 13 Jan 2022 07:42:57 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask32\",\"eTag\":\"0x8D9535BC0273D04\",\"lastModified\":\"2021-07-30T13:12:58.056218Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask32\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask30\",\"eTag\":\"0x8D9535BC0282755\",\"lastModified\":\"2021-07-30T13:12:58.0622165Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask30\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask31\",\"eTag\":\"0x8D9535BC027B223\",\"lastModified\":\"2021-07-30T13:12:58.0592163Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask31\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask28\",\"eTag\":\"0x8D9535BC0295FE4\",\"lastModified\":\"2021-07-30T13:12:58.070218Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask28\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask29\",\"eTag\":\"0x8D9535BC0287587\",\"lastModified\":\"2021-07-30T13:12:58.0642183Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask29\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask27\",\"eTag\":\"0x8D9535BC02A4A4E\",\"lastModified\":\"2021-07-30T13:12:58.076219Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask27\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask26\",\"eTag\":\"0x8D9535BC02ABF71\",\"lastModified\":\"2021-07-30T13:12:58.0792177Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask26\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask25\",\"eTag\":\"0x8D9535BC02B34AE\",\"lastModified\":\"2021-07-30T13:12:58.082219Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask25\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask24\",\"eTag\":\"0x8D9535BC02B82D3\",\"lastModified\":\"2021-07-30T13:12:58.0842195Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask24\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask23\",\"eTag\":\"0x8D9535BC02BF7EF\",\"lastModified\":\"2021-07-30T13:12:58.0872175Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask23\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask22\",\"eTag\":\"0x8D9535BC02C461A\",\"lastModified\":\"2021-07-30T13:12:58.0892186Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask22\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask21\",\"eTag\":\"0x8D9535BC02CE271\",\"lastModified\":\"2021-07-30T13:12:58.0932209Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask21\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask20\",\"eTag\":\"0x8D9535BC02D7E99\",\"lastModified\":\"2021-07-30T13:12:58.0972185Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask20\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask19\",\"eTag\":\"0x8D9535BC02DF3B0\",\"lastModified\":\"2021-07-30T13:12:58.100216Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask19\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask18\",\"eTag\":\"0x8D9535BC02E68F6\",\"lastModified\":\"2021-07-30T13:12:58.1032182Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask18\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask17\",\"eTag\":\"0x8D9535BC02EB706\",\"lastModified\":\"2021-07-30T13:12:58.1052166Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask17\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask16\",\"eTag\":\"0x8D9535BC02F5334\",\"lastModified\":\"2021-07-30T13:12:58.1092148Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask16\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask15\",\"eTag\":\"0x8D9535BC02FA17D\",\"lastModified\":\"2021-07-30T13:12:58.1112189Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask15\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask14\",\"eTag\":\"0x8D9535BC0303DC8\",\"lastModified\":\"2021-07-30T13:12:58.11522Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask14\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask13\",\"eTag\":\"0x8D9535BC0308BDF\",\"lastModified\":\"2021-07-30T13:12:58.1172191Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask13\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask12\",\"eTag\":\"0x8D9535BC0314F29\",\"lastModified\":\"2021-07-30T13:12:58.1222185Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask12\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask11\",\"eTag\":\"0x8D9535BC031C461\",\"lastModified\":\"2021-07-30T13:12:58.1252193Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask11\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask10\",\"eTag\":\"0x8D9535BC032397D\",\"lastModified\":\"2021-07-30T13:12:58.1282173Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask10\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask9\",\"eTag\":\"0x8D9535BC032AECC\",\"lastModified\":\"2021-07-30T13:12:58.1312204Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask9\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask8\",\"eTag\":\"0x8D9535BC032FCE7\",\"lastModified\":\"2021-07-30T13:12:58.1332199Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask8\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask7\",\"eTag\":\"0x8D9535BC0337200\",\"lastModified\":\"2021-07-30T13:12:58.1362176Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask7\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask6\",\"eTag\":\"0x8D9535BC0345C79\",\"lastModified\":\"2021-07-30T13:12:58.1422201Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask6\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask5\",\"eTag\":\"0x8D9535BC034D1A0\",\"lastModified\":\"2021-07-30T13:12:58.1452192Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask5\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask4\",\"eTag\":\"0x8D9535BC03594F7\",\"lastModified\":\"2021-07-30T13:12:58.1502199Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask4\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask3\",\"eTag\":\"0x8D9535BC0363131\",\"lastModified\":\"2021-07-30T13:12:58.1542193Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask3\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask2\",\"eTag\":\"0x8D9535BC037DEE3\",\"lastModified\":\"2021-07-30T13:12:58.1652195Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask2\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask1\",\"eTag\":\"0x8D9535BC0387B18\",\"lastModified\":\"2021-07-30T13:12:58.1692184Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask1\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask0\",\"eTag\":\"0x8D9535BC038C93F\",\"lastModified\":\"2021-07-30T13:12:58.1712191Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask0\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask682\",\"eTag\":\"0x8D9535BC038C93F\",\"lastModified\":\"2021-07-30T13:12:58.1712191Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask682\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask681\",\"eTag\":\"0x8D9535BC0393E6D\",\"lastModified\":\"2021-07-30T13:12:58.1742189Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask681\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask680\",\"eTag\":\"0x8D9535BC0396588\",\"lastModified\":\"2021-07-30T13:12:58.17522Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask680\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask679\",\"eTag\":\"0x8D9535BC03A28D7\",\"lastModified\":\"2021-07-30T13:12:58.1802199Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask679\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask678\",\"eTag\":\"0x8D9535BC03AC51E\",\"lastModified\":\"2021-07-30T13:12:58.1842206Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask678\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask677\",\"eTag\":\"0x8D9535BC03B1335\",\"lastModified\":\"2021-07-30T13:12:58.1862197Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask677\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask676\",\"eTag\":\"0x8D9535BC03B8878\",\"lastModified\":\"2021-07-30T13:12:58.1892216Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask676\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask675\",\"eTag\":\"0x8D9535BC03BFD84\",\"lastModified\":\"2021-07-30T13:12:58.192218Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask675\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask674\",\"eTag\":\"0x8D9535BC03C99D1\",\"lastModified\":\"2021-07-30T13:12:58.1962193Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask674\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask673\",\"eTag\":\"0x8D9535BC03D5D31\",\"lastModified\":\"2021-07-30T13:12:58.2012209Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask673\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask672\",\"eTag\":\"0x8D9535BC03DF95A\",\"lastModified\":\"2021-07-30T13:12:58.2052186Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask672\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask671\",\"eTag\":\"0x8D9535BC03E4788\",\"lastModified\":\"2021-07-30T13:12:58.20722Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask671\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask670\",\"eTag\":\"0x8D9535BC03EBCAB\",\"lastModified\":\"2021-07-30T13:12:58.2102187Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask670\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask669\",\"eTag\":\"0x8D9535BC03F31DB\",\"lastModified\":\"2021-07-30T13:12:58.2132187Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask669\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask668\",\"eTag\":\"0x8D9535BC03FA705\",\"lastModified\":\"2021-07-30T13:12:58.2162181Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask668\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask667\",\"eTag\":\"0x8D9535BC04091A6\",\"lastModified\":\"2021-07-30T13:12:58.2222246Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask667\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask666\",\"eTag\":\"0x8D9535BC040DF94\",\"lastModified\":\"2021-07-30T13:12:58.2242196Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask666\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask32\",\"eTag\":\"0x8D9D668513D2EA9\",\"lastModified\":\"2022-01-13T07:42:57.7542825Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask32\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask31\",\"eTag\":\"0x8D9D668513DA3C0\",\"lastModified\":\"2022-01-13T07:42:57.75728Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask31\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask30\",\"eTag\":\"0x8D9D668513E6718\",\"lastModified\":\"2022-01-13T07:42:57.7622808Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask30\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask29\",\"eTag\":\"0x8D9D668513EDC4A\",\"lastModified\":\"2022-01-13T07:42:57.765281Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask29\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask28\",\"eTag\":\"0x8D9D668513FEDF0\",\"lastModified\":\"2022-01-13T07:42:57.7722864Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask28\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask27\",\"eTag\":\"0x8D9D668514062FB\",\"lastModified\":\"2022-01-13T07:42:57.7752827Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask27\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask26\",\"eTag\":\"0x8D9D6685140FF26\",\"lastModified\":\"2022-01-13T07:42:57.7792806Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask26\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask25\",\"eTag\":\"0x8D9D66851419B75\",\"lastModified\":\"2022-01-13T07:42:57.7832821Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask25\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask24\",\"eTag\":\"0x8D9D668514237B7\",\"lastModified\":\"2022-01-13T07:42:57.7872823Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask24\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask23\",\"eTag\":\"0x8D9D668514285B4\",\"lastModified\":\"2022-01-13T07:42:57.7892788Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask23\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask22\",\"eTag\":\"0x8D9D6685142FB14\",\"lastModified\":\"2022-01-13T07:42:57.7922836Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask22\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask21\",\"eTag\":\"0x8D9D66851439738\",\"lastModified\":\"2022-01-13T07:42:57.7962808Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask21\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask19\",\"eTag\":\"0x8D9D66851445A88\",\"lastModified\":\"2022-01-13T07:42:57.8012808Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask19\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask18\",\"eTag\":\"0x8D9D6685144F6BB\",\"lastModified\":\"2022-01-13T07:42:57.8052795Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask18\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask17\",\"eTag\":\"0x8D9D66851456C07\",\"lastModified\":\"2022-01-13T07:42:57.8082823Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask17\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask16\",\"eTag\":\"0x8D9D6685145E123\",\"lastModified\":\"2022-01-13T07:42:57.8112803Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask16\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask20\",\"eTag\":\"0x8D9D668514544E6\",\"lastModified\":\"2022-01-13T07:42:57.8072806Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask20\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask13\",\"eTag\":\"0x8D9D6685146F28F\",\"lastModified\":\"2022-01-13T07:42:57.8182799Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask13\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask14\",\"eTag\":\"0x8D9D6685146A476\",\"lastModified\":\"2022-01-13T07:42:57.8162806Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask14\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask15\",\"eTag\":\"0x8D9D6685146A476\",\"lastModified\":\"2022-01-13T07:42:57.8162806Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask15\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask12\",\"eTag\":\"0x8D9D66851480400\",\"lastModified\":\"2022-01-13T07:42:57.82528Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask12\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask11\",\"eTag\":\"0x8D9D66851480400\",\"lastModified\":\"2022-01-13T07:42:57.82528Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask11\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask10\",\"eTag\":\"0x8D9D6685148793A\",\"lastModified\":\"2022-01-13T07:42:57.828281Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask10\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask9\",\"eTag\":\"0x8D9D6685148EE78\",\"lastModified\":\"2022-01-13T07:42:57.8312824Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask9\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask8\",\"eTag\":\"0x8D9D66851493CA2\",\"lastModified\":\"2022-01-13T07:42:57.8332834Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask8\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask6\",\"eTag\":\"0x8D9D668514A26F8\",\"lastModified\":\"2022-01-13T07:42:57.8392824Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask6\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask5\",\"eTag\":\"0x8D9D668514A9C35\",\"lastModified\":\"2022-01-13T07:42:57.8422837Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask5\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask7\",\"eTag\":\"0x8D9D6685149FFD8\",\"lastModified\":\"2022-01-13T07:42:57.8382808Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask7\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask3\",\"eTag\":\"0x8D9D668514BAD95\",\"lastModified\":\"2022-01-13T07:42:57.8492821Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask3\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask4\",\"eTag\":\"0x8D9D668514B86B8\",\"lastModified\":\"2022-01-13T07:42:57.8482872Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask4\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask2\",\"eTag\":\"0x8D9D668514C22C1\",\"lastModified\":\"2022-01-13T07:42:57.8522817Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask2\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask0\",\"eTag\":\"0x8D9D668514CE616\",\"lastModified\":\"2022-01-13T07:42:57.8572822Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask0\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask1\",\"eTag\":\"0x8D9D668514D0D1A\",\"lastModified\":\"2022-01-13T07:42:57.858281Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask1\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask682\",\"eTag\":\"0x8D9D668514DD080\",\"lastModified\":\"2022-01-13T07:42:57.8632832Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask682\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask681\",\"eTag\":\"0x8D9D668514DF77D\",\"lastModified\":\"2022-01-13T07:42:57.8642813Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask681\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask680\",\"eTag\":\"0x8D9D668514E93C1\",\"lastModified\":\"2022-01-13T07:42:57.8682817Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask680\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask679\",\"eTag\":\"0x8D9D668514F7E2A\",\"lastModified\":\"2022-01-13T07:42:57.8742826Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask679\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask678\",\"eTag\":\"0x8D9D668514F7E2A\",\"lastModified\":\"2022-01-13T07:42:57.8742826Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask678\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask677\",\"eTag\":\"0x8D9D668514FCC53\",\"lastModified\":\"2022-01-13T07:42:57.8762835Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask677\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask676\",\"eTag\":\"0x8D9D66851508F92\",\"lastModified\":\"2022-01-13T07:42:57.8812818Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask676\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask675\",\"eTag\":\"0x8D9D6685150DDB3\",\"lastModified\":\"2022-01-13T07:42:57.8832819Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask675\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask674\",\"eTag\":\"0x8D9D6685151EF26\",\"lastModified\":\"2022-01-13T07:42:57.8902822Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask674\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask673\",\"eTag\":\"0x8D9D6685151EF26\",\"lastModified\":\"2022-01-13T07:42:57.8902822Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask673\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask672\",\"eTag\":\"0x8D9D66851526465\",\"lastModified\":\"2022-01-13T07:42:57.8932837Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask672\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask671\",\"eTag\":\"0x8D9D668515300BC\",\"lastModified\":\"2022-01-13T07:42:57.897286Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask671\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask670\",\"eTag\":\"0x8D9D66851534ECA\",\"lastModified\":\"2022-01-13T07:42:57.8992842Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask670\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask669\",\"eTag\":\"0x8D9D66851541222\",\"lastModified\":\"2022-01-13T07:42:57.904285Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask669\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask667\",\"eTag\":\"0x8D9D66851548739\",\"lastModified\":\"2022-01-13T07:42:57.9072825Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask667\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask668\",\"eTag\":\"0x8D9D66851543939\",\"lastModified\":\"2022-01-13T07:42:57.9052857Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask668\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask666\",\"eTag\":\"0x8D9D668515598B1\",\"lastModified\":\"2022-01-13T07:42:57.9142833Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask666\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -103425,9 +103425,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:58 GMT + - Thu, 13 Jan 2022 07:42:57 GMT request-id: - - 0daeceab-204d-47b6-8b75-65bd2cb34305 + - f6e5d8a8-dfef-4cd6-a26d-56e9fb364464 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -106786,50 +106786,50 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:12:58 GMT + - Thu, 13 Jan 2022 07:42:58 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/jobs/batch/addtaskcollection?api-version=2022-01-01.15.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask665\",\"eTag\":\"0x8D9535BC0766BE3\",\"lastModified\":\"2021-07-30T13:12:58.5751523Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask665\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask664\",\"eTag\":\"0x8D9535BC076BA12\",\"lastModified\":\"2021-07-30T13:12:58.5771538Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask664\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask663\",\"eTag\":\"0x8D9535BC0772F3B\",\"lastModified\":\"2021-07-30T13:12:58.5801531Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask663\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask662\",\"eTag\":\"0x8D9535BC077A464\",\"lastModified\":\"2021-07-30T13:12:58.5831524Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask662\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask661\",\"eTag\":\"0x8D9535BC077F298\",\"lastModified\":\"2021-07-30T13:12:58.5851544Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask661\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask660\",\"eTag\":\"0x8D9535BC07840B6\",\"lastModified\":\"2021-07-30T13:12:58.5871542Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask660\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask659\",\"eTag\":\"0x8D9535BC079522E\",\"lastModified\":\"2021-07-30T13:12:58.594155Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask659\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask658\",\"eTag\":\"0x8D9535BC079EE75\",\"lastModified\":\"2021-07-30T13:12:58.5981557Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask658\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask657\",\"eTag\":\"0x8D9535BC07A63BA\",\"lastModified\":\"2021-07-30T13:12:58.6011578Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask657\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask656\",\"eTag\":\"0x8D9535BC07AB1C9\",\"lastModified\":\"2021-07-30T13:12:58.6031561Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask656\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask655\",\"eTag\":\"0x8D9535BC07B26FF\",\"lastModified\":\"2021-07-30T13:12:58.6061567Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask655\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask654\",\"eTag\":\"0x8D9535BC07B9C41\",\"lastModified\":\"2021-07-30T13:12:58.6091585Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask654\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask653\",\"eTag\":\"0x8D9535BC07C3852\",\"lastModified\":\"2021-07-30T13:12:58.6131538Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask653\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask652\",\"eTag\":\"0x8D9535BC07C5F85\",\"lastModified\":\"2021-07-30T13:12:58.6141573Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask652\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask651\",\"eTag\":\"0x8D9535BC07CADA0\",\"lastModified\":\"2021-07-30T13:12:58.6161568Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask651\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask650\",\"eTag\":\"0x8D9535BC07D22EA\",\"lastModified\":\"2021-07-30T13:12:58.6191594Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask650\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask649\",\"eTag\":\"0x8D9535BC07DE60A\",\"lastModified\":\"2021-07-30T13:12:58.6241546Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask649\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask648\",\"eTag\":\"0x8D9535BC07E5B3F\",\"lastModified\":\"2021-07-30T13:12:58.6271551Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask648\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask647\",\"eTag\":\"0x8D9535BC07ED070\",\"lastModified\":\"2021-07-30T13:12:58.6301552Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask647\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask646\",\"eTag\":\"0x8D9535BC07F1E9D\",\"lastModified\":\"2021-07-30T13:12:58.6321565Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask646\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask645\",\"eTag\":\"0x8D9535BC07F93CE\",\"lastModified\":\"2021-07-30T13:12:58.6351566Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask645\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask644\",\"eTag\":\"0x8D9535BC08008FB\",\"lastModified\":\"2021-07-30T13:12:58.6381563Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask644\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask643\",\"eTag\":\"0x8D9535BC0805717\",\"lastModified\":\"2021-07-30T13:12:58.6401559Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask643\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask642\",\"eTag\":\"0x8D9535BC080CC39\",\"lastModified\":\"2021-07-30T13:12:58.6431545Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask642\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask641\",\"eTag\":\"0x8D9535BC0818F8D\",\"lastModified\":\"2021-07-30T13:12:58.6481549Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask641\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask640\",\"eTag\":\"0x8D9535BC081DDC3\",\"lastModified\":\"2021-07-30T13:12:58.6501571Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask640\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask639\",\"eTag\":\"0x8D9535BC08252ED\",\"lastModified\":\"2021-07-30T13:12:58.6531565Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask639\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask634\",\"eTag\":\"0x8D9535BC088466F\",\"lastModified\":\"2021-07-30T13:12:58.6921583Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask634\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask635\",\"eTag\":\"0x8D9535BC088466F\",\"lastModified\":\"2021-07-30T13:12:58.6921583Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask635\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask636\",\"eTag\":\"0x8D9535BC088466F\",\"lastModified\":\"2021-07-30T13:12:58.6921583Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask636\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask637\",\"eTag\":\"0x8D9535BC0886DA1\",\"lastModified\":\"2021-07-30T13:12:58.6931617Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask637\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask638\",\"eTag\":\"0x8D9535BC087D130\",\"lastModified\":\"2021-07-30T13:12:58.6891568Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask638\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask633\",\"eTag\":\"0x8D9535BC088466F\",\"lastModified\":\"2021-07-30T13:12:58.6921583Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask633\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask660\",\"eTag\":\"0x8D9D6685182753C\",\"lastModified\":\"2022-01-13T07:42:58.2082876Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask660\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask662\",\"eTag\":\"0x8D9D6685181B1EB\",\"lastModified\":\"2022-01-13T07:42:58.2032875Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask662\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask657\",\"eTag\":\"0x8D9D6685183FBFC\",\"lastModified\":\"2022-01-13T07:42:58.2182908Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask657\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask659\",\"eTag\":\"0x8D9D6685182EA6E\",\"lastModified\":\"2022-01-13T07:42:58.2112878Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask659\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask658\",\"eTag\":\"0x8D9D668518386B1\",\"lastModified\":\"2022-01-13T07:42:58.2152881Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask658\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask656\",\"eTag\":\"0x8D9D6685184BF1C\",\"lastModified\":\"2022-01-13T07:42:58.223286Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask656\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask665\",\"eTag\":\"0x8D9D668517FB604\",\"lastModified\":\"2022-01-13T07:42:58.1902852Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask665\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask664\",\"eTag\":\"0x8D9D66851800437\",\"lastModified\":\"2022-01-13T07:42:58.1922871Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask664\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask654\",\"eTag\":\"0x8D9D6685185A98B\",\"lastModified\":\"2022-01-13T07:42:58.2292875Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask654\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask663\",\"eTag\":\"0x8D9D6685180C7A6\",\"lastModified\":\"2022-01-13T07:42:58.1972902Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask663\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask652\",\"eTag\":\"0x8D9D668518693F2\",\"lastModified\":\"2022-01-13T07:42:58.2352882Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask652\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask655\",\"eTag\":\"0x8D9D66851850D4C\",\"lastModified\":\"2022-01-13T07:42:58.2252876Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask655\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask650\",\"eTag\":\"0x8D9D66851873024\",\"lastModified\":\"2022-01-13T07:42:58.2392868Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask650\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask653\",\"eTag\":\"0x8D9D6685185F79E\",\"lastModified\":\"2022-01-13T07:42:58.2312862Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask653\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask661\",\"eTag\":\"0x8D9D66851820019\",\"lastModified\":\"2022-01-13T07:42:58.2052889Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask661\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask648\",\"eTag\":\"0x8D9D66851895317\",\"lastModified\":\"2022-01-13T07:42:58.2532887Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask648\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask646\",\"eTag\":\"0x8D9D6685189C84D\",\"lastModified\":\"2022-01-13T07:42:58.2562893Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask646\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask651\",\"eTag\":\"0x8D9D6685186BAFB\",\"lastModified\":\"2022-01-13T07:42:58.2362875Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask651\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask649\",\"eTag\":\"0x8D9D668518841B0\",\"lastModified\":\"2022-01-13T07:42:58.2462896Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask649\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask647\",\"eTag\":\"0x8D9D66851897A27\",\"lastModified\":\"2022-01-13T07:42:58.2542887Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask647\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask645\",\"eTag\":\"0x8D9D668518A6472\",\"lastModified\":\"2022-01-13T07:42:58.2602866Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask645\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask644\",\"eTag\":\"0x8D9D668518AB2A8\",\"lastModified\":\"2022-01-13T07:42:58.2622888Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask644\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask643\",\"eTag\":\"0x8D9D668518B4EE6\",\"lastModified\":\"2022-01-13T07:42:58.2662886Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask643\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask641\",\"eTag\":\"0x8D9D668518C1253\",\"lastModified\":\"2022-01-13T07:42:58.2712915Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask641\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask642\",\"eTag\":\"0x8D9D668518B75FA\",\"lastModified\":\"2022-01-13T07:42:58.267289Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask642\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask640\",\"eTag\":\"0x8D9D668518CAE67\",\"lastModified\":\"2022-01-13T07:42:58.2752871Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask640\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask639\",\"eTag\":\"0x8D9D668518D2397\",\"lastModified\":\"2022-01-13T07:42:58.2782871Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask639\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask638\",\"eTag\":\"0x8D9D668518D9900\",\"lastModified\":\"2022-01-13T07:42:58.2812928Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask638\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask637\",\"eTag\":\"0x8D9D668518DE6FD\",\"lastModified\":\"2022-01-13T07:42:58.2832893Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask637\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask636\",\"eTag\":\"0x8D9D668518EAA66\",\"lastModified\":\"2022-01-13T07:42:58.2882918Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask636\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask635\",\"eTag\":\"0x8D9D668518EF85D\",\"lastModified\":\"2022-01-13T07:42:58.2902877Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask635\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask634\",\"eTag\":\"0x8D9D668518F46B4\",\"lastModified\":\"2022-01-13T07:42:58.2922932Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask634\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask633\",\"eTag\":\"0x8D9D668518FBBCF\",\"lastModified\":\"2022-01-13T07:42:58.2952911Z\",\"location\":\"https://batch.southcentralus.batch.azure.com/jobs/batch/tasks/mytask633\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -106837,9 +106837,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:12:58 GMT + - Thu, 13 Jan 2022 07:42:57 GMT request-id: - - f77d499c-a657-4e69-9ac7-3712405a7c6d + - 4938104f-e0d3-4b3f-a66b-8a6da22da9e5 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_update_pools.yaml b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_update_pools.yaml index aae5aee90758..90fadffe08a5 100644 --- a/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_update_pools.yaml +++ b/sdk/batch/azure-batch/tests/recordings/test_batch.test_batch_update_pools.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: '{"id": "batch_paas_f0de0ddf", "vmSize": "standard_d1_v2", "cloudServiceConfiguration": + body: '{"id": "batch_paas_f0de0ddf", "vmSize": "standard_d2_v2", "cloudServiceConfiguration": {"osFamily": "5"}, "startTask": {"commandLine": "cmd.exe /c \"echo hello world\"", "resourceFiles": [{"httpUrl": "https://blobsource.com", "filePath": "filename.txt"}], "environmentSettings": [{"name": "ENV_VAR", "value": "env_value"}], "userIdentity": @@ -17,14 +17,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:18:51 GMT + - Thu, 13 Jan 2022 07:48:52 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools?api-version=2022-01-01.15.0 response: body: string: '' @@ -34,15 +34,15 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:18:51 GMT + - Thu, 13 Jan 2022 07:48:53 GMT etag: - - '0x8D9535C93599829' + - '0x8D9D669253434B8' last-modified: - - Fri, 30 Jul 2021 13:18:52 GMT + - Thu, 13 Jan 2022 07:48:53 GMT location: - https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf request-id: - - cff8899b-2e3e-445a-9ea7-c5855421617b + - fb882e73-5389-4bb6-9760-754d4460ea65 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -69,14 +69,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:18:52 GMT + - Thu, 13 Jan 2022 07:48:53 GMT method: POST - uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf/updateproperties?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf/updateproperties?api-version=2022-01-01.15.0 response: body: string: '' @@ -88,13 +88,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:18:52 GMT + - Thu, 13 Jan 2022 07:48:54 GMT etag: - - '0x8D9535C941A77AC' + - '0x8D9D66925E9CA63' last-modified: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT request-id: - - aa2a0d21-ea03-46dc-ae0e-10685a107900 + - afe7b722-159a-43bd-9d3d-2dfc82c36fa0 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -118,14 +118,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT method: PATCH - uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2022-01-01.15.0 response: body: string: '' @@ -135,13 +135,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:18:52 GMT + - Thu, 13 Jan 2022 07:48:54 GMT etag: - - '0x8D9535C943049B2' + - '0x8D9D66925F8BE75' last-modified: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT request-id: - - 92a83786-518c-4f2e-b961-9cb34f69f8d5 + - 508eebbc-7ff1-4f6b-be12-039e79f902de server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -163,14 +163,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT method: HEAD - uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2022-01-01.15.0 response: body: string: '' @@ -178,13 +178,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:18:52 GMT + - Thu, 13 Jan 2022 07:48:54 GMT etag: - - '0x8D9535C943049B2' + - '0x8D9D66925F8BE75' last-modified: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT request-id: - - e47aa348-0032-4ced-b2cc-3df8c0d42432 + - 0aa4ee37-db13-45b8-b9be-69f4aacdb2df server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -206,17 +206,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2022-01-01.15.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_paas_f0de0ddf\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf\",\"eTag\":\"0x8D9535C943049B2\",\"lastModified\":\"2021-07-30T13:18:53.7925042Z\",\"creationTime\":\"2021-07-30T13:18:52.3854889Z\",\"state\":\"active\",\"stateTransitionTime\":\"2021-07-30T13:18:52.3854889Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2021-07-30T13:18:53.6255018Z\",\"vmSize\":\"standard_d1_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"metadata\":[\r\n + string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_paas_f0de0ddf\",\"url\":\"https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf\",\"eTag\":\"0x8D9D66925F8BE75\",\"lastModified\":\"2022-01-13T07:48:54.6604661Z\",\"creationTime\":\"2022-01-13T07:48:53.3724344Z\",\"state\":\"active\",\"stateTransitionTime\":\"2022-01-13T07:48:53.3724344Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2022-01-13T07:48:54.5384616Z\",\"vmSize\":\"standard_d2_v2\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[],\"metadata\":[\r\n \ {\r\n \"name\":\"foo2\",\"value\":\"bar2\"\r\n }\r\n ],\"taskSlotsPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"cloudServiceConfiguration\":{\r\n \ \"osFamily\":\"5\",\"osVersion\":\"*\"\r\n }\r\n}" @@ -226,13 +226,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT etag: - - '0x8D9535C943049B2' + - '0x8D9D66925F8BE75' last-modified: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT request-id: - - fc55a617-4d05-4305-ae9f-3d26a4f2b812 + - 1c9cef6f-c05b-41f8-9b64-4de6be9a9c96 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -254,16 +254,16 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT return-client-request-id: - 'false' method: GET - uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2021-06-01.14.0&$select=id%2Cstate&$expand=stats&timeout=30 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2022-01-01.15.0&$select=id%2Cstate&$expand=stats&timeout=30 response: body: string: "{\r\n \"odata.metadata\":\"https://batch.southcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_paas_f0de0ddf\",\"state\":\"active\"\r\n}" @@ -273,13 +273,13 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT etag: - - '0x8D9535C943049B2' + - '0x8D9D66925F8BE75' last-modified: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT request-id: - - 0cf155f1-a28d-45ff-b587-3eb2f73ae30a + - 65782971-1666-469c-b58e-ecc8290f2f78 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -303,14 +303,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.3 (macOS-10.15.7-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.4 - azure-batch/11.0.0 Azure-SDK-For-Python + - python/3.7.5 (Windows-10-10.0.22000-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-batch/12.0.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Fri, 30 Jul 2021 13:18:54 GMT + - Thu, 13 Jan 2022 07:48:55 GMT method: DELETE - uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2021-06-01.14.0 + uri: https://batch.southcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2022-01-01.15.0 response: body: string: '' @@ -318,9 +318,9 @@ interactions: dataserviceversion: - '3.0' date: - - Fri, 30 Jul 2021 13:18:53 GMT + - Thu, 13 Jan 2022 07:48:54 GMT request-id: - - 1fedb0af-e624-4704-9312-917b7c981fa2 + - 510072de-8068-4f9a-b333-8450ccee5f24 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: diff --git a/sdk/batch/azure-batch/tests/test_batch.py b/sdk/batch/azure-batch/tests/test_batch.py index 2cc350082188..6664dc6ef374 100644 --- a/sdk/batch/azure-batch/tests/test_batch.py +++ b/sdk/batch/azure-batch/tests/test_batch.py @@ -33,7 +33,7 @@ AZURE_LOCATION = 'southcentralus' BATCH_ENVIRONMENT = None # Set this to None if testing against prod BATCH_RESOURCE = 'https://batch.core.windows.net/' -DEFAULT_VM_SIZE = 'standard_d1_v2' +DEFAULT_VM_SIZE = 'standard_d2_v2' class BatchTest(AzureMgmtTestCase): @@ -210,9 +210,9 @@ def test_batch_create_pools(self, **kwargs): image_reference=models.ImageReference( publisher='Canonical', offer='UbuntuServer', - sku='16.04-LTS' + sku='18.04-LTS' ), - node_agent_sku_id='batch.node.ubuntu 16.04') + node_agent_sku_id='batch.node.ubuntu 18.04') ) self.assertBatchError('InvalidPropertyValue', client.pool.add, test_network_pool, models.PoolAddOptions(timeout=45)) @@ -228,7 +228,7 @@ def test_batch_create_pools(self, **kwargs): "/images/FakeImage" "/versions/version" ), - node_agent_sku_id='batch.node.ubuntu 16.04' + node_agent_sku_id='batch.node.ubuntu 18.04' ) ) self.assertBatchError('InvalidPropertyValue', client.pool.add, test_image_pool, models.PoolAddOptions(timeout=45)) @@ -242,9 +242,9 @@ def test_batch_create_pools(self, **kwargs): image_reference=models.ImageReference( publisher='Canonical', offer='UbuntuServer', - sku='16.04-LTS' + sku='18.04-LTS' ), - node_agent_sku_id='batch.node.ubuntu 16.04', + node_agent_sku_id='batch.node.ubuntu 18.04', data_disks=[data_disk]) ) response = client.pool.add(test_disk_pool) @@ -262,9 +262,9 @@ def test_batch_create_pools(self, **kwargs): image_reference=models.ImageReference( publisher='Canonical', offer='UbuntuServer', - sku='16.04-LTS' + sku='18.04-LTS' ), - node_agent_sku_id='batch.node.ubuntu 16.04', + node_agent_sku_id='batch.node.ubuntu 18.04', data_disks=[data_disk]) ) response = client.pool.add(test_app_pool) @@ -280,12 +280,12 @@ def test_batch_create_pools(self, **kwargs): image_reference=models.ImageReference( publisher='Canonical', offer='UbuntuServer', - sku='16.04-LTS' + sku='18.04-LTS' ), disk_encryption_configuration=models.DiskEncryptionConfiguration( targets=[models.DiskEncryptionTarget.temporary_disk] ), - node_agent_sku_id='batch.node.ubuntu 16.04') + node_agent_sku_id='batch.node.ubuntu 18.04') ) response = client.pool.add(test_ade_pool) self.assertIsNone(response) @@ -435,6 +435,10 @@ def test_batch_scale_pools(self, batch_pool, **kwargs): '$TargetDedicatedNodes=3;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue') # Test Disable Autoscale + pool = client.pool.get(batch_pool.name) + while self.is_live and pool.allocation_state != models.AllocationState.steady: + time.sleep(5) + pool = client.pool.get(batch_pool.name) response = client.pool.disable_auto_scale(batch_pool.name) self.assertIsNone(response) @@ -569,11 +573,11 @@ def test_batch_network_configuration(self, **kwargs): ) ) virtual_machine_config = models.VirtualMachineConfiguration( - node_agent_sku_id="batch.node.ubuntu 16.04", + node_agent_sku_id="batch.node.ubuntu 18.04", image_reference=models.ImageReference( publisher="Canonical", offer="UbuntuServer", - sku="16.04-LTS") + sku="18.04-LTS") ) pool = models.PoolAddParameter( id=self.get_resource_name('batch_network_'), @@ -620,7 +624,7 @@ def test_batch_compute_nodes(self, batch_pool, **kwargs): # Test Upload Log config = models.UploadBatchServiceLogsConfiguration( - container_url = "https://test.blob.core.windows.net:443/test-container", + container_url = "https://computecontainer.blob.core.windows.net/", start_time = datetime.datetime.utcnow() - datetime.timedelta(minutes=6)) result = client.compute_node.upload_batch_service_logs(batch_pool.name, nodes[0].id, config) self.assertIsNotNone(result)