diff --git a/sdk/batch/azure-batch/CHANGELOG.md b/sdk/batch/azure-batch/CHANGELOG.md index ee0dbae544fb..de99cd98aeea 100644 --- a/sdk/batch/azure-batch/CHANGELOG.md +++ b/sdk/batch/azure-batch/CHANGELOG.md @@ -1,5 +1,16 @@ # Release History +## 9.0.0 (2020-03-24) + +### Features +- Added ability to encrypt `ComputeNode` disk drives using the new `disk_encryption_configuration` property of `VirtualMachineConfiguration`. +- **[Breaking]** The `virtual_machine_id` property of `ImageReference` can now only refer to a Shared Image Gallery image. +- **[Breaking]** Pools can now be provisioned without a public IP using the new `public_ip_address_configuration` property of `NetworkConfiguration`. + - The `public_ips` property of `NetworkConfiguration` has moved in to `public_ip_address_configuration` as well. This property can only be specified if `ip_provisioning_type` is `UserManaged`. + +### REST API version +This version of the Batch .NET client library targets version 2020-03-01.11.0 of the Azure Batch REST API. + ## 8.0.0 (2019-8-5) - Using REST API version 2019-08-01.10.0. 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 aa97cb39ee24..98b4f95a03fd 100644 --- a/sdk/batch/azure-batch/azure/batch/_batch_service_client.py +++ b/sdk/batch/azure-batch/azure/batch/_batch_service_client.py @@ -25,7 +25,6 @@ from . import models from .custom.patch import patch_client - class BatchServiceClient(SDKClient): """A client for issuing REST requests to the Azure Batch service. @@ -65,7 +64,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 = '2019-08-01.10.0' + self.api_version = '2020-03-01.11.0' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) diff --git a/sdk/batch/azure-batch/azure/batch/_version.py b/sdk/batch/azure-batch/azure/batch/_version.py index 84f10e0b7af6..3adccb394638 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 = "8.0.0" +VERSION = "9.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 dc663ec4e8fd..4669afdae92c 100644 --- a/sdk/batch/azure-batch/azure/batch/models/__init__.py +++ b/sdk/batch/azure-batch/azure/batch/models/__init__.py @@ -63,6 +63,7 @@ from ._models_py3 import ContainerRegistry from ._models_py3 import DataDisk from ._models_py3 import DeleteCertificateError + from ._models_py3 import DiskEncryptionConfiguration from ._models_py3 import EnvironmentSetting from ._models_py3 import ErrorMessage from ._models_py3 import ExitCodeMapping @@ -174,6 +175,7 @@ from ._models_py3 import PoolUpdatePropertiesOptions from ._models_py3 import PoolUpdatePropertiesParameter from ._models_py3 import PoolUsageMetrics + from ._models_py3 import PublicIPAddressConfiguration from ._models_py3 import RecentJob from ._models_py3 import ResizeError from ._models_py3 import ResourceFile @@ -269,6 +271,7 @@ from ._models import ContainerRegistry from ._models import DataDisk from ._models import DeleteCertificateError + from ._models import DiskEncryptionConfiguration from ._models import EnvironmentSetting from ._models import ErrorMessage from ._models import ExitCodeMapping @@ -380,6 +383,7 @@ from ._models import PoolUpdatePropertiesOptions from ._models import PoolUpdatePropertiesParameter from ._models import PoolUsageMetrics + from ._models import PublicIPAddressConfiguration from ._models import RecentJob from ._models import ResizeError from ._models import ResourceFile @@ -451,9 +455,11 @@ CertificateVisibility, CachingType, StorageAccountType, + DiskEncryptionTarget, DynamicVNetAssignmentScope, InboundEndpointProtocol, NetworkSecurityGroupRuleAccess, + IPAddressProvisioningType, PoolLifetimeOption, OnAllTasksComplete, OnTaskFailure, @@ -532,6 +538,7 @@ 'ContainerRegistry', 'DataDisk', 'DeleteCertificateError', + 'DiskEncryptionConfiguration', 'EnvironmentSetting', 'ErrorMessage', 'ExitCodeMapping', @@ -643,6 +650,7 @@ 'PoolUpdatePropertiesOptions', 'PoolUpdatePropertiesParameter', 'PoolUsageMetrics', + 'PublicIPAddressConfiguration', 'RecentJob', 'ResizeError', 'ResourceFile', @@ -713,9 +721,11 @@ 'CertificateVisibility', 'CachingType', 'StorageAccountType', + 'DiskEncryptionTarget', 'DynamicVNetAssignmentScope', 'InboundEndpointProtocol', 'NetworkSecurityGroupRuleAccess', + 'IPAddressProvisioningType', 'PoolLifetimeOption', 'OnAllTasksComplete', 'OnTaskFailure', 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 595aebd89300..d7b18b9736b7 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 @@ -118,6 +118,12 @@ class StorageAccountType(str, Enum): premium_lrs = "premium_lrs" #: The data disk should use premium locally redundant storage. +class DiskEncryptionTarget(str, Enum): + + os_disk = "osdisk" #: The OS Disk on the compute node is encrypted. + temporary_disk = "temporarydisk" #: The temporary disk on the compute node is encrypted. On Linux this encryption applies to other partitions (such as those on mounted data disks) when encryption occurs at boot time. + + class DynamicVNetAssignmentScope(str, Enum): none = "none" #: No dynamic VNet assignment is enabled. @@ -136,6 +142,13 @@ class NetworkSecurityGroupRuleAccess(str, Enum): deny = "deny" #: Deny access. +class IPAddressProvisioningType(str, Enum): + + batch_managed = "batchmanaged" #: A public IP will be created and managed by Batch. There may be multiple public IPs depending on the size of the Pool. + user_managed = "usermanaged" #: Public IPs are provided by the user and will be used to provision the Compute Nodes. + no_public_ip_addresses = "nopublicipaddresses" #: No public IP Address will be created. + + class PoolLifetimeOption(str, Enum): job_schedule = "jobschedule" #: The Pool exists for the lifetime of the Job Schedule. The Batch Service creates the Pool when it creates the first Job on the schedule. You may apply this option only to Job Schedules, not to Jobs. diff --git a/sdk/batch/azure-batch/azure/batch/models/_models.py b/sdk/batch/azure-batch/azure/batch/models/_models.py index 682e1ef0b06d..4a39e284c1b7 100644 --- a/sdk/batch/azure-batch/azure/batch/models/_models.py +++ b/sdk/batch/azure-batch/azure/batch/models/_models.py @@ -697,8 +697,7 @@ class CertificateAddParameter(Model): values include: 'pfx', 'cer' :type certificate_format: str or ~azure.batch.models.CertificateFormat :param password: The password to access the Certificate's private key. - This is required if the Certificate format is pfx. It should be omitted if - the Certificate format is cer. + This must be omitted if the Certificate format is cer. :type password: str """ @@ -2624,6 +2623,27 @@ def __init__(self, **kwargs): self.values = kwargs.get('values', None) +class DiskEncryptionConfiguration(Model): + """The disk encryption configuration applied on compute nodes in the pool. + Disk encryption configuration is not supported on Linux pool created with + Shared Image Gallery Image. + + :param targets: The list of disk targets Batch Service will encrypt on the + compute node. If omitted, no disks on the compute nodes in the pool will + be encrypted. On Linux pool, only "TemporaryDisk" is supported; on Windows + pool, "OsDisk" and "TemporaryDisk" must be specified. + :type targets: list[str or ~azure.batch.models.DiskEncryptionTarget] + """ + + _attribute_map = { + 'targets': {'key': 'targets', 'type': '[DiskEncryptionTarget]'}, + } + + def __init__(self, **kwargs): + super(DiskEncryptionConfiguration, self).__init__(**kwargs) + self.targets = kwargs.get('targets', None) + + class EnvironmentSetting(Model): """An environment variable to be set on a Task process. @@ -3282,19 +3302,16 @@ class ImageReference(Model): Image. A value of 'latest' can be specified to select the latest version of an Image. If omitted, the default is 'latest'. :type version: str - :param virtual_machine_image_id: The ARM resource identifier of the - Virtual Machine Image or Shared Image Gallery Image. Computes Compute - Nodes of the Pool will be created using this Image Id. This is of either - the form - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/images/{imageName} - for Virtual Machine Image or - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageDefinitionName}/versions/{versionId} - for SIG image. This property is mutually exclusive with other - ImageReference properties. For Virtual Machine Image it must be in the - same region and subscription as the Azure Batch account. For SIG image it - must have replicas in the same region as the Azure Batch account. For - information about the firewall settings for the Batch Compute Node agent - to communicate with the Batch service see + :param virtual_machine_image_id: The ARM resource identifier of the Shared + Image Gallery Image. Compute Nodes in the Pool will be created using this + Image Id. This is of the + form/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageDefinitionName}/versions/{versionId}. + This property is mutually exclusive with other ImageReference properties. + For Virtual Machine Image it must be in the same region and subscription + as the Azure Batch account. The Shared Image Gallery Image must have + replicas in the same region as the Azure Batch account. For information + about the firewall settings for the Batch Compute Node agent to + communicate with the Batch service see https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration. :type virtual_machine_image_id: str """ @@ -6479,7 +6496,7 @@ class NetworkConfiguration(Model): Azure Batch Account. The specified subnet should have enough free IP addresses to accommodate the number of Compute Nodes in the Pool. If the subnet doesn't have enough free IP addresses, the Pool will partially - allocate Nodes, and a resize error will occur. The 'MicrosoftAzureBatch' + allocate Nodes and a resize error will occur. The 'MicrosoftAzureBatch' service principal must have the 'Classic Virtual Machine Contributor' Role-Based Access Control (RBAC) role for the specified VNet. The specified subnet must allow communication from the Azure Batch service to @@ -6508,21 +6525,18 @@ class NetworkConfiguration(Model): Pools with the virtualMachineConfiguration property. :type endpoint_configuration: ~azure.batch.models.PoolEndpointConfiguration - :param public_ips: The list of public IPs which the Batch service will use - when provisioning Compute Nodes. The number of IPs specified here limits - the maximum size of the Pool - 50 dedicated nodes or 20 low-priority nodes - can be allocated for each public IP. For example, a pool needing 150 - 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}. - :type public_ips: list[str] + :param public_ip_address_configuration: The Public IPAddress configuration + for Compute Nodes in the Batch Pool. Public IP configuration property is + only supported on Pools with the virtualMachineConfiguration property. + :type public_ip_address_configuration: + ~azure.batch.models.PublicIPAddressConfiguration """ _attribute_map = { 'subnet_id': {'key': 'subnetId', 'type': 'str'}, 'dynamic_vnet_assignment_scope': {'key': 'dynamicVNetAssignmentScope', 'type': 'DynamicVNetAssignmentScope'}, 'endpoint_configuration': {'key': 'endpointConfiguration', 'type': 'PoolEndpointConfiguration'}, - 'public_ips': {'key': 'publicIPs', 'type': '[str]'}, + 'public_ip_address_configuration': {'key': 'publicIPAddressConfiguration', 'type': 'PublicIPAddressConfiguration'}, } def __init__(self, **kwargs): @@ -6530,7 +6544,7 @@ def __init__(self, **kwargs): self.subnet_id = kwargs.get('subnet_id', None) self.dynamic_vnet_assignment_scope = kwargs.get('dynamic_vnet_assignment_scope', None) self.endpoint_configuration = kwargs.get('endpoint_configuration', None) - self.public_ips = kwargs.get('public_ips', None) + self.public_ip_address_configuration = kwargs.get('public_ip_address_configuration', None) class NetworkSecurityGroupRule(Model): @@ -6543,7 +6557,7 @@ class NetworkSecurityGroupRule(Model): number the higher the priority. For example, rules could be specified with order numbers of 150, 250, and 350. The rule with the order number of 150 takes precedence over the rule that has an order of 250. Allowed - priorities are 150 to 3500. If any reserved or duplicate values are + priorities are 150 to 4096. If any reserved or duplicate values are provided the request fails with HTTP status code 400. :type priority: int :param access: Required. The action that should be taken for a specified @@ -8609,6 +8623,35 @@ def __init__(self, **kwargs): self.total_core_hours = kwargs.get('total_core_hours', None) +class PublicIPAddressConfiguration(Model): + """The public IP Address configuration of the networking configuration of a + Pool. + + :param provision: The provisioning type for Public IP Addresses for the + Pool. The default value is BatchManaged. Possible values include: + 'batchManaged', 'userManaged', 'noPublicIPAddresses' + :type provision: str or ~azure.batch.models.IPAddressProvisioningType + :param ip_address_ids: The list of public IPs which the Batch service will + use when provisioning Compute Nodes. The number of IPs specified here + limits the maximum size of the Pool - 50 dedicated nodes or 20 + low-priority nodes can be allocated for each public IP. For example, a + pool needing 150 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}. + :type ip_address_ids: list[str] + """ + + _attribute_map = { + 'provision': {'key': 'provision', 'type': 'IPAddressProvisioningType'}, + 'ip_address_ids': {'key': 'ipAddressIds', 'type': '[str]'}, + } + + def __init__(self, **kwargs): + super(PublicIPAddressConfiguration, self).__init__(**kwargs) + self.provision = kwargs.get('provision', None) + self.ip_address_ids = kwargs.get('ip_address_ids', None) + + class RecentJob(Model): """Information about the most recent Job to run under the Job Schedule. @@ -10648,6 +10691,11 @@ class VirtualMachineConfiguration(Model): this Pool must specify the containerSettings property, and all other Tasks may specify it. :type container_configuration: ~azure.batch.models.ContainerConfiguration + :param disk_encryption_configuration: The disk encryption configuration + for the pool. If specified, encryption is performed on each node in the + pool during node provisioning. + :type disk_encryption_configuration: + ~azure.batch.models.DiskEncryptionConfiguration """ _validation = { @@ -10662,6 +10710,7 @@ class VirtualMachineConfiguration(Model): 'data_disks': {'key': 'dataDisks', 'type': '[DataDisk]'}, 'license_type': {'key': 'licenseType', 'type': 'str'}, 'container_configuration': {'key': 'containerConfiguration', 'type': 'ContainerConfiguration'}, + 'disk_encryption_configuration': {'key': 'diskEncryptionConfiguration', 'type': 'DiskEncryptionConfiguration'}, } def __init__(self, **kwargs): @@ -10672,6 +10721,7 @@ def __init__(self, **kwargs): self.data_disks = kwargs.get('data_disks', None) self.license_type = kwargs.get('license_type', None) self.container_configuration = kwargs.get('container_configuration', None) + self.disk_encryption_configuration = kwargs.get('disk_encryption_configuration', None) class WindowsConfiguration(Model): 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 dc25bcb3f27b..5999c45812bc 100644 --- a/sdk/batch/azure-batch/azure/batch/models/_models_py3.py +++ b/sdk/batch/azure-batch/azure/batch/models/_models_py3.py @@ -697,8 +697,7 @@ class CertificateAddParameter(Model): values include: 'pfx', 'cer' :type certificate_format: str or ~azure.batch.models.CertificateFormat :param password: The password to access the Certificate's private key. - This is required if the Certificate format is pfx. It should be omitted if - the Certificate format is cer. + This must be omitted if the Certificate format is cer. :type password: str """ @@ -2624,6 +2623,27 @@ def __init__(self, *, code: str=None, message: str=None, values=None, **kwargs) self.values = values +class DiskEncryptionConfiguration(Model): + """The disk encryption configuration applied on compute nodes in the pool. + Disk encryption configuration is not supported on Linux pool created with + Shared Image Gallery Image. + + :param targets: The list of disk targets Batch Service will encrypt on the + compute node. If omitted, no disks on the compute nodes in the pool will + be encrypted. On Linux pool, only "TemporaryDisk" is supported; on Windows + pool, "OsDisk" and "TemporaryDisk" must be specified. + :type targets: list[str or ~azure.batch.models.DiskEncryptionTarget] + """ + + _attribute_map = { + 'targets': {'key': 'targets', 'type': '[DiskEncryptionTarget]'}, + } + + def __init__(self, *, targets=None, **kwargs) -> None: + super(DiskEncryptionConfiguration, self).__init__(**kwargs) + self.targets = targets + + class EnvironmentSetting(Model): """An environment variable to be set on a Task process. @@ -3282,19 +3302,16 @@ class ImageReference(Model): Image. A value of 'latest' can be specified to select the latest version of an Image. If omitted, the default is 'latest'. :type version: str - :param virtual_machine_image_id: The ARM resource identifier of the - Virtual Machine Image or Shared Image Gallery Image. Computes Compute - Nodes of the Pool will be created using this Image Id. This is of either - the form - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/images/{imageName} - for Virtual Machine Image or - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageDefinitionName}/versions/{versionId} - for SIG image. This property is mutually exclusive with other - ImageReference properties. For Virtual Machine Image it must be in the - same region and subscription as the Azure Batch account. For SIG image it - must have replicas in the same region as the Azure Batch account. For - information about the firewall settings for the Batch Compute Node agent - to communicate with the Batch service see + :param virtual_machine_image_id: The ARM resource identifier of the Shared + Image Gallery Image. Compute Nodes in the Pool will be created using this + Image Id. This is of the + form/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageDefinitionName}/versions/{versionId}. + This property is mutually exclusive with other ImageReference properties. + For Virtual Machine Image it must be in the same region and subscription + as the Azure Batch account. The Shared Image Gallery Image must have + replicas in the same region as the Azure Batch account. For information + about the firewall settings for the Batch Compute Node agent to + communicate with the Batch service see https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration. :type virtual_machine_image_id: str """ @@ -6479,7 +6496,7 @@ class NetworkConfiguration(Model): Azure Batch Account. The specified subnet should have enough free IP addresses to accommodate the number of Compute Nodes in the Pool. If the subnet doesn't have enough free IP addresses, the Pool will partially - allocate Nodes, and a resize error will occur. The 'MicrosoftAzureBatch' + allocate Nodes and a resize error will occur. The 'MicrosoftAzureBatch' service principal must have the 'Classic Virtual Machine Contributor' Role-Based Access Control (RBAC) role for the specified VNet. The specified subnet must allow communication from the Azure Batch service to @@ -6508,29 +6525,26 @@ class NetworkConfiguration(Model): Pools with the virtualMachineConfiguration property. :type endpoint_configuration: ~azure.batch.models.PoolEndpointConfiguration - :param public_ips: The list of public IPs which the Batch service will use - when provisioning Compute Nodes. The number of IPs specified here limits - the maximum size of the Pool - 50 dedicated nodes or 20 low-priority nodes - can be allocated for each public IP. For example, a pool needing 150 - 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}. - :type public_ips: list[str] + :param public_ip_address_configuration: The Public IPAddress configuration + for Compute Nodes in the Batch Pool. Public IP configuration property is + only supported on Pools with the virtualMachineConfiguration property. + :type public_ip_address_configuration: + ~azure.batch.models.PublicIPAddressConfiguration """ _attribute_map = { 'subnet_id': {'key': 'subnetId', 'type': 'str'}, 'dynamic_vnet_assignment_scope': {'key': 'dynamicVNetAssignmentScope', 'type': 'DynamicVNetAssignmentScope'}, 'endpoint_configuration': {'key': 'endpointConfiguration', 'type': 'PoolEndpointConfiguration'}, - 'public_ips': {'key': 'publicIPs', 'type': '[str]'}, + 'public_ip_address_configuration': {'key': 'publicIPAddressConfiguration', 'type': 'PublicIPAddressConfiguration'}, } - def __init__(self, *, subnet_id: str=None, dynamic_vnet_assignment_scope=None, endpoint_configuration=None, public_ips=None, **kwargs) -> None: + def __init__(self, *, subnet_id: str=None, dynamic_vnet_assignment_scope=None, endpoint_configuration=None, public_ip_address_configuration=None, **kwargs) -> None: super(NetworkConfiguration, self).__init__(**kwargs) self.subnet_id = subnet_id self.dynamic_vnet_assignment_scope = dynamic_vnet_assignment_scope self.endpoint_configuration = endpoint_configuration - self.public_ips = public_ips + self.public_ip_address_configuration = public_ip_address_configuration class NetworkSecurityGroupRule(Model): @@ -6543,7 +6557,7 @@ class NetworkSecurityGroupRule(Model): number the higher the priority. For example, rules could be specified with order numbers of 150, 250, and 350. The rule with the order number of 150 takes precedence over the rule that has an order of 250. Allowed - priorities are 150 to 3500. If any reserved or duplicate values are + priorities are 150 to 4096. If any reserved or duplicate values are provided the request fails with HTTP status code 400. :type priority: int :param access: Required. The action that should be taken for a specified @@ -8609,6 +8623,35 @@ def __init__(self, *, pool_id: str, start_time, end_time, vm_size: str, total_co self.total_core_hours = total_core_hours +class PublicIPAddressConfiguration(Model): + """The public IP Address configuration of the networking configuration of a + Pool. + + :param provision: The provisioning type for Public IP Addresses for the + Pool. The default value is BatchManaged. Possible values include: + 'batchManaged', 'userManaged', 'noPublicIPAddresses' + :type provision: str or ~azure.batch.models.IPAddressProvisioningType + :param ip_address_ids: The list of public IPs which the Batch service will + use when provisioning Compute Nodes. The number of IPs specified here + limits the maximum size of the Pool - 50 dedicated nodes or 20 + low-priority nodes can be allocated for each public IP. For example, a + pool needing 150 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}. + :type ip_address_ids: list[str] + """ + + _attribute_map = { + 'provision': {'key': 'provision', 'type': 'IPAddressProvisioningType'}, + 'ip_address_ids': {'key': 'ipAddressIds', 'type': '[str]'}, + } + + def __init__(self, *, provision=None, ip_address_ids=None, **kwargs) -> None: + super(PublicIPAddressConfiguration, self).__init__(**kwargs) + self.provision = provision + self.ip_address_ids = ip_address_ids + + class RecentJob(Model): """Information about the most recent Job to run under the Job Schedule. @@ -10630,7 +10673,7 @@ class VirtualMachineConfiguration(Model): empty. When the Compute Node is removed from the Pool, the disk and all data associated with it is also deleted. The disk is not formatted after being attached, it must be formatted before use - for more information see - https://docs.microsoft.com/en-us/azure/virtual-machines/linux/add-disk + https://docs.microsoft.com/en-us/azure/virtual-machines/linux/classic/attach-disk#initialize-a-new-data-disk-in-linux and https://docs.microsoft.com/en-us/azure/virtual-machines/windows/attach-disk-ps#add-an-empty-data-disk-to-a-virtual-machine. :type data_disks: list[~azure.batch.models.DataDisk] @@ -10648,6 +10691,11 @@ class VirtualMachineConfiguration(Model): this Pool must specify the containerSettings property, and all other Tasks may specify it. :type container_configuration: ~azure.batch.models.ContainerConfiguration + :param disk_encryption_configuration: The disk encryption configuration + for the pool. If specified, encryption is performed on each node in the + pool during node provisioning. + :type disk_encryption_configuration: + ~azure.batch.models.DiskEncryptionConfiguration """ _validation = { @@ -10662,9 +10710,10 @@ class VirtualMachineConfiguration(Model): 'data_disks': {'key': 'dataDisks', 'type': '[DataDisk]'}, 'license_type': {'key': 'licenseType', 'type': 'str'}, 'container_configuration': {'key': 'containerConfiguration', 'type': 'ContainerConfiguration'}, + 'disk_encryption_configuration': {'key': 'diskEncryptionConfiguration', 'type': 'DiskEncryptionConfiguration'}, } - def __init__(self, *, image_reference, node_agent_sku_id: str, windows_configuration=None, data_disks=None, license_type: str=None, container_configuration=None, **kwargs) -> None: + def __init__(self, *, image_reference, node_agent_sku_id: str, windows_configuration=None, data_disks=None, license_type: str=None, container_configuration=None, disk_encryption_configuration=None, **kwargs) -> None: super(VirtualMachineConfiguration, self).__init__(**kwargs) self.image_reference = image_reference self.node_agent_sku_id = node_agent_sku_id @@ -10672,6 +10721,7 @@ def __init__(self, *, image_reference, node_agent_sku_id: str, windows_configura self.data_disks = data_disks self.license_type = license_type self.container_configuration = container_configuration + self.disk_encryption_configuration = disk_encryption_configuration class WindowsConfiguration(Model): diff --git a/sdk/batch/azure-batch/azure/batch/models/_paged_models.py b/sdk/batch/azure-batch/azure/batch/models/_paged_models.py index 8681241d20e0..95e88a79aba9 100644 --- a/sdk/batch/azure-batch/azure/batch/models/_paged_models.py +++ b/sdk/batch/azure-batch/azure/batch/models/_paged_models.py @@ -23,10 +23,8 @@ class ApplicationSummaryPaged(Paged): } def __init__(self, *args, **kwargs): - super(ApplicationSummaryPaged, self).__init__(*args, **kwargs) - class PoolUsageMetricsPaged(Paged): """ A paging container for iterating over a list of :class:`PoolUsageMetrics ` object @@ -38,10 +36,8 @@ class PoolUsageMetricsPaged(Paged): } def __init__(self, *args, **kwargs): - super(PoolUsageMetricsPaged, self).__init__(*args, **kwargs) - class CloudPoolPaged(Paged): """ A paging container for iterating over a list of :class:`CloudPool ` object @@ -53,10 +49,8 @@ class CloudPoolPaged(Paged): } def __init__(self, *args, **kwargs): - super(CloudPoolPaged, self).__init__(*args, **kwargs) - class ImageInformationPaged(Paged): """ A paging container for iterating over a list of :class:`ImageInformation ` object @@ -68,10 +62,8 @@ class ImageInformationPaged(Paged): } def __init__(self, *args, **kwargs): - super(ImageInformationPaged, self).__init__(*args, **kwargs) - class PoolNodeCountsPaged(Paged): """ A paging container for iterating over a list of :class:`PoolNodeCounts ` object @@ -83,10 +75,8 @@ class PoolNodeCountsPaged(Paged): } def __init__(self, *args, **kwargs): - super(PoolNodeCountsPaged, self).__init__(*args, **kwargs) - class CloudJobPaged(Paged): """ A paging container for iterating over a list of :class:`CloudJob ` object @@ -98,10 +88,8 @@ class CloudJobPaged(Paged): } def __init__(self, *args, **kwargs): - super(CloudJobPaged, self).__init__(*args, **kwargs) - class JobPreparationAndReleaseTaskExecutionInformationPaged(Paged): """ A paging container for iterating over a list of :class:`JobPreparationAndReleaseTaskExecutionInformation ` object @@ -113,10 +101,8 @@ class JobPreparationAndReleaseTaskExecutionInformationPaged(Paged): } def __init__(self, *args, **kwargs): - super(JobPreparationAndReleaseTaskExecutionInformationPaged, self).__init__(*args, **kwargs) - class CertificatePaged(Paged): """ A paging container for iterating over a list of :class:`Certificate ` object @@ -128,10 +114,8 @@ class CertificatePaged(Paged): } def __init__(self, *args, **kwargs): - super(CertificatePaged, self).__init__(*args, **kwargs) - class NodeFilePaged(Paged): """ A paging container for iterating over a list of :class:`NodeFile ` object @@ -143,10 +127,8 @@ class NodeFilePaged(Paged): } def __init__(self, *args, **kwargs): - super(NodeFilePaged, self).__init__(*args, **kwargs) - class CloudJobSchedulePaged(Paged): """ A paging container for iterating over a list of :class:`CloudJobSchedule ` object @@ -158,10 +140,8 @@ class CloudJobSchedulePaged(Paged): } def __init__(self, *args, **kwargs): - super(CloudJobSchedulePaged, self).__init__(*args, **kwargs) - class CloudTaskPaged(Paged): """ A paging container for iterating over a list of :class:`CloudTask ` object @@ -173,10 +153,8 @@ class CloudTaskPaged(Paged): } def __init__(self, *args, **kwargs): - super(CloudTaskPaged, self).__init__(*args, **kwargs) - class ComputeNodePaged(Paged): """ A paging container for iterating over a list of :class:`ComputeNode ` object @@ -188,5 +166,4 @@ class ComputeNodePaged(Paged): } def __init__(self, *args, **kwargs): - super(ComputeNodePaged, self).__init__(*args, **kwargs) 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 3ad03275c47c..7fed09e725f4 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: Client API Version. Constant value: "2019-08-01.10.0". + :ivar api_version: Client API Version. Constant value: "2020-03-01.11.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 = "2019-08-01.10.0" + self.api_version = "2020-03-01.11.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 11aa5dfd971d..2d55d456a160 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: Client API Version. Constant value: "2019-08-01.10.0". + :ivar api_version: Client API Version. Constant value: "2020-03-01.11.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 = "2019-08-01.10.0" + self.api_version = "2020-03-01.11.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 ee110cb7c8d3..a55e9625476a 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: Client API Version. Constant value: "2019-08-01.10.0". + :ivar api_version: Client API Version. Constant value: "2020-03-01.11.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 = "2019-08-01.10.0" + self.api_version = "2020-03-01.11.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 0fe65c391d23..4e13a9953a46 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: Client API Version. Constant value: "2019-08-01.10.0". + :ivar api_version: Client API Version. Constant value: "2020-03-01.11.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 = "2019-08-01.10.0" + self.api_version = "2020-03-01.11.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 31d6c7978d24..1b66c1cd930f 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: Client API Version. Constant value: "2019-08-01.10.0". + :ivar api_version: Client API Version. Constant value: "2020-03-01.11.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 = "2019-08-01.10.0" + self.api_version = "2020-03-01.11.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 500b9a9eb381..a1ca0d80d1c0 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: Client API Version. Constant value: "2019-08-01.10.0". + :ivar api_version: Client API Version. Constant value: "2020-03-01.11.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 = "2019-08-01.10.0" + self.api_version = "2020-03-01.11.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 9366bb9987e1..79c21ecde1d8 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: Client API Version. Constant value: "2019-08-01.10.0". + :ivar api_version: Client API Version. Constant value: "2020-03-01.11.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 = "2019-08-01.10.0" + self.api_version = "2020-03-01.11.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 0f916afe26a1..515c204b8b74 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: Client API Version. Constant value: "2019-08-01.10.0". + :ivar api_version: Client API Version. Constant value: "2020-03-01.11.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 = "2019-08-01.10.0" + self.api_version = "2020-03-01.11.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 9244835e47d1..7d39bebb8dd9 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: Client API Version. Constant value: "2019-08-01.10.0". + :ivar api_version: Client API Version. Constant value: "2020-03-01.11.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 = "2019-08-01.10.0" + self.api_version = "2020-03-01.11.0" self.config = config 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 8afa9405c484..3c20c865c20a 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:42:53 GMT + - Tue, 24 Mar 2020 16:52:33 GMT method: GET - uri: https://batchf06f0dd7.westcentralus.batch.azure.com/applications?api-version=2019-08-01.10.0 + uri: https://batchf06f0dd7.westcentralus.batch.azure.com/applications?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf06f0dd7.westcentralus.batch.azure.com/$metadata#listapplicationsummariesresponses\",\"value\":[\r\n @@ -28,9 +28,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:42:54 GMT + - Tue, 24 Mar 2020 16:52:33 GMT request-id: - - ce4f1b92-2d59-4854-adb0-3443bb6a8fc0 + - 00629f19-1e69-4396-9ebf-e59dff7a5952 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -52,14 +52,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:42:54 GMT + - Tue, 24 Mar 2020 16:52:33 GMT method: GET - uri: https://batchf06f0dd7.westcentralus.batch.azure.com/applications/application_id?api-version=2019-08-01.10.0 + uri: https://batchf06f0dd7.westcentralus.batch.azure.com/applications/application_id?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf06f0dd7.westcentralus.batch.azure.com/$metadata#getapplicationsummaryresponse/@Element\",\"id\":\"application_id\",\"versions\":[\r\n @@ -70,9 +70,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:42:54 GMT + - Tue, 24 Mar 2020 16:52:33 GMT request-id: - - 85f5f3f6-5473-4a12-b0ff-f98bd469de4f + - 278f3171-d98d-4530-8e96-f99f4fc845ce 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:42:54 GMT + - Tue, 24 Mar 2020 16:52:33 GMT method: POST - uri: https://batchf06f0dd7.westcentralus.batch.azure.com/jobs/batchf06f0dd7/tasks?api-version=2019-08-01.10.0 + uri: https://batchf06f0dd7.westcentralus.batch.azure.com/jobs/batchf06f0dd7/tasks?api-version=2020-03-01.11.0 response: body: string: '' @@ -117,15 +117,15 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:42:54 GMT + - Tue, 24 Mar 2020 16:52:33 GMT etag: - - '0x8D71AC7CDAD3E13' + - '0x8D7D013BFC50EC9' last-modified: - - Tue, 06 Aug 2019 23:42:54 GMT + - Tue, 24 Mar 2020 16:52:33 GMT location: - https://batchf06f0dd7.westcentralus.batch.azure.com/jobs/batchf06f0dd7/tasks/python_task_with_app_package request-id: - - aeb5ea6c-5ab3-4d76-915b-1f169ffe4fe5 + - ea034570-ff83-4598-b68f-b85f1f8d2a1a server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -147,17 +147,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:42:54 GMT + - Tue, 24 Mar 2020 16:52:33 GMT method: GET - uri: https://batchf06f0dd7.westcentralus.batch.azure.com/jobs/batchf06f0dd7/tasks/python_task_with_app_package?api-version=2019-08-01.10.0 + uri: https://batchf06f0dd7.westcentralus.batch.azure.com/jobs/batchf06f0dd7/tasks/python_task_with_app_package?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batchf06f0dd7.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"python_task_with_app_package\",\"url\":\"https://batchf06f0dd7.westcentralus.batch.azure.com/jobs/batchf06f0dd7/tasks/python_task_with_app_package\",\"eTag\":\"0x8D71AC7CDAD3E13\",\"creationTime\":\"2019-08-06T23:42:54.7711507Z\",\"lastModified\":\"2019-08-06T23:42:54.7711507Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-06T23:42:54.7711507Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batchf06f0dd7.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"python_task_with_app_package\",\"url\":\"https://batchf06f0dd7.westcentralus.batch.azure.com/jobs/batchf06f0dd7/tasks/python_task_with_app_package\",\"eTag\":\"0x8D7D013BFC50EC9\",\"creationTime\":\"2020-03-24T16:52:33.6533193Z\",\"lastModified\":\"2020-03-24T16:52:33.6533193Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T16:52:33.6533193Z\",\"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 @@ -169,13 +169,13 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:42:54 GMT + - Tue, 24 Mar 2020 16:52:33 GMT etag: - - '0x8D71AC7CDAD3E13' + - '0x8D7D013BFC50EC9' last-modified: - - Tue, 06 Aug 2019 23:42:54 GMT + - Tue, 24 Mar 2020 16:52:33 GMT request-id: - - 101340a2-9663-4c93-973c-026c2303cfae + - 0de0b714-3dda-40c9-8f7e-f898a82ba40a 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 8edfdd11d9a7..d30b717386e2 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:48:52 GMT + - Tue, 24 Mar 2020 16:12:31 GMT method: POST - uri: https://batchf0370dc6.westcentralus.batch.azure.com/certificates?api-version=2019-08-01.10.0 + uri: https://batchf0370dc6.westcentralus.batch.azure.com/certificates?api-version=2020-03-01.11.0 response: body: string: '' @@ -32,11 +32,11 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:48:53 GMT + - Tue, 24 Mar 2020 16:12:31 GMT location: - https://batchf0370dc6.westcentralus.batch.azure.com/certificates(ThumbprintAlgorithm=sha1,Thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7) request-id: - - 76e14525-8c5d-4d57-96c8-098879b1daac + - ecc564cd-702d-4e7e-b553-2134e2ecff1a server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -58,18 +58,18 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:48:53 GMT + - Tue, 24 Mar 2020 16:12:31 GMT method: GET - uri: https://batchf0370dc6.westcentralus.batch.azure.com/certificates?api-version=2019-08-01.10.0 + uri: https://batchf0370dc6.westcentralus.batch.azure.com/certificates?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf0370dc6.westcentralus.batch.azure.com/$metadata#certificates\",\"value\":[\r\n - \ {\r\n \"thumbprint\":\"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\"thumbprintAlgorithm\":\"sha1\",\"url\":\"https://batchf0370dc6.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-06T23:48:53.0419488Z\",\"publicData\":\"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n + \ {\r\n \"thumbprint\":\"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\"thumbprintAlgorithm\":\"sha1\",\"url\":\"https://batchf0370dc6.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T16:12:31.7742009Z\",\"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: - - Tue, 06 Aug 2019 23:48:53 GMT + - Tue, 24 Mar 2020 16:12:31 GMT request-id: - - edb85ae7-2e0f-416b-b22f-f0f27428196e + - 2095d962-5725-4192-8726-6e98e2ca3152 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -101,26 +101,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:48:53 GMT + - Tue, 24 Mar 2020 16:12:31 GMT method: GET - uri: https://batchf0370dc6.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)?api-version=2019-08-01.10.0 + uri: https://batchf0370dc6.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batchf0370dc6.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\"thumbprint\":\"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\"thumbprintAlgorithm\":\"sha1\",\"url\":\"https://batchf0370dc6.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-06T23:48:53.0419488Z\",\"publicData\":\"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n}" + string: "{\r\n \"odata.metadata\":\"https://batchf0370dc6.westcentralus.batch.azure.com/$metadata#certificates/@Element\",\"thumbprint\":\"cff2ab63c8c955aaf71989efa641b906558d9fb7\",\"thumbprintAlgorithm\":\"sha1\",\"url\":\"https://batchf0370dc6.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T16:12:31.7742009Z\",\"publicData\":\"MIIBrzCCAV2gAwIBAgIQHZGt2k0LCLFKYYCFxlJnkTAJBgUrDgMCHQUAMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5MB4XDTE2MDEwMTA3MDAwMFoXDTE4MDEwMTA3MDAwMFowEjEQMA4GA1UEAxMHbm9kZXNkazCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuX4XMWyR8cQRCA81TjHOerNOFOpOBj2O8jEdZvqwRlUYgMleEY2OlPd+nalxwlQ9+qbNkNGfjnhIMgiJ5CMlXgdRMF3E6DnMnktmHFG9L0VmQ6Lgt7bhXR8IitRHeYlvy5LJlw6Lcle5Kas2j4ThYjLQbjBMDSXD4HvZNe4UYEUCAwEAAaNLMEkwRwYDVR0BBEAwPoAQEuQJLQYdHU8AjWEh3BZkY6EYMBYxFDASBgNVBAMTC1Jvb3QgQWdlbmN5ghAGN2wAqgBkihHPuNSqXDX0MAkGBSsOAwIdBQADQQB5djPe0G6c3Z8DuR6EQbIhBMTnC0zYPhigq+x1LG83761Ir8PiSy+6oxwCHOaYZyvheW0PByntC/WFwUipfn78\"\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:48:53 GMT + - Tue, 24 Mar 2020 16:12:31 GMT request-id: - - d36ea2e6-5897-4c75-a646-2fcf6a6c5e78 + - da5472a0-d961-46bd-aa4c-f92bc19e4ca5 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -144,19 +144,19 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:48:53 GMT + - Tue, 24 Mar 2020 16:12:31 GMT method: POST - uri: https://batchf0370dc6.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)/canceldelete?api-version=2019-08-01.10.0 + uri: https://batchf0370dc6.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)/canceldelete?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf0370dc6.westcentralus.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:bb2130c3-d76a-4a20-ab43-87b366be2350\\nTime:2019-08-06T23:48:53.7702334Z\"\r\n + state.\\nRequestId:82254765-35fb-4b97-a9a1-fd9091597ee2\\nTime:2020-03-24T16:12:32.0417503Z\"\r\n \ }\r\n}" headers: content-length: @@ -166,9 +166,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:48:53 GMT + - Tue, 24 Mar 2020 16:12:31 GMT request-id: - - bb2130c3-d76a-4a20-ab43-87b366be2350 + - 82254765-35fb-4b97-a9a1-fd9091597ee2 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -190,14 +190,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:48:53 GMT + - Tue, 24 Mar 2020 16:12:32 GMT method: DELETE - uri: https://batchf0370dc6.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)?api-version=2019-08-01.10.0 + uri: https://batchf0370dc6.westcentralus.batch.azure.com/certificates(thumbprintAlgorithm=sha1,thumbprint=cff2ab63c8c955aaf71989efa641b906558d9fb7)?api-version=2020-03-01.11.0 response: body: string: '' @@ -205,9 +205,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:48:53 GMT + - Tue, 24 Mar 2020 16:12:31 GMT request-id: - - 63ef88ec-9017-433b-8a57-70606bc90a1b + - b2be93c3-b800-4f0a-ad6e-be01503377c7 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 43581f32bab6..13e4a00f2b2f 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,19 +9,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:50:44 GMT + - Tue, 24 Mar 2020 17:00:04 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -29,9 +29,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:50:44 GMT + - Tue, 24 Mar 2020 17:00:04 GMT request-id: - - bd1a0393-4dee-4f65-ade7-0b9ac9ac591e + - fc799cde-30f8-4c09-a7b1-c8e8bb6c8bf1 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -53,19 +53,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:50:54 GMT + - Tue, 24 Mar 2020 17:00:15 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -73,9 +73,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:50:54 GMT + - Tue, 24 Mar 2020 17:00:15 GMT request-id: - - e481f075-52d7-4c6e-9185-4b071dc6d993 + - b66bba42-265f-40cf-9b4b-622b5ead7b73 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -97,19 +97,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:51:05 GMT + - Tue, 24 Mar 2020 17:00:25 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -117,9 +117,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:51:05 GMT + - Tue, 24 Mar 2020 17:00:24 GMT request-id: - - 235c8120-3101-4546-852b-6745963df481 + - ec417f52-f99f-4bfc-83ea-2436a7718c97 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -141,19 +141,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:51:15 GMT + - Tue, 24 Mar 2020 17:00:35 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -161,9 +161,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:51:15 GMT + - Tue, 24 Mar 2020 17:00:35 GMT request-id: - - 31d765c0-072b-436f-a5cf-239091e3f50e + - 2d01058f-4bc0-4553-a3c9-f56d9536247d server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -185,19 +185,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:51:25 GMT + - Tue, 24 Mar 2020 17:00:45 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -205,9 +205,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:51:25 GMT + - Tue, 24 Mar 2020 17:00:45 GMT request-id: - - f3b1a47d-1499-4802-baa6-3a0a0cbdb0aa + - 2855f1d5-077f-48ba-a25c-c660ada57fc5 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -229,19 +229,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:51:35 GMT + - Tue, 24 Mar 2020 17:00:55 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -249,9 +249,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:51:35 GMT + - Tue, 24 Mar 2020 17:00:55 GMT request-id: - - b271bc37-a3ff-4739-9c56-72a809ca8fa1 + - ba6e2a6c-3e26-434f-9973-aaa539dbc9a4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -273,19 +273,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:51:45 GMT + - Tue, 24 Mar 2020 17:01:05 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -293,9 +293,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:51:45 GMT + - Tue, 24 Mar 2020 17:01:05 GMT request-id: - - 281d788c-e5c3-4c41-9960-65d00838c776 + - 466b278b-d3ae-446a-afbf-d67adf445478 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -317,19 +317,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:51:55 GMT + - Tue, 24 Mar 2020 17:01:15 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -337,9 +337,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:51:55 GMT + - Tue, 24 Mar 2020 17:01:15 GMT request-id: - - 54c9d292-8274-46c2-a872-63d5a734ccec + - dbe95f85-e8c4-43e9-9d0f-20a8816e2c53 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -361,19 +361,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:52:05 GMT + - Tue, 24 Mar 2020 17:01:25 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -381,9 +381,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:52:05 GMT + - Tue, 24 Mar 2020 17:01:25 GMT request-id: - - e9950607-7a91-4c5d-8359-81c79af1f354 + - 9ab56509-8fb3-483b-90d6-700c49b07a20 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -405,19 +405,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:52:15 GMT + - Tue, 24 Mar 2020 17:01:35 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -425,9 +425,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:52:15 GMT + - Tue, 24 Mar 2020 17:01:35 GMT request-id: - - 2f56f5dc-4a6e-4fa6-992e-64a518e7f09c + - d4a22c4b-aa14-4ea6-a4dd-3ba1b1f1e6e4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -449,19 +449,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:52:25 GMT + - Tue, 24 Mar 2020 17:01:45 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -469,9 +469,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:52:25 GMT + - Tue, 24 Mar 2020 17:01:45 GMT request-id: - - cc588c76-1f4c-4e88-ac66-fb5ef035c084 + - 4dc81b56-7cb2-4e7f-8072-48f0d7ca6150 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -493,19 +493,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:52:36 GMT + - Tue, 24 Mar 2020 17:01:56 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -513,9 +513,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:52:36 GMT + - Tue, 24 Mar 2020 17:01:56 GMT request-id: - - 656535da-0a57-4516-ae40-b08758d649b2 + - 1e0c7e6c-3ee5-4e5c-a155-245d53294a97 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -537,19 +537,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:52:46 GMT + - Tue, 24 Mar 2020 17:02:06 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -557,9 +557,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:52:45 GMT + - Tue, 24 Mar 2020 17:02:06 GMT request-id: - - abf4f35e-69e3-4cbb-8bf0-a18e07d9f8bf + - 21ccc65e-051f-41cb-b8e7-862bbf99f943 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -581,19 +581,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:52:56 GMT + - Tue, 24 Mar 2020 17:02:16 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -601,9 +601,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:52:56 GMT + - Tue, 24 Mar 2020 17:02:16 GMT request-id: - - d6b762c1-01c0-4be3-bdf4-c1093fd3c8ad + - 61a9930c-9618-4370-86d7-eb15b520630b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -625,19 +625,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:53:06 GMT + - Tue, 24 Mar 2020 17:02:26 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -645,9 +645,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:53:06 GMT + - Tue, 24 Mar 2020 17:02:26 GMT request-id: - - 09612051-d5b8-4d9d-b1e6-ccc342b3c509 + - 61ec368b-516c-40ba-960f-7740c2895945 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -669,19 +669,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:53:16 GMT + - Tue, 24 Mar 2020 17:02:36 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -689,9 +689,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:53:15 GMT + - Tue, 24 Mar 2020 17:02:35 GMT request-id: - - 0a57d281-f54c-4e72-a03a-9d6d6cbb9a70 + - 0b06d8f2-0aed-4552-be9a-a03f0719bd37 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -713,19 +713,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:53:26 GMT + - Tue, 24 Mar 2020 17:02:46 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -733,9 +733,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:53:26 GMT + - Tue, 24 Mar 2020 17:02:46 GMT request-id: - - fd02ade3-36b4-4533-b81a-6a4c6100833f + - 3654b74a-fd82-4eb7-ae8a-cb586ae1f6f9 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -757,19 +757,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:53:36 GMT + - Tue, 24 Mar 2020 17:02:56 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -777,9 +777,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:53:36 GMT + - Tue, 24 Mar 2020 17:02:56 GMT request-id: - - 65061492-f836-4e2b-95ab-ef15ab46755f + - 848783ae-fbb9-4b0d-80fe-f67a06d7aa8a server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -801,19 +801,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:53:46 GMT + - Tue, 24 Mar 2020 17:03:06 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -821,9 +821,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:53:46 GMT + - Tue, 24 Mar 2020 17:03:05 GMT request-id: - - 202929e5-35e2-405a-856a-145bc3864386 + - c9e1255b-02ba-4434-9da7-ad640001c2e1 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -845,19 +845,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:53:56 GMT + - Tue, 24 Mar 2020 17:03:16 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -865,9 +865,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:53:57 GMT + - Tue, 24 Mar 2020 17:03:16 GMT request-id: - - d97caa02-4917-4ee9-82da-b9a1cb5c6afb + - b5fe758c-a71b-4d35-8ab3-39c1e4cdc3f9 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -889,19 +889,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:54:07 GMT + - Tue, 24 Mar 2020 17:03:26 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -909,9 +909,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:54:06 GMT + - Tue, 24 Mar 2020 17:03:26 GMT request-id: - - 1358ab5c-4f53-44a5-a489-3b2e9edf3ee2 + - b3245ad1-cd4a-49fc-beed-75600e69c4ba server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -933,19 +933,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:54:17 GMT + - Tue, 24 Mar 2020 17:03:36 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -953,9 +953,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:54:17 GMT + - Tue, 24 Mar 2020 17:03:35 GMT request-id: - - 0acf7e90-02d6-4b7a-9110-13b21fc2299a + - 45ecc590-efe4-45e4-80f6-9103e4c38c7d server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -977,19 +977,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:54:27 GMT + - Tue, 24 Mar 2020 17:03:46 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -997,9 +997,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:54:27 GMT + - Tue, 24 Mar 2020 17:03:46 GMT request-id: - - 714b769f-c965-4063-8ee9-cfac0484ab28 + - c14e5c69-093b-4522-a899-342639df0a19 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1021,19 +1021,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:54:37 GMT + - Tue, 24 Mar 2020 17:03:56 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -1041,9 +1041,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:54:37 GMT + - Tue, 24 Mar 2020 17:03:56 GMT request-id: - - b5d3b06a-fc8f-4ff2-9ace-4df5cde20814 + - f44bf43e-66d6-4a39-8ee4-4be9887a70dc server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1065,19 +1065,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:54:47 GMT + - Tue, 24 Mar 2020 17:04:06 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -1085,9 +1085,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:54:47 GMT + - Tue, 24 Mar 2020 17:04:06 GMT request-id: - - d59eed12-2fa0-44eb-bb8e-51a6556a5c0d + - e6f39e7c-4ed1-4d4e-82bc-3b600e0fe6d4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1109,19 +1109,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:54:57 GMT + - Tue, 24 Mar 2020 17:04:16 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -1129,9 +1129,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:54:57 GMT + - Tue, 24 Mar 2020 17:04:16 GMT request-id: - - 70006cf5-9410-4a7d-aab2-4ca9ed8a0028 + - f5784325-21d1-4b82-a7de-95e253be296e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1153,19 +1153,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:55:07 GMT + - Tue, 24 Mar 2020 17:04:27 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -1173,9 +1173,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:55:07 GMT + - Tue, 24 Mar 2020 17:04:26 GMT request-id: - - 05cb0fdb-dc1b-4982-8858-61ef0e5fb2d6 + - 983a6f7b-48b1-488f-94d8-a0a177d52aa0 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1197,19 +1197,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:55:17 GMT + - Tue, 24 Mar 2020 17:04:37 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -1217,9 +1217,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:55:17 GMT + - Tue, 24 Mar 2020 17:04:37 GMT request-id: - - 52ca9b7f-4467-4dba-882f-168a3ebdbfd9 + - df4f3d5f-aa52-4988-b755-9fb5b474c151 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1241,19 +1241,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:55:27 GMT + - Tue, 24 Mar 2020 17:04:47 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:50:43.7968854Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -1261,9 +1261,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:55:28 GMT + - Tue, 24 Mar 2020 17:04:47 GMT request-id: - - 905fecae-c3b1-4bf2-84bf-aad532966d79 + - 9ad9f182-6ede-462f-ad01-97ff26bd65ec server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1285,21 +1285,197 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:55:38 GMT + - Tue, 24 Mar 2020 17:04:57 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:55:28.540527Z\",\"lastBootTime\":\"2019-08-06T23:55:24.990672Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Tue, 24 Mar 2020 17:04:57 GMT + request-id: + - 855d6a9a-87bb-4db6-813c-def9bcf87b56 + 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.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Tue, 24 Mar 2020 17:05:07 GMT + method: GET + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Tue, 24 Mar 2020 17:05:06 GMT + request-id: + - 4d25e83d-e458-4395-a0ec-c033c9cd7471 + 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.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Tue, 24 Mar 2020 17:05:17 GMT + method: GET + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Tue, 24 Mar 2020 17:05:17 GMT + request-id: + - dec7bc8f-74fe-474e-b899-f08f5b2dc8b9 + 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.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Tue, 24 Mar 2020 17:05:27 GMT + method: GET + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T16:59:55.4234872Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Tue, 24 Mar 2020 17:05:26 GMT + request-id: + - 20320fa5-304d-4057-b59d-61fc1604a1db + 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.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Tue, 24 Mar 2020 17:05:37 GMT + method: GET + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T17:05:36.855474Z\",\"lastBootTime\":\"2020-03-24T17:05:27.639612Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n \ \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n - \ {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2019-08-06T23:55:24.990672Z\",\"version\":\"1.6.3\"\r\n + \ {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-03-24T17:05:27.639612Z\",\"version\":\"1.7.14\"\r\n \ }\r\n }\r\n ]\r\n}" headers: content-type: @@ -1307,9 +1483,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:55:38 GMT + - Tue, 24 Mar 2020 17:05:37 GMT request-id: - - 98989c5d-6034-474d-ab44-542c289fe274 + - 04d869b8-6537-455a-a6fb-9c8fcb0e1454 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1331,21 +1507,21 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:55:38 GMT + - Tue, 24 Mar 2020 17:05:37 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch3c670ff0.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-06T23:55:28.540527Z\",\"lastBootTime\":\"2019-08-06T23:55:24.990672Z\",\"allocationTime\":\"2019-08-06T23:50:43.433061Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n + \ {\r\n \"id\":\"tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"url\":\"https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-24T17:05:36.855474Z\",\"lastBootTime\":\"2020-03-24T17:05:27.639612Z\",\"allocationTime\":\"2020-03-24T16:59:54.6084619Z\",\"ipAddress\":\"10.218.0.4\",\"affinityId\":\"TVM:tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d\",\"vmSize\":\"small\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n \ \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n - \ {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.9.172\",\"frontendPort\":3389,\"backendPort\":20000\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2019-08-06T23:55:24.990672Z\",\"version\":\"1.6.3\"\r\n + \ {\r\n \"name\":\"Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.103.3\",\"frontendPort\":3389,\"backendPort\":20000\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-03-24T17:05:27.639612Z\",\"version\":\"1.7.14\"\r\n \ }\r\n }\r\n ]\r\n}" headers: content-type: @@ -1353,9 +1529,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:55:38 GMT + - Tue, 24 Mar 2020 17:05:37 GMT request-id: - - 5836fc07-8d70-4b73-91e8-877181be1dd2 + - f9d35590-431e-414a-b416-da88c3c3905c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1381,28 +1557,28 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:55:38 GMT + - Tue, 24 Mar 2020 17:05:37 GMT method: POST - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d/users?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d/users?api-version=2020-03-01.11.0 response: body: string: '' headers: dataserviceid: - - https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d/users/BatchPythonSDKUser + - https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d/users/BatchPythonSDKUser dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:55:40 GMT + - Tue, 24 Mar 2020 17:05:38 GMT location: - - https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d/users/BatchPythonSDKUser + - https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d/users/BatchPythonSDKUser request-id: - - 80c57111-0fee-4ea7-9543-011ea73aff7d + - 34da5203-4751-47ce-b7d8-2c41f114f993 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1428,26 +1604,26 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:55:40 GMT + - Tue, 24 Mar 2020 17:05:38 GMT method: PUT - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d/users/BatchPythonSDKUser?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d/users/BatchPythonSDKUser?api-version=2020-03-01.11.0 response: body: string: '' headers: dataserviceid: - - https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d/users/BatchPythonSDKUser + - https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d/users/BatchPythonSDKUser dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:55:40 GMT + - Tue, 24 Mar 2020 17:05:38 GMT request-id: - - 77a724c3-c906-45d2-8f94-e1f3cb464c07 + - 318f9034-83b9-4af3-b02d-ca90eddb5c65 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1469,26 +1645,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:55:40 GMT + - Tue, 24 Mar 2020 17:05:39 GMT method: GET - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d/rdp?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d/rdp?api-version=2020-03-01.11.0 response: body: - string: "full address:s:52.161.9.172\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_0" + string: "full address:s:52.161.103.3\r\nLoadBalanceInfo:s:Cookie: mstshash=TVM#TVM_IN_0" headers: content-type: - application/octet-stream dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:55:40 GMT + - Tue, 24 Mar 2020 17:05:38 GMT request-id: - - f44459b0-0b7d-4963-befc-b8c4427d91a1 + - 406d905a-c9d1-46c7-be42-af6579885b29 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1512,14 +1688,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Tue, 06 Aug 2019 23:55:40 GMT + - Tue, 24 Mar 2020 17:05:39 GMT method: DELETE - uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_e16d3709a13810145ed3fc5889c3ad16ca918d55c0224ca0e75736e2ec00f8db_d/users/BatchPythonSDKUser?api-version=2019-08-01.10.0 + uri: https://batch3c670ff0.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_node_user3c670ff0/nodes/tvmps_363cb9a9171b21d41df16b00d4022ce0e3cca3b84d1fdad92c7bb326cd5acd70_d/users/BatchPythonSDKUser?api-version=2020-03-01.11.0 response: body: string: '' @@ -1527,9 +1703,9 @@ interactions: dataserviceversion: - '3.0' date: - - Tue, 06 Aug 2019 23:55:40 GMT + - Tue, 24 Mar 2020 17:05:39 GMT request-id: - - 8b569c81-62a5-4998-a38d-5a479eda514f + - 11639de9-0fb9-4dae-82e3-2dee5afa17b1 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 1880cec7883a..f7f29253a4ec 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,21 +9,21 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:01 GMT + - Wed, 18 Mar 2020 22:18:21 GMT method: GET - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchff3f0e45.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:01.2476237Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n - \ }\r\n ]\r\n }\r\n },{\r\n \"id\":\"tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:01.3035915Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ {\r\n \"id\":\"tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:18:13.8035232Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n + \ }\r\n ]\r\n }\r\n },{\r\n \"id\":\"tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:18:13.8026176Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -31,9 +31,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:01 GMT + - Wed, 18 Mar 2020 22:18:22 GMT request-id: - - c674f921-193f-43ef-827c-fabb5c8ae82e + - 7ffcb1ee-ac3f-42a5-8e4d-15a64755492c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -55,21 +55,21 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:11 GMT + - Wed, 18 Mar 2020 22:18:32 GMT method: GET - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchff3f0e45.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:01.2476237Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n - \ }\r\n ]\r\n }\r\n },{\r\n \"id\":\"tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:01.3035915Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ {\r\n \"id\":\"tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:18:13.8035232Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n + \ }\r\n ]\r\n }\r\n },{\r\n \"id\":\"tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:18:13.8026176Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -77,9 +77,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:11 GMT + - Wed, 18 Mar 2020 22:18:31 GMT request-id: - - 86c29920-433d-400c-9956-e77274b869d3 + - 4f1fad61-a710-4d55-9869-9877f6cac655 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -101,31 +101,33 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:22 GMT + - Wed, 18 Mar 2020 22:18:42 GMT method: GET - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchff3f0e45.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:01.2476237Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n - \ }\r\n ]\r\n }\r\n },{\r\n \"id\":\"tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:01.3035915Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + \ {\r\n \"id\":\"tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:18:13.8035232Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n + \ }\r\n ]\r\n }\r\n },{\r\n \"id\":\"tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:18:40.677262Z\",\"lastBootTime\":\"2020-03-18T22:18:39.983504Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n + \ \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n + \ {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-03-18T22:18:39.983504Z\",\"version\":\"1.7.14\"\r\n + \ }\r\n }\r\n ]\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:22 GMT + - Wed, 18 Mar 2020 22:18:41 GMT request-id: - - b761c3d1-6002-4740-9e4a-7fa4166a91de + - 3b50a08d-2e29-4cd1-9bdf-842ebcd90019 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -147,33 +149,33 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:32 GMT + - Wed, 18 Mar 2020 22:18:52 GMT method: GET - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchff3f0e45.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:27.789474Z\",\"lastBootTime\":\"2019-08-07T00:03:27.406053Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n + \ {\r\n \"id\":\"tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:18:13.8035232Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n + \ }\r\n ]\r\n }\r\n },{\r\n \"id\":\"tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:18:40.677262Z\",\"lastBootTime\":\"2020-03-18T22:18:39.983504Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n \ \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n - \ {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2019-08-07T00:03:27.406053Z\",\"version\":\"1.6.3\"\r\n - \ }\r\n },{\r\n \"id\":\"tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:01.3035915Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" + \ {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-03-18T22:18:39.983504Z\",\"version\":\"1.7.14\"\r\n + \ }\r\n }\r\n ]\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:32 GMT + - Wed, 18 Mar 2020 22:18:51 GMT request-id: - - 3912bf39-f10e-4123-be10-98a88cbd6934 + - 54b37274-0d32-4ab9-ab82-8d7cb19515b6 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -195,25 +197,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:42 GMT + - Wed, 18 Mar 2020 22:19:02 GMT method: GET - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchff3f0e45.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:27.789474Z\",\"lastBootTime\":\"2019-08-07T00:03:27.406053Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n + \ {\r\n \"id\":\"tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:19:01.556687Z\",\"lastBootTime\":\"2020-03-18T22:19:01.091947Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n \ \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n - \ {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2019-08-07T00:03:27.406053Z\",\"version\":\"1.6.3\"\r\n - \ }\r\n },{\r\n \"id\":\"tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:41.070942Z\",\"lastBootTime\":\"2019-08-07T00:03:40.427432Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n + \ {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-03-18T22:19:01.091947Z\",\"version\":\"1.7.14\"\r\n + \ }\r\n },{\r\n \"id\":\"tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:18:40.677262Z\",\"lastBootTime\":\"2020-03-18T22:18:39.983504Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n \ \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n - \ {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2019-08-07T00:03:40.427432Z\",\"version\":\"1.6.3\"\r\n + \ {\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-03-18T22:18:39.983504Z\",\"version\":\"1.7.14\"\r\n \ }\r\n }\r\n ]\r\n}" headers: content-type: @@ -221,9 +223,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:42 GMT + - Wed, 18 Mar 2020 22:19:01 GMT request-id: - - 8fb8f551-ec54-44f9-8216-595fd4ded7bf + - 2f515513-d08d-474a-9012-b07a0d9d30e8 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -245,20 +247,20 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:42 GMT + - Wed, 18 Mar 2020 22:19:02 GMT method: GET - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batchff3f0e45.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\"id\":\"tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:03:27.789474Z\",\"lastBootTime\":\"2019-08-07T00:03:27.406053Z\",\"allocationTime\":\"2019-08-07T00:03:00.4585062Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n + string: "{\r\n \"odata.metadata\":\"https://batchff3f0e45.westcentralus.batch.azure.com/$metadata#nodes/@Element\",\"id\":\"tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"url\":\"https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"state\":\"idle\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T22:19:01.556687Z\",\"lastBootTime\":\"2020-03-18T22:19:01.091947Z\",\"allocationTime\":\"2020-03-18T22:18:13.6490163Z\",\"ipAddress\":\"10.0.0.5\",\"affinityId\":\"TVM:tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"certificateReferences\":[\r\n \ \r\n ],\"isDedicated\":true,\"endpointConfiguration\":{\r\n \"inboundEndpoints\":[\r\n - \ {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.18.255\",\"publicFQDN\":\"dnscf66306c-88a8-4c70-902e-96eb7d235728-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n - \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2019-08-07T00:03:27.406053Z\",\"version\":\"1.6.3\"\r\n + \ {\r\n \"name\":\"SSHRule.1\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.20.182\",\"publicFQDN\":\"dns23311fc3-8115-4fcb-abdc-74dffd3414b5-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50001,\"backendPort\":22\r\n + \ }\r\n ]\r\n },\"nodeAgentInfo\":{\r\n \"lastUpdateTime\":\"2020-03-18T22:19:01.091947Z\",\"version\":\"1.7.14\"\r\n \ }\r\n}" headers: content-type: @@ -266,9 +268,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:42 GMT + - Wed, 18 Mar 2020 22:19:01 GMT request-id: - - 0e75c468-fb26-40bd-a90f-14260a7bf4e5 + - 98c82f27-f193-4d28-b4d2-6f7307dc054c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -282,7 +284,7 @@ interactions: message: OK - request: body: '{"containerUrl": "https://test.blob.core.windows.net:443/test-container", - "startTime": "2019-08-06T23:57:42.615404Z"}' + "startTime": "2020-03-18T22:13:02.800659Z"}' headers: Accept: - application/json @@ -295,26 +297,26 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:42 GMT + - Wed, 18 Mar 2020 22:19:02 GMT method: POST - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d/uploadbatchservicelogs?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d/uploadbatchservicelogs?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batchff3f0e45.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.UploadBatchServiceLogsResult\",\"virtualDirectoryName\":\"batchff3f0e45-22F30DAB9287C77D/test_batch_test_batch_compute_nodesff3f0e45/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d/33ab18b1-0264-4c56-8df9-91c5887342ff\",\"numberOfFilesUploaded\":4\r\n}" + string: "{\r\n \"odata.metadata\":\"https://batchff3f0e45.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.UploadBatchServiceLogsResult\",\"virtualDirectoryName\":\"batchff3f0e45-22F25CEBEA1D387D/test_batch_test_batch_compute_nodesff3f0e45/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d/971c66bb-6281-473f-9a2b-8e2c77488533\",\"numberOfFilesUploaded\":4\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:42 GMT + - Wed, 18 Mar 2020 22:19:03 GMT request-id: - - 33ab18b1-0264-4c56-8df9-91c5887342ff + - 971c66bb-6281-473f-9a2b-8e2c77488533 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -340,26 +342,26 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:43 GMT + - Wed, 18 Mar 2020 22:19:03 GMT method: POST - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d/disablescheduling?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d/disablescheduling?api-version=2020-03-01.11.0 response: body: string: '' headers: dataserviceid: - - https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d/disablescheduling + - https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d/disablescheduling dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:42 GMT + - Wed, 18 Mar 2020 22:19:03 GMT request-id: - - 2b46cb39-de3c-495a-bad2-c2f2ab7fd88e + - b732e40b-d588-4c77-bf8c-afe1bed38379 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -383,26 +385,26 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:43 GMT + - Wed, 18 Mar 2020 22:19:03 GMT method: POST - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d/enablescheduling?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d/enablescheduling?api-version=2020-03-01.11.0 response: body: string: '' headers: dataserviceid: - - https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d/enablescheduling + - https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d/enablescheduling dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:43 GMT + - Wed, 18 Mar 2020 22:19:03 GMT request-id: - - 6028c335-1f4b-437b-8dc5-b21972a496ac + - 198297c9-1034-4da7-892f-86e1f9af747c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -428,26 +430,26 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:43 GMT + - Wed, 18 Mar 2020 22:19:03 GMT method: POST - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d/reboot?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d/reboot?api-version=2020-03-01.11.0 response: body: string: '' headers: dataserviceid: - - https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d/reboot + - https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d/reboot dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:43 GMT + - Wed, 18 Mar 2020 22:19:03 GMT request-id: - - 078a7504-5340-481d-823d-da7fbd77875b + - 8135af90-37cc-4789-ad7c-0f3824439d41 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -473,19 +475,19 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:43 GMT + - Wed, 18 Mar 2020 22:19:03 GMT method: POST - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d/reimage?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/nodes/tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d/reimage?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchff3f0e45.westcentralus.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:2d88a258-b188-491f-9ced-19b690fc3c07\\nTime:2019-08-07T00:03:43.7765687Z\"\r\n + the node.\\nRequestId:c363073e-4e86-45ca-8045-05ac42b75ddf\\nTime:2020-03-18T22:19:03.4456610Z\"\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}" @@ -497,9 +499,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:43 GMT + - Wed, 18 Mar 2020 22:19:03 GMT request-id: - - 2d88a258-b188-491f-9ced-19b690fc3c07 + - c363073e-4e86-45ca-8045-05ac42b75ddf server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -510,8 +512,8 @@ interactions: code: 409 message: The specified operation is not valid on the node. - request: - body: '{"nodeList": ["tvmps_2e1e2e282f2ac8c3a964f9caebd4ccd4661541c12b0256eddd41de272bc9cbd8_d", - "tvmps_9b4be0dce2a2b6e4daa96619460a1d052ae404dd445255c95001e125b11847af_d"]}' + body: '{"nodeList": ["tvmps_7686ca05410b75513dd5994e68ddbc6c144999508b8c3f73565e77ae62904adc_d", + "tvmps_f3aead7b9df9ba0e740bb7768c0d79b509098e4154f3ce722242a13ddfc0e6ac_d"]}' headers: Accept: - application/json @@ -524,14 +526,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:03:43 GMT + - Wed, 18 Mar 2020 22:19:03 GMT method: POST - uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/removenodes?api-version=2019-08-01.10.0 + uri: https://batchff3f0e45.westcentralus.batch.azure.com/pools/test_batch_test_batch_compute_nodesff3f0e45/removenodes?api-version=2020-03-01.11.0 response: body: string: '' @@ -541,13 +543,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:03:43 GMT + - Wed, 18 Mar 2020 22:19:03 GMT etag: - - '0x8D71ACAB633B1D5' + - '0x8D7CB8A5DC06F26' last-modified: - - Wed, 07 Aug 2019 00:03:43 GMT + - Wed, 18 Mar 2020 22:19:03 GMT request-id: - - eb512209-7133-4859-afff-5836654c63e9 + - 71b9f1a8-4f2d-447a-90fa-63ecb0d1cc93 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 47189fe556bb..dff0b9efe5f4 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:26:16 GMT + - Wed, 18 Mar 2020 22:30:00 GMT method: POST - uri: https://batch449c15bb.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0 + uri: https://batch449c15bb.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0 response: body: string: '' @@ -36,15 +36,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:26:17 GMT + - Wed, 18 Mar 2020 22:30:01 GMT etag: - - '0x8D71B64BD546770' + - '0x8D7CB8BE5E61051' last-modified: - - Wed, 07 Aug 2019 18:26:18 GMT + - Wed, 18 Mar 2020 22:30:01 GMT location: - https://batch449c15bb.westcentralus.batch.azure.com/pools/batch_iaas_449c15bb request-id: - - 63256ff7-52c0-4141-a021-ac5d06ba2347 + - ec0f3ff4-97f0-44e7-b906-ea959fff98a9 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -66,17 +66,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:26:18 GMT + - Wed, 18 Mar 2020 22:30:01 GMT method: GET - uri: https://batch449c15bb.westcentralus.batch.azure.com/pools/batch_iaas_449c15bb?api-version=2019-08-01.10.0 + uri: https://batch449c15bb.westcentralus.batch.azure.com/pools/batch_iaas_449c15bb?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch449c15bb.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_iaas_449c15bb\",\"url\":\"https://batch449c15bb.westcentralus.batch.azure.com/pools/batch_iaas_449c15bb\",\"eTag\":\"0x8D71B64BD546770\",\"lastModified\":\"2019-08-07T18:26:18.3319408Z\",\"creationTime\":\"2019-08-07T18:26:18.3319408Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T18:26:18.3319408Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T18:26:18.3319408Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch449c15bb.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_iaas_449c15bb\",\"url\":\"https://batch449c15bb.westcentralus.batch.azure.com/pools/batch_iaas_449c15bb\",\"eTag\":\"0x8D7CB8BE5E61051\",\"lastModified\":\"2020-03-18T22:30:01.4167121Z\",\"creationTime\":\"2020-03-18T22:30:01.4167121Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T22:30:01.4167121Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T22:30:01.4167121Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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: - - Wed, 07 Aug 2019 18:26:18 GMT + - Wed, 18 Mar 2020 22:30:01 GMT etag: - - '0x8D71B64BD546770' + - '0x8D7CB8BE5E61051' last-modified: - - Wed, 07 Aug 2019 18:26:18 GMT + - Wed, 18 Mar 2020 22:30:01 GMT request-id: - - 147eadc0-51a8-4b0a-99c8-4626b97f2a62 + - 01df13d5-41d7-4e85-9c94-c051fe8b7a86 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 da86bbe9eae0..66eaa2202c6c 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,14 +9,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:40 GMT + - Tue, 24 Mar 2020 17:34:57 GMT method: GET - uri: https://batchf0260dd0.westcentralus.batch.azure.com/supportedimages?api-version=2019-08-01.10.0 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/supportedimages?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#supportedimages\",\"value\":[\r\n @@ -25,34 +25,29 @@ interactions: 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 amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"14.04.5-lts\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu - 14.04\",\"batchSupportEndOfLife\":\"2019-06-15T00:00:00Z\",\"osType\":\"linux\"\r\n - \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"16.04-lts\",\"version\":\"latest\"\r\n + \ \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"16.04-lts\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.ubuntu - 16.04\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"16.04.0-lts\",\"version\":\"latest\"\r\n + 16.04\",\"batchSupportEndOfLife\":\"2021-05-21T00:00:00Z\",\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"16.04.0-lts\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu + 16.04\",\"batchSupportEndOfLife\":\"2021-05-21T00:00:00Z\",\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"16_04-lts-gen2\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu - 16.04\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n + 16.04\",\"batchSupportEndOfLife\":\"2021-05-21T00:00:00Z\",\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"18.04-lts\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.ubuntu 18.04\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n + \ \"publisher\":\"canonical\",\"offer\":\"ubuntuserver\",\"sku\":\"18_04-lts-gen2\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu + 18.04\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \ \"publisher\":\"credativ\",\"offer\":\"debian\",\"sku\":\"8\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.debian - 8\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"credativ\",\"offer\":\"debian\",\"sku\":\"8-backports\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.debian - 8\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"credativ\",\"offer\":\"debian\",\"sku\":\"9\",\"version\":\"latest\"\r\n + 8\",\"batchSupportEndOfLife\":\"2020-07-30T00:00:00Z\",\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"credativ\",\"offer\":\"debian\",\"sku\":\"9\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.debian - 9\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"credativ\",\"offer\":\"debian\",\"sku\":\"9-backports\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.debian - 9\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoft-ads\",\"offer\":\"linux-data-science-vm\",\"sku\":\"linuxdsvm\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos - 7\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\"\r\n - \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"microsoft-ads\",\"offer\":\"standard-data-science-vm\",\"sku\":\"standard-data-science-vm\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows - amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container\",\"sku\":\"7-4\",\"version\":\"latest\"\r\n + 9\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"debian\",\"offer\":\"debian-10\",\"sku\":\"10\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.debian + 10\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container\",\"sku\":\"7-4\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\",\"NvidiaGridDriverInstalled\"\r\n \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n @@ -61,6 +56,10 @@ interactions: 7\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\",\"NvidiaGridDriverInstalled\"\r\n \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \ \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container\",\"sku\":\"7-6\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos + 7\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\",\"NvidiaGridDriverInstalled\"\r\n + \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n + \ \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container\",\"sku\":\"7-7\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\",\"NvidiaGridDriverInstalled\"\r\n \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n @@ -68,26 +67,36 @@ interactions: \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\",\"SupportsRDMAOnly\",\"IntelMPIRuntimeInstalled\"\r\n \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n + \ \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container-rdma\",\"sku\":\"7-6\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos + 7\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\",\"SupportsRDMAOnly\",\"IntelMPIRuntimeInstalled\"\r\n + \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n + \ \"publisher\":\"microsoft-azure-batch\",\"offer\":\"centos-container-rdma\",\"sku\":\"7-7\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos + 7\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\",\"SupportsRDMAOnly\",\"IntelMPIRuntimeInstalled\"\r\n + \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \ \"publisher\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container\",\"sku\":\"16-04-lts\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\",\"NvidiaGridDriverInstalled\"\r\n - \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container-rdma\",\"sku\":\"16-04-lts\",\"version\":\"latest\"\r\n + \ ],\"batchSupportEndOfLife\":\"2021-05-21T00:00:00Z\",\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoft-azure-batch\",\"offer\":\"ubuntu-server-container-rdma\",\"sku\":\"16-04-lts\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\",\"SupportsRDMAOnly\"\r\n - \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"microsoft-dsvm\",\"offer\":\"azureml\",\"sku\":\"runtime\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu - 16.04\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\"\r\n - \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n + \ ],\"batchSupportEndOfLife\":\"2021-05-21T00:00:00Z\",\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoft-dsvm\",\"offer\":\"dsvm-win-2019\",\"sku\":\"server-2019\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows + amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \ \"publisher\":\"microsoft-dsvm\",\"offer\":\"dsvm-windows\",\"sku\":\"server-2016\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.windows + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n \ \"publisher\":\"microsoft-dsvm\",\"offer\":\"linux-data-science-vm-ubuntu\",\"sku\":\"linuxdsvmubuntu\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.ubuntu + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"capabilities\":[\r\n \"DockerCompatible\",\"NvidiaTeslaDriverInstalled\"\r\n - \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2008-r2-sp1\",\"version\":\"latest\"\r\n + \ ],\"batchSupportEndOfLife\":\"2021-05-21T00:00:00Z\",\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoft-dsvm\",\"offer\":\"ubuntu-1804\",\"sku\":\"1804\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.ubuntu + 16.04\",\"capabilities\":[\r\n \"NvidiaTeslaDriverInstalled\"\r\n ],\"osType\":\"linux\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"2008-r2-sp1\",\"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\":\"2008-r2-sp1-smalldisk\",\"version\":\"latest\"\r\n @@ -138,38 +147,28 @@ 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\":\"windowsserversemiannual\",\"sku\":\"datacenter-core-1709-smalldisk\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows - amd64\",\"osType\":\"windows\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserversemiannual\",\"sku\":\"datacenter-core-1709-with-containers-smalldisk\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows - amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n - \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserversemiannual\",\"sku\":\"datacenter-core-1803-with-containers-smalldisk\",\"version\":\"latest\"\r\n + \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserver\",\"sku\":\"datacenter-core-1903-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\":\"2021-01-08T00:00:00Z\",\"osType\":\"windows\"\r\n \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"microsoftwindowsserver\",\"offer\":\"windowsserversemiannual\",\"sku\":\"datacenter-core-1809-with-containers-smalldisk\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.windows - amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"osType\":\"windows\"\r\n - \ },{\r\n \"imageReference\":{\r\n \"publisher\":\"openlogic\",\"offer\":\"centos\",\"sku\":\"7.0\",\"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.1\",\"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.2\",\"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.3\",\"version\":\"latest\"\r\n + amd64\",\"capabilities\":[\r\n \"DockerCompatible\"\r\n ],\"batchSupportEndOfLife\":\"2020-06-12T00: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 \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"openlogic\",\"offer\":\"centos\",\"sku\":\"7.5\",\"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.6\",\"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.7\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"7.1\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"capabilities\":[\r\n \"SupportsRDMAOnly\",\"IntelMPIRuntimeInstalled\"\r\n \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \ \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"7.3\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"capabilities\":[\r\n \"SupportsRDMAOnly\",\"IntelMPIRuntimeInstalled\"\r\n \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \ \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"7.4\",\"version\":\"latest\"\r\n @@ -177,17 +176,21 @@ interactions: 7\",\"capabilities\":[\r\n \"SupportsRDMAOnly\",\"IntelMPIRuntimeInstalled\"\r\n \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \ \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"7.6\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos + 7\",\"capabilities\":[\r\n \"SupportsRDMAOnly\",\"IntelMPIRuntimeInstalled\"\r\n + \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n + \ \"publisher\":\"openlogic\",\"offer\":\"centos-hpc\",\"sku\":\"7.7\",\"version\":\"latest\"\r\n \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"capabilities\":[\r\n \"SupportsRDMAOnly\",\"IntelMPIRuntimeInstalled\"\r\n \ ],\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n - \ \"publisher\":\"oracle\",\"offer\":\"oracle-linux\",\"sku\":\"7.3\",\"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\":\"7.4\",\"version\":\"latest\"\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\":\"7.5\",\"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\":\"7.6\",\"version\":\"latest\"\r\n - \ },\"verificationType\":\"verified\",\"nodeAgentSKUId\":\"batch.node.centos + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos + 7\",\"osType\":\"linux\"\r\n },{\r\n \"imageReference\":{\r\n \"publisher\":\"oracle\",\"offer\":\"oracle-linux\",\"sku\":\"77\",\"version\":\"latest\"\r\n + \ },\"verificationType\":\"unverified\",\"nodeAgentSKUId\":\"batch.node.centos 7\",\"osType\":\"linux\"\r\n }\r\n ]\r\n}" headers: content-type: @@ -195,9 +198,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:40 GMT + - Tue, 24 Mar 2020 17:34:57 GMT request-id: - - 68b5bf5b-63f4-4a17-90df-226d42cc826a + - 8147ae78-1f76-42d5-bded-f431828e3ed7 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -229,14 +232,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:40 GMT + - Tue, 24 Mar 2020 17:34:58 GMT method: POST - uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0 response: body: string: '' @@ -246,15 +249,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:41 GMT + - Tue, 24 Mar 2020 17:34:57 GMT etag: - - '0x8D71ACB8B2F0581' + - '0x8D7D019AC6D26A9' last-modified: - - Wed, 07 Aug 2019 00:09:41 GMT + - Tue, 24 Mar 2020 17:34:58 GMT location: - https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_iaas_f0260dd0 request-id: - - 860554e4-ea37-4a51-92a1-a1c4a6bf013d + - a1ae024a-d189-4f38-81c2-69a36ffb65cb server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -276,14 +279,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:41 GMT + - Tue, 24 Mar 2020 17:34:58 GMT method: GET - uri: https://batchf0260dd0.westcentralus.batch.azure.com/nodecounts?api-version=2019-08-01.10.0 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/nodecounts?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#poolnodecounts\",\"value\":[\r\n @@ -296,9 +299,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:41 GMT + - Tue, 24 Mar 2020 17:34:57 GMT request-id: - - c8ee6ae9-67fd-4cf7-b82d-181fd65ce4a6 + - 948e44f6-519e-4f78-9cbc-8f4b494cc9db server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -311,10 +314,10 @@ interactions: code: 200 message: OK - request: - body: 'b''b\''{"id": "batch_network_f0260dd0", "vmSize": "Standard_A1", "virtualMachineConfiguration": + body: 'b''{"id": "batch_network_f0260dd0", "vmSize": "Standard_A1", "virtualMachineConfiguration": {"imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "16.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 16.04"}, "networkConfiguration": - {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}\''''' + {"subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1"}}''' headers: Accept: - application/json @@ -327,21 +330,21 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:41 GMT + - Tue, 24 Mar 2020 17:34:58 GMT return-client-request-id: - 'false' method: POST - uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0&timeout=45 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0&timeout=45 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"InvalidPropertyValue\",\"message\":{\r\n \ \"lang\":\"en-US\",\"value\":\"The value provided for one of the properties - in the request body is invalid.\\nRequestId:53978292-27ac-43c3-ba32-61dc9647b120\\nTime:2019-08-07T00:09:42.6572716Z\"\r\n + in the request body is invalid.\\nRequestId:4a89a665-123a-48e9-878c-113017c6d791\\nTime:2020-03-24T17:34:58.5949472Z\"\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 @@ -355,9 +358,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:42 GMT + - Tue, 24 Mar 2020 17:34:57 GMT request-id: - - 53978292-27ac-43c3-ba32-61dc9647b120 + - 4a89a665-123a-48e9-878c-113017c6d791 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -369,9 +372,9 @@ interactions: message: The value provided for one of the properties in the request body is invalid. - request: - body: 'b''b\''{"id": "batch_image_f0260dd0", "vmSize": "Standard_A1", "virtualMachineConfiguration": - {"imageReference": {"virtualMachineImageId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test/providers/Microsoft.Compute/images/FakeImage"}, - "nodeAgentSKUId": "batch.node.ubuntu 16.04"}}\''''' + body: 'b''{"id": "batch_image_f0260dd0", "vmSize": "Standard_A1", "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"}}''' headers: Accept: - application/json @@ -380,41 +383,42 @@ interactions: Connection: - keep-alive Content-Length: - - '298' + - '335' Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:42 GMT + - Tue, 24 Mar 2020 17:34:58 GMT return-client-request-id: - 'false' method: POST - uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0&timeout=45 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0&timeout=45 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"InvalidPropertyValue\",\"message\":{\r\n \ \"lang\":\"en-US\",\"value\":\"The value provided for one of the properties - in the request body is invalid.\\nRequestId:5c8484ff-1860-4803-ad78-fb0522bbbf2b\\nTime:2019-08-07T00:09:42.9752978Z\"\r\n + in the request body is invalid.\\nRequestId:c7c38e32-263c-4163-a0f8-3c6ac9557490\\nTime:2020-03-24T17:34:58.6659468Z\"\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/images/FakeImage\"\r\n - \ },{\r\n \"key\":\"Reason\",\"value\":\"The specified virtualMachineImageId - is in a different subscription and cannot be used with the current Batch account - in subscription 00000000-0000-0000-0000-000000000000\"\r\n }\r\n ]\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 + must be of the format /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/images/{imageName} + or /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/galleries/{galleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}\"\r\n + \ }\r\n ]\r\n}" headers: content-length: - - '857' + - '1069' content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:42 GMT + - Tue, 24 Mar 2020 17:34:57 GMT request-id: - - 5c8484ff-1860-4803-ad78-fb0522bbbf2b + - c7c38e32-263c-4163-a0f8-3c6ac9557490 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -442,14 +446,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:42 GMT + - Tue, 24 Mar 2020 17:34:58 GMT method: POST - uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0 response: body: string: '' @@ -459,15 +463,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:43 GMT + - Tue, 24 Mar 2020 17:34:59 GMT etag: - - '0x8D71ACB8C85C460' + - '0x8D7D019ACFD866A' last-modified: - - Wed, 07 Aug 2019 00:09:43 GMT + - Tue, 24 Mar 2020 17:34:59 GMT location: - https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_disk_f0260dd0 request-id: - - 734c1b0b-8cac-48e8-8c68-6e5b3ca46d88 + - 57a8c966-8c17-4a8e-bf76-65643ed84e84 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -489,17 +493,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:43 GMT + - Tue, 24 Mar 2020 17:34:59 GMT method: GET - uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_disk_f0260dd0?api-version=2019-08-01.10.0 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_disk_f0260dd0?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_disk_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_disk_f0260dd0\",\"eTag\":\"0x8D71ACB8C85C460\",\"lastModified\":\"2019-08-07T00:09:43.4474592Z\",\"creationTime\":\"2019-08-07T00:09:43.4474592Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:09:43.4474592Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:09:43.4474592Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_disk_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_disk_f0260dd0\",\"eTag\":\"0x8D7D019ACFD866A\",\"lastModified\":\"2020-03-24T17:34:59.1270506Z\",\"creationTime\":\"2020-03-24T17:34:59.1270506Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T17:34:59.1270506Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-24T17:34:59.1270506Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -511,13 +515,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:43 GMT + - Tue, 24 Mar 2020 17:34:59 GMT etag: - - '0x8D71ACB8C85C460' + - '0x8D7D019ACFD866A' last-modified: - - Wed, 07 Aug 2019 00:09:43 GMT + - Tue, 24 Mar 2020 17:34:59 GMT request-id: - - 50557fae-dd16-445e-92fa-eec56588f3e3 + - 37b4901c-25b0-4a99-a125-df676be0e9fd server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -546,14 +550,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:43 GMT + - Tue, 24 Mar 2020 17:34:59 GMT method: POST - uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0 response: body: string: '' @@ -563,15 +567,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:00 GMT etag: - - '0x8D71ACB8D1E5AE0' + - '0x8D7D019AD97F1B4' last-modified: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:00 GMT location: - https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_app_f0260dd0 request-id: - - 29769046-ff7f-46be-89b0-bcad7609a4b3 + - 21bcd60e-9cd3-4779-b6e6-0492cbf71690 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -593,17 +597,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:00 GMT method: GET - uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_app_f0260dd0?api-version=2019-08-01.10.0 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_app_f0260dd0?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_app_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_app_f0260dd0\",\"eTag\":\"0x8D71ACB8D1E5AE0\",\"lastModified\":\"2019-08-07T00:09:44.4474592Z\",\"creationTime\":\"2019-08-07T00:09:44.4474592Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:09:44.4474592Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:09:44.4474592Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_app_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_app_f0260dd0\",\"eTag\":\"0x8D7D019AD97F1B4\",\"lastModified\":\"2020-03-24T17:35:00.1390516Z\",\"creationTime\":\"2020-03-24T17:35:00.1390516Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T17:35:00.1390516Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-24T17:35:00.1390516Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -615,13 +619,116 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:00 GMT + etag: + - '0x8D7D019AD97F1B4' + last-modified: + - Tue, 24 Mar 2020 17:35:00 GMT + request-id: + - 387de2b4-7873-4a89-be3c-279d0724deae + 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: '{"id": "batch_ade_f0260dd0", "vmSize": "Standard_A1", "virtualMachineConfiguration": + {"imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": + "16.04-LTS"}, "nodeAgentSKUId": "batch.node.ubuntu 16.04", "diskEncryptionConfiguration": + {"targets": ["temporarydisk"]}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '285' + Content-Type: + - application/json; odata=minimalmetadata; charset=utf-8 + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Tue, 24 Mar 2020 17:35:00 GMT + method: POST + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0 + response: + body: + string: '' + headers: + dataserviceid: + - https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_ade_f0260dd0 + dataserviceversion: + - '3.0' + date: + - Tue, 24 Mar 2020 17:35:00 GMT + etag: + - '0x8D7D019ADEA095E' + last-modified: + - Tue, 24 Mar 2020 17:35:00 GMT + location: + - https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_ade_f0260dd0 + request-id: + - 072eefea-6e6b-493a-bd2f-2f25ed66cbff + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-content-type-options: + - nosniff + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python + accept-language: + - en-US + ocp-date: + - Tue, 24 Mar 2020 17:35:00 GMT + method: GET + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_ade_f0260dd0?api-version=2020-03-01.11.0 + response: + body: + string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_ade_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_ade_f0260dd0\",\"eTag\":\"0x8D7D019ADEA095E\",\"lastModified\":\"2020-03-24T17:35:00.6770526Z\",\"creationTime\":\"2020-03-24T17:35:00.6770526Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T17:35:00.6770526Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-24T17:35:00.6770526Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 + \ \"targets\":[\r\n \"temporarydisk\"\r\n ]\r\n }\r\n }\r\n}" + headers: + content-type: + - application/json;odata=minimalmetadata + dataserviceversion: + - '3.0' + date: + - Tue, 24 Mar 2020 17:35:00 GMT etag: - - '0x8D71ACB8D1E5AE0' + - '0x8D7D019ADEA095E' last-modified: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:00 GMT request-id: - - eaaac9f1-aff0-41dc-a133-329a2bf8ed59 + - 82749e24-a60e-4aab-b2c7-96e1fac7b3d5 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -643,29 +750,34 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:00 GMT method: GET - uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#pools\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_app_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_app_f0260dd0\",\"eTag\":\"0x8D71ACB8D1E5AE0\",\"lastModified\":\"2019-08-07T00:09:44.4474592Z\",\"creationTime\":\"2019-08-07T00:09:44.4474592Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:09:44.4474592Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:09:44.4474592Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + \ {\r\n \"id\":\"batch_ade_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_ade_f0260dd0\",\"eTag\":\"0x8D7D019ADEA095E\",\"lastModified\":\"2020-03-24T17:35:00.6770526Z\",\"creationTime\":\"2020-03-24T17:35:00.6770526Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T17:35:00.6770526Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-24T17:35:00.6770526Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 + \ \"targets\":[\r\n \"temporarydisk\"\r\n ]\r\n + \ }\r\n }\r\n },{\r\n \"id\":\"batch_app_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_app_f0260dd0\",\"eTag\":\"0x8D7D019AD97F1B4\",\"lastModified\":\"2020-03-24T17:35:00.1390516Z\",\"creationTime\":\"2020-03-24T17:35:00.1390516Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T17:35:00.1390516Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-03-24T17:35:00.56205Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"dataDisks\":[\r\n \ {\r\n \"lun\":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://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_disk_f0260dd0\",\"eTag\":\"0x8D71ACB8C85C460\",\"lastModified\":\"2019-08-07T00:09:43.4474592Z\",\"creationTime\":\"2019-08-07T00:09:43.4474592Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:09:43.4474592Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-07T00:09:43.7874801Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + \ ]\r\n },{\r\n \"id\":\"batch_disk_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_disk_f0260dd0\",\"eTag\":\"0x8D7D019ACFD866A\",\"lastModified\":\"2020-03-24T17:34:59.1270506Z\",\"creationTime\":\"2020-03-24T17:34:59.1270506Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T17:34:59.1270506Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-03-24T17:34:59.8480762Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"dataDisks\":[\r\n \ {\r\n \"lun\":1,\"caching\":\"none\",\"diskSizeGB\":50,\"storageAccountType\":\"standard_lrs\"\r\n - \ }\r\n ]\r\n }\r\n },{\r\n \"id\":\"batch_iaas_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_iaas_f0260dd0\",\"eTag\":\"0x8D71ACB8B2F0581\",\"lastModified\":\"2019-08-07T00:09:41.2012417Z\",\"creationTime\":\"2019-08-07T00:09:41.2012417Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:09:41.2012417Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-07T00:09:41.6562784Z\",\"vmSize\":\"standard_a1\",\"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://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_iaas_f0260dd0\",\"eTag\":\"0x8D7D019AC6D26A9\",\"lastModified\":\"2020-03-24T17:34:58.1808809Z\",\"creationTime\":\"2020-03-24T17:34:58.1808809Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T17:34:58.1808809Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-03-24T17:34:58.5929075Z\",\"vmSize\":\"standard_a1\",\"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 ],\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n @@ -680,9 +792,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:00 GMT request-id: - - 1af1af38-4978-4300-abbe-8dc71acc3a42 + - 2b8e4bae-5e08-4ecd-aad4-901cb823fb78 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -704,35 +816,34 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:00 GMT return-client-request-id: - 'false' method: GET - uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0&maxresults=1&timeout=30 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0&maxresults=1&timeout=30 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf0260dd0.westcentralus.batch.azure.com/$metadata#pools\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_app_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_app_f0260dd0\",\"eTag\":\"0x8D71ACB8D1E5AE0\",\"lastModified\":\"2019-08-07T00:09:44.4474592Z\",\"creationTime\":\"2019-08-07T00:09:44.4474592Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:09:44.4474592Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-07T00:09:44.8174822Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + \ {\r\n \"id\":\"batch_ade_f0260dd0\",\"url\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools/batch_ade_f0260dd0\",\"eTag\":\"0x8D7D019ADEA095E\",\"lastModified\":\"2020-03-24T17:35:00.6770526Z\",\"creationTime\":\"2020-03-24T17:35:00.6770526Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T17:35:00.6770526Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-24T17:35:00.6770526Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \ \"nodeFillType\":\"Spread\"\r\n },\"virtualMachineConfiguration\":{\r\n \ \"imageReference\":{\r\n \"publisher\":\"Canonical\",\"offer\":\"UbuntuServer\",\"sku\":\"16.04-LTS\",\"version\":\"latest\"\r\n - \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"dataDisks\":[\r\n - \ {\r\n \"lun\":1,\"caching\":\"none\",\"diskSizeGB\":50,\"storageAccountType\":\"standard_lrs\"\r\n - \ }\r\n ]\r\n },\"applicationLicenses\":[\r\n \"maya\"\r\n - \ ]\r\n }\r\n ],\"odata.nextLink\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0&maxresults=1&timeout=30&$skiptoken=WATV2:Jzo2fs6dvnfNqWSH6GdUpJLD98w0VEVe1ncZFU4afkQ/wYok0WZa2cfv%5EEpH3x5X%5Exh18OMjEWoRA0M9J3Pslbv9jy9ZLrxdA7yFYbpvOiEl1fgbqnU5yJ/xjrgKiZVzJjrzKE9bsFTbMI5k6Nss8M1QPjNrAkLjRTsn1aMSS2tCS3mi8dFpRHd5E4I2hKurqekrry4cA27wMy0A%5EQUe1uBk0PqMMvetmIp3SYmj5EE8JcYHrOuuhTXWpWxPeDsQnBUOu1W4lPgJM2hPF%5EddlCOD1Tq8h3bnEZ8TVHQH9y8=:1$1\"\r\n}" + \ },\"nodeAgentSKUId\":\"batch.node.ubuntu 16.04\",\"diskEncryptionConfiguration\":{\r\n + \ \"targets\":[\r\n \"temporarydisk\"\r\n ]\r\n + \ }\r\n }\r\n }\r\n ],\"odata.nextLink\":\"https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0&maxresults=1&timeout=30&$skiptoken=WATV2:ElzXz/je5IoCxCDz2tGQsAJKJBM/4gGBb/dKBYROrYpOdWtUa%5EIIxA3PosTRxFk9jEh0jB36d8CszL6mNZ0mjXBOFVSaOofYle28q1kxWDxgtVKxQU0lJnM/HVKeNCR8viqRljPFcYKKSbiaoQre9xBeOkO0Lk8hdSlR37ZA4EFta8YMjHLrjFZcsuD/%5E2tiuhYrdFqhL3KYeruMRQNVCK0FOZQAQM3wVCW4XXZcty7Ug7m6hP/T6/Qst%5E9na90sAWp5lbbzdOggboO9JePg9mSt6T/aYTKP1VKBD4GdB9k=:1$1\"\r\n}" headers: content-type: - application/json;odata=minimalmetadata dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:00 GMT request-id: - - 234aa3d5-ba3f-4e94-9553-683f3e72e8cc + - 80f2dd65-0dfb-4e9c-b024-cff9769ff916 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -754,16 +865,16 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:01 GMT return-client-request-id: - 'false' method: GET - uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0&$filter=startswith%28id%2C%27batch_app_%27%29&$select=id%2Cstate&$expand=stats&maxresults=1000&timeout=30 + uri: https://batchf0260dd0.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.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://batchf0260dd0.westcentralus.batch.azure.com/$metadata#pools\",\"value\":[\r\n @@ -775,9 +886,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:09:44 GMT + - Tue, 24 Mar 2020 17:35:00 GMT request-id: - - 101b964b-181c-4503-bc3c-4a669b78e923 + - e1abcdcc-6d8f-4243-99df-af798734ed52 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 35a767088258..54dc68e9433d 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 @@ -16,7 +16,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:17:16 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch498930ae3.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n @@ -60,7 +60,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:17:26 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch498930ae3.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n @@ -104,7 +104,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:17:36 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch498930ae3.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n @@ -148,7 +148,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:17:46 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch498930ae3.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n @@ -192,7 +192,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:17:57 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch498930ae3.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n @@ -236,7 +236,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:07 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch498930ae3.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n @@ -286,7 +286,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:07 GMT method: POST - uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks?api-version=2020-03-01.11.0 response: body: string: '' @@ -333,7 +333,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:07 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch498930ae3.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"test_task\",\"url\":\"https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task\",\"eTag\":\"0x8D71ACCB8DE860F\",\"creationTime\":\"2019-08-07T00:18:07.3456143Z\",\"lastModified\":\"2019-08-07T00:18:07.3456143Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:18:07.3456143Z\",\"commandLine\":\"cmd @@ -382,7 +382,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:12 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch498930ae3.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"test_task\",\"url\":\"https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task\",\"eTag\":\"0x8D71ACCB8DE860F\",\"creationTime\":\"2019-08-07T00:18:07.3456143Z\",\"lastModified\":\"2019-08-07T00:18:07.3456143Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2019-08-07T00:18:09.804554Z\",\"previousState\":\"running\",\"previousStateTransitionTime\":\"2019-08-07T00:18:09.698258Z\",\"commandLine\":\"cmd @@ -437,7 +437,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:12 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_bd71c4f0938808e5d43f04eb498b6b035da103637346df4dc766fd73d05d0b7d_d/files?recursive=true&api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_bd71c4f0938808e5d43f04eb498b6b035da103637346df4dc766fd73d05d0b7d_d/files?recursive=true&api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch498930ae3.westcentralus.batch.azure.com/$metadata#files\",\"value\":[\r\n @@ -495,7 +495,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:12 GMT method: HEAD - uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_bd71c4f0938808e5d43f04eb498b6b035da103637346df4dc766fd73d05d0b7d_d/files/workitems%2Fbatch98930ae3%2Fjob-1%2Ftest_task%2Fstdout.txt?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_bd71c4f0938808e5d43f04eb498b6b035da103637346df4dc766fd73d05d0b7d_d/files/workitems%2Fbatch98930ae3%2Fjob-1%2Ftest_task%2Fstdout.txt?api-version=2020-03-01.11.0 response: body: string: '' @@ -544,7 +544,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:13 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_bd71c4f0938808e5d43f04eb498b6b035da103637346df4dc766fd73d05d0b7d_d/files/workitems%2Fbatch98930ae3%2Fjob-1%2Ftest_task%2Fstdout.txt?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_bd71c4f0938808e5d43f04eb498b6b035da103637346df4dc766fd73d05d0b7d_d/files/workitems%2Fbatch98930ae3%2Fjob-1%2Ftest_task%2Fstdout.txt?api-version=2020-03-01.11.0 response: body: string: '' @@ -595,7 +595,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:13 GMT method: DELETE - uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_bd71c4f0938808e5d43f04eb498b6b035da103637346df4dc766fd73d05d0b7d_d/files/workitems%2Fbatch98930ae3%2Fjob-1%2Ftest_task%2Fstdout.txt?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/pools/test_batch_test_batch_files98930ae3/nodes/tvmps_bd71c4f0938808e5d43f04eb498b6b035da103637346df4dc766fd73d05d0b7d_d/files/workitems%2Fbatch98930ae3%2Fjob-1%2Ftest_task%2Fstdout.txt?api-version=2020-03-01.11.0 response: body: string: '' @@ -634,7 +634,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:13 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task/files?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task/files?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch498930ae3.westcentralus.batch.azure.com/$metadata#files\",\"value\":[\r\n @@ -680,7 +680,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:13 GMT method: HEAD - uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task/files/stderr.txt?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task/files/stderr.txt?api-version=2020-03-01.11.0 response: body: string: '' @@ -729,7 +729,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:13 GMT method: GET - uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task/files/stderr.txt?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task/files/stderr.txt?api-version=2020-03-01.11.0 response: body: string: '' @@ -780,7 +780,7 @@ interactions: ocp-date: - Wed, 07 Aug 2019 00:18:13 GMT method: DELETE - uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task/files/stderr.txt?api-version=2019-08-01.10.0 + uri: https://batch498930ae3.westcentralus.batch.azure.com/jobs/batch98930ae3/tasks/test_task/files/stderr.txt?api-version=2020-03-01.11.0 response: body: string: '' 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 ea728cc7954d..975dd32a37c8 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:17 GMT + - Wed, 18 Mar 2020 22:54:46 GMT method: POST - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules?api-version=2020-03-01.11.0 response: body: string: '' @@ -32,15 +32,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT etag: - - '0x8D71ACE902D3278' + - '0x8D7CB8F5B1971C6' last-modified: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT location: - https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a request-id: - - a2d82a04-9c12-4615-b4da-c1596cee960e + - 94da84f5-4511-4da6-949d-3a84e8c821b1 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -62,23 +62,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT method: GET - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchfe140e2a.westcentralus.batch.azure.com/$metadata#jobschedules\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_schedule_fe140e2a\",\"url\":\"https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a\",\"eTag\":\"0x8D71ACE902D3278\",\"lastModified\":\"2019-08-07T00:31:18.0680824Z\",\"creationTime\":\"2019-08-07T00:31:18.0680824Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:31:18.0680824Z\",\"schedule\":{\r\n + \ {\r\n \"id\":\"batch_schedule_fe140e2a\",\"url\":\"https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a\",\"eTag\":\"0x8D7CB8F5B1971C6\",\"lastModified\":\"2020-03-18T22:54:46.5370566Z\",\"creationTime\":\"2020-03-18T22:54:46.5370566Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T22:54:46.5370566Z\",\"schedule\":{\r\n \ \"startWindow\":\"PT1H\",\"recurrenceInterval\":\"P1D\"\r\n },\"jobSpecification\":{\r\n \ \"priority\":0,\"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\":\"2019-08-08T00:31:18.0680824Z\",\"recentJob\":{\r\n + \ },\"executionInfo\":{\r\n \"nextRunTime\":\"2020-03-19T22:54:46.5370566Z\",\"recentJob\":{\r\n \ \"url\":\"https://batchfe140e2a.westcentralus.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: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT request-id: - - 024e6f2f-8679-4291-a575-b6a67d5967e4 + - e5053424-d384-4d62-b493-e1633177cabe server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -111,22 +111,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT method: GET - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batchfe140e2a.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"batch_schedule_fe140e2a\",\"url\":\"https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a\",\"eTag\":\"0x8D71ACE902D3278\",\"lastModified\":\"2019-08-07T00:31:18.0680824Z\",\"creationTime\":\"2019-08-07T00:31:18.0680824Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:31:18.0680824Z\",\"schedule\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batchfe140e2a.westcentralus.batch.azure.com/$metadata#jobschedules/@Element\",\"id\":\"batch_schedule_fe140e2a\",\"url\":\"https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a\",\"eTag\":\"0x8D7CB8F5B1971C6\",\"lastModified\":\"2020-03-18T22:54:46.5370566Z\",\"creationTime\":\"2020-03-18T22:54:46.5370566Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T22:54:46.5370566Z\",\"schedule\":{\r\n \ \"startWindow\":\"PT1H\",\"recurrenceInterval\":\"P1D\"\r\n },\"jobSpecification\":{\r\n \ \"priority\":0,\"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\":\"2019-08-08T00:31:18.0680824Z\",\"recentJob\":{\r\n \"url\":\"https://batchfe140e2a.westcentralus.batch.azure.com/jobs/batch_schedule_fe140e2a:job-1\",\"id\":\"batch_schedule_fe140e2a:job-1\"\r\n + \ \"nextRunTime\":\"2020-03-19T22:54:46.5370566Z\",\"recentJob\":{\r\n \"url\":\"https://batchfe140e2a.westcentralus.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: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT etag: - - '0x8D71ACE902D3278' + - '0x8D7CB8F5B1971C6' last-modified: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT request-id: - - e9f01ac7-680d-49b4-9c49-1c1e0b7f11d5 + - 6c4d6d1a-5731-4251-8d6f-62a39101e6fe server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -162,14 +162,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT method: HEAD - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2020-03-01.11.0 response: body: string: '' @@ -177,13 +177,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT etag: - - '0x8D71ACE902D3278' + - '0x8D7CB8F5B1971C6' last-modified: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT request-id: - - 273937f3-7d9c-4e22-b700-a509f63ca935 + - 4ef4b4ed-71ed-4c6e-9455-356d21772886 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -205,21 +205,21 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT method: GET - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/jobs?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/jobs?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batchfe140e2a.westcentralus.batch.azure.com/$metadata#jobs\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_schedule_fe140e2a:job-1\",\"url\":\"https://batchfe140e2a.westcentralus.batch.azure.com/jobs/batch_schedule_fe140e2a:job-1\",\"eTag\":\"0x8D71ACE90462507\",\"lastModified\":\"2019-08-07T00:31:18.2315783Z\",\"creationTime\":\"2019-08-07T00:31:18.2125412Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:31:18.2315783Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n + \ {\r\n \"id\":\"batch_schedule_fe140e2a:job-1\",\"url\":\"https://batchfe140e2a.westcentralus.batch.azure.com/jobs/batch_schedule_fe140e2a:job-1\",\"eTag\":\"0x8D7CB8F5B28D932\",\"lastModified\":\"2020-03-18T22:54:46.6380082Z\",\"creationTime\":\"2020-03-18T22:54:46.6230105Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T22:54:46.6380082Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n \ \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"maxTaskRetryCount\":2\r\n \ },\"poolInfo\":{\r\n \"poolId\":\"pool_id\"\r\n },\"executionInfo\":{\r\n - \ \"startTime\":\"2019-08-07T00:31:18.2315783Z\",\"poolId\":\"pool_id\"\r\n + \ \"startTime\":\"2020-03-18T22:54:46.6380082Z\",\"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: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT request-id: - - 59b32999-bbb4-4b59-b374-4d0d1e469503 + - 88bcd524-0c25-460d-9a61-8c96d530cbff server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -254,14 +254,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:47 GMT method: POST - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/disable?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/disable?api-version=2020-03-01.11.0 response: body: string: '' @@ -273,13 +273,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT etag: - - '0x8D71ACE909D9F8F' + - '0x8D7CB8F5B6E2480' last-modified: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:47 GMT request-id: - - 6cef90ee-1f56-4b52-9aa6-0336e77cf415 + - 423ac899-22d8-4444-a0d3-e4765f0064d6 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -301,14 +301,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:47 GMT method: POST - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/enable?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/enable?api-version=2020-03-01.11.0 response: body: string: '' @@ -320,13 +320,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT etag: - - '0x8D71ACE90AEB625' + - '0x8D7CB8F5B78A04E' last-modified: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:47 GMT request-id: - - 01ec6e0b-e0ee-4801-bfc7-4d3a0bcb4f32 + - 12de331d-84b6-4e3f-bfab-1710d7830096 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:47 GMT method: PUT - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2020-03-01.11.0 response: body: string: '' @@ -368,13 +368,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT etag: - - '0x8D71ACE90C46DB0' + - '0x8D7CB8F5B871F2D' last-modified: - - Wed, 07 Aug 2019 00:31:19 GMT + - Wed, 18 Mar 2020 22:54:47 GMT request-id: - - 34f2e54a-98d4-4d1b-8803-0733e4b5c94f + - 51e2c64e-fd9a-445b-8e8d-0f7ae53c62a4 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:19 GMT + - Wed, 18 Mar 2020 22:54:47 GMT method: PATCH - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2020-03-01.11.0 response: body: string: '' @@ -417,13 +417,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:18 GMT + - Wed, 18 Mar 2020 22:54:46 GMT etag: - - '0x8D71ACE90D689D8' + - '0x8D7CB8F5B9269C2' last-modified: - - Wed, 07 Aug 2019 00:31:19 GMT + - Wed, 18 Mar 2020 22:54:47 GMT request-id: - - b936034b-8abc-4d7a-a29b-ce23bc4ea53a + - 354e4f75-66cd-44bf-a40b-c267a421a0b9 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -447,14 +447,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:19 GMT + - Wed, 18 Mar 2020 22:54:47 GMT method: POST - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/terminate?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a/terminate?api-version=2020-03-01.11.0 response: body: string: '' @@ -464,13 +464,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:19 GMT + - Wed, 18 Mar 2020 22:54:46 GMT etag: - - '0x8D71ACE90E73EA7' + - '0x8D7CB8F5B9BB8AE' last-modified: - - Wed, 07 Aug 2019 00:31:19 GMT + - Wed, 18 Mar 2020 22:54:47 GMT request-id: - - b5037a3c-ca9c-4761-b7ec-da65448daeb6 + - 27d94eb6-d631-4f68-b1ae-2271a826bbae server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -494,14 +494,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:19 GMT + - Wed, 18 Mar 2020 22:54:47 GMT method: DELETE - uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2019-08-01.10.0 + uri: https://batchfe140e2a.westcentralus.batch.azure.com/jobschedules/batch_schedule_fe140e2a?api-version=2020-03-01.11.0 response: body: string: '' @@ -509,9 +509,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:19 GMT + - Wed, 18 Mar 2020 22:54:48 GMT request-id: - - f4fb48e4-a911-4105-a9e6-ddcf878c7222 + - ff534a3f-4ccd-4ae0-b036-520e2841d9cd 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 63855772b09c..40c7b9bc32aa 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT method: POST - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs?api-version=2020-03-01.11.0 response: body: string: '' @@ -34,15 +34,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT etag: - - '0x8D71ACEA724DA63' + - '0x8D7CB8F726E47F0' last-modified: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT location: - https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/job-1 request-id: - - 7cb25029-d65c-49c1-8d7f-d7246722063f + - 4f58ac41-01c9-48a1-a2ec-283487af9e2e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -70,14 +70,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT method: PUT - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2020-03-01.11.0 response: body: string: '' @@ -87,13 +87,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT etag: - - '0x8D71ACEA73FC9DC' + - '0x8D7CB8F7287BEFC' last-modified: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT request-id: - - 19650493-5bb1-4384-a1f6-9a4bd2d99fc3 + - 10d152a5-ebb8-4bd5-9d2d-33f44792feef 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT method: PATCH - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2020-03-01.11.0 response: body: string: '' @@ -136,13 +136,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT etag: - - '0x8D71ACEA752C5BD' + - '0x8D7CB8F7295EFAD' last-modified: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT request-id: - - b04e0d0f-8bfb-40dd-8289-4eda7857c0b6 + - a27d7c4d-1364-4fc6-835e-af971e94fefa server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -164,17 +164,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT method: GET - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"batch_job1_8dcc0a7e\",\"url\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e\",\"eTag\":\"0x8D71ACEA752C5BD\",\"lastModified\":\"2019-08-07T00:31:56.9019325Z\",\"creationTime\":\"2019-08-07T00:31:56.5849899Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:31:56.6009955Z\",\"priority\":900,\"usesTaskDependencies\":false,\"constraints\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"batch_job1_8dcc0a7e\",\"url\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e\",\"eTag\":\"0x8D7CB8F7295EFAD\",\"lastModified\":\"2020-03-18T22:55:25.9405229Z\",\"creationTime\":\"2020-03-18T22:55:25.6604676Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T22:55:25.6806384Z\",\"priority\":900,\"usesTaskDependencies\":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\":\"small\",\"maxTasksPerNode\":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\":\"2019-08-07T00:31:56.6009955Z\",\"poolId\":\"345C49E2-4876-4D68-A95F-A4D563B15E0C\"\r\n + \ }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-03-18T22:55:25.6806384Z\",\"poolId\":\"497EC913-02B6-4535-AF1A-402DEEE08B17\"\r\n \ },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n}" headers: content-type: @@ -195,13 +195,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT etag: - - '0x8D71ACEA752C5BD' + - '0x8D7CB8F7295EFAD' last-modified: - - Wed, 07 Aug 2019 00:31:56 GMT + - Wed, 18 Mar 2020 22:55:25 GMT request-id: - - e035d034-7bd7-4e08-b0d2-c0f09a21e2c6 + - 17f0c83e-31d8-4ce5-b84d-b32d12e335da server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -229,14 +229,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT method: POST - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs?api-version=2020-03-01.11.0 response: body: string: '' @@ -246,15 +246,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:25 GMT etag: - - '0x8D71ACEA781C5B0' + - '0x8D7CB8F72B531F3' last-modified: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT location: - https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/job-1 request-id: - - cee196f5-7cff-47c5-a9f0-cf1dd539ad81 + - d88b6d1d-2d78-4837-a477-e2eaa9e9a218 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -276,23 +276,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT method: GET - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"batch_job2_8dcc0a7e\",\"url\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e\",\"eTag\":\"0x8D71ACEA781C5B0\",\"lastModified\":\"2019-08-07T00:31:57.2099504Z\",\"creationTime\":\"2019-08-07T00:31:57.1879248Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:31:57.2099504Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/$metadata#jobs/@Element\",\"id\":\"batch_job2_8dcc0a7e\",\"url\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e\",\"eTag\":\"0x8D7CB8F72B531F3\",\"lastModified\":\"2020-03-18T22:55:26.1453811Z\",\"creationTime\":\"2020-03-18T22:55:26.1273845Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T22:55:26.1453811Z\",\"priority\":0,\"usesTaskDependencies\":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\":\"small\",\"maxTasksPerNode\":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\":\"2019-08-07T00:31:57.2099504Z\",\"poolId\":\"2AB8FC75-16E3-4BF0-98EC-68CE1E4F7DD4\"\r\n + \ }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-03-18T22:55:26.1453811Z\",\"poolId\":\"EA781F5D-5F1A-497A-87C1-0D0032171A12\"\r\n \ },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"performexitoptionsjobaction\"\r\n}" headers: content-type: @@ -300,13 +300,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:25 GMT etag: - - '0x8D71ACEA781C5B0' + - '0x8D7CB8F72B531F3' last-modified: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT request-id: - - fc3e4309-34ba-4da9-a68e-6e6cd81557e4 + - cfdb4368-983c-456a-b382-67cb6cbba142 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -328,18 +328,18 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT method: GET - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/$metadata#jobs\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_job1_8dcc0a7e\",\"url\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e\",\"eTag\":\"0x8D71ACEA752C5BD\",\"lastModified\":\"2019-08-07T00:31:56.9019325Z\",\"creationTime\":\"2019-08-07T00:31:56.5849899Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:31:56.6009955Z\",\"priority\":900,\"usesTaskDependencies\":false,\"constraints\":{\r\n + \ {\r\n \"id\":\"batch_job1_8dcc0a7e\",\"url\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e\",\"eTag\":\"0x8D7CB8F7295EFAD\",\"lastModified\":\"2020-03-18T22:55:25.9405229Z\",\"creationTime\":\"2020-03-18T22:55:25.6604676Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T22:55:25.6806384Z\",\"priority\":900,\"usesTaskDependencies\":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 @@ -353,15 +353,15 @@ interactions: \ \"vmSize\":\"small\",\"maxTasksPerNode\":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\":\"2019-08-07T00:31:56.6009955Z\",\"poolId\":\"345C49E2-4876-4D68-A95F-A4D563B15E0C\"\r\n + \ }\r\n }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-03-18T22:55:25.6806384Z\",\"poolId\":\"497EC913-02B6-4535-AF1A-402DEEE08B17\"\r\n \ },\"onAllTasksComplete\":\"noaction\",\"onTaskFailure\":\"noaction\"\r\n - \ },{\r\n \"id\":\"batch_job2_8dcc0a7e\",\"url\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e\",\"eTag\":\"0x8D71ACEA781C5B0\",\"lastModified\":\"2019-08-07T00:31:57.2099504Z\",\"creationTime\":\"2019-08-07T00:31:57.1879248Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:31:57.2099504Z\",\"priority\":0,\"usesTaskDependencies\":false,\"constraints\":{\r\n + \ },{\r\n \"id\":\"batch_job2_8dcc0a7e\",\"url\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e\",\"eTag\":\"0x8D7CB8F72B531F3\",\"lastModified\":\"2020-03-18T22:55:26.1453811Z\",\"creationTime\":\"2020-03-18T22:55:26.1273845Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T22:55:26.1453811Z\",\"priority\":0,\"usesTaskDependencies\":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\":\"small\",\"maxTasksPerNode\":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\":\"2019-08-07T00:31:57.2099504Z\",\"poolId\":\"2AB8FC75-16E3-4BF0-98EC-68CE1E4F7DD4\"\r\n + \ }\r\n }\r\n },\"executionInfo\":{\r\n \"startTime\":\"2020-03-18T22:55:26.1453811Z\",\"poolId\":\"EA781F5D-5F1A-497A-87C1-0D0032171A12\"\r\n \ },\"onAllTasksComplete\":\"terminatejob\",\"onTaskFailure\":\"performexitoptionsjobaction\"\r\n \ }\r\n ]\r\n}" headers: @@ -370,9 +370,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:25 GMT request-id: - - c739732b-3688-4763-9bdc-edb48950841c + - 3592b65c-7724-488d-b8ff-b17429670b20 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -398,14 +398,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT method: POST - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/disable?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/disable?api-version=2020-03-01.11.0 response: body: string: '' @@ -415,13 +415,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:25 GMT etag: - - '0x8D71ACEA7B6236B' + - '0x8D7CB8F72D16C8A' last-modified: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT request-id: - - 62b0b01c-6d01-4334-b4fb-35238ce279fc + - 85cf1e02-8f22-4e74-ada5-b1966bc74433 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -445,14 +445,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT method: POST - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/enable?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/enable?api-version=2020-03-01.11.0 response: body: string: '' @@ -462,13 +462,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:25 GMT etag: - - '0x8D71ACEA7CD7C59' + - '0x8D7CB8F72DC42ED' last-modified: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT request-id: - - fe1eace6-2265-4a41-867b-dfb15ad4b0cb + - 1c4d8604-ff42-4652-b27b-f9f44df7b231 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -490,14 +490,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT method: GET - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/jobpreparationandreleasetaskstatus?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/jobpreparationandreleasetaskstatus?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/$metadata#jobpreparationandreleasetaskstatuslist\",\"value\":[\r\n @@ -508,9 +508,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:25 GMT request-id: - - 3fe6b228-7457-43a1-9912-111ed22bc868 + - aa83954a-e54f-4849-94f2-78e04dfd35f7 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT method: POST - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/terminate?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job1_8dcc0a7e/terminate?api-version=2020-03-01.11.0 response: body: string: '' @@ -553,13 +553,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:25 GMT etag: - - '0x8D71ACEA7EFDAC5' + - '0x8D7CB8F72F15C7D' last-modified: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT request-id: - - 95bfc000-40c1-4bfb-99b1-77615ffcff52 + - c2617bc6-0890-4adc-83ee-2b0b089359d4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -583,14 +583,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT method: DELETE - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/jobs/batch_job2_8dcc0a7e?api-version=2020-03-01.11.0 response: body: string: '' @@ -598,9 +598,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:31:57 GMT + - Wed, 18 Mar 2020 22:55:26 GMT request-id: - - 79e12285-5187-4cfd-950e-8948fa03bc39 + - 713fca68-1700-4e9f-8c8c-fa12b737c0ac server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -622,26 +622,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:31:58 GMT + - Wed, 18 Mar 2020 22:55:26 GMT method: GET - uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/lifetimejobstats?api-version=2019-08-01.10.0 + uri: https://batch8dcc0a7e.westcentralus.batch.azure.com/lifetimejobstats?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/$metadata#jobstats/@Element\",\"url\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/lifetimejobstats\",\"startTime\":\"2019-08-07T00:31:39.5562572Z\",\"lastUpdateTime\":\"2019-08-07T00:31:39.5562572Z\",\"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://batch8dcc0a7e.westcentralus.batch.azure.com/$metadata#jobstats/@Element\",\"url\":\"https://batch8dcc0a7e.westcentralus.batch.azure.com/lifetimejobstats\",\"startTime\":\"2020-03-18T22:55:08.9905921Z\",\"lastUpdateTime\":\"2020-03-18T22:55:08.9905921Z\",\"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: - - Wed, 07 Aug 2019 00:31:58 GMT + - Wed, 18 Mar 2020 22:55:26 GMT request-id: - - c6eb25b6-b0ca-4fa8-bfbb-3b0a0cd3b23c + - 567d827c-8cbf-4823-b5cd-3d2552bc431e 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 8274bda389d1..5e2b331e9ac1 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 @@ -19,14 +19,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:37:54 GMT + - Wed, 18 Mar 2020 23:01:21 GMT method: POST - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0 response: body: string: '' @@ -36,15 +36,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:37:54 GMT + - Wed, 18 Mar 2020 23:01:22 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT location: - https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1 request-id: - - 78932e4f-1477-4ce5-9fe1-178744470b8b + - 9791d42b-0f2c-4188-b63f-80fe29218ae9 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -66,17 +66,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -91,13 +91,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - 547ddee9-4a00-41b1-a58e-73ec95e19db7 + - 848ff41a-8888-40c4-8272-5c066c879195 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -119,17 +119,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:38:05 GMT + - Wed, 18 Mar 2020 23:01:32 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -144,13 +144,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:38:05 GMT + - Wed, 18 Mar 2020 23:01:32 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - 61527437-1173-4530-b889-a933b2631780 + - fcf9d5f3-76bb-4936-82de-31c1317cfdaf server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -172,17 +172,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:38:15 GMT + - Wed, 18 Mar 2020 23:01:42 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -197,13 +197,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:38:15 GMT + - Wed, 18 Mar 2020 23:01:42 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - 3fd38ea3-db41-46e7-ad1c-80695e811ae2 + - 9c977f4e-1fd4-4f7f-ab0c-eedeae98db73 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -225,17 +225,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:38:25 GMT + - Wed, 18 Mar 2020 23:01:52 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -250,13 +250,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:38:25 GMT + - Wed, 18 Mar 2020 23:01:52 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - 2c472d63-4e11-4187-aaa9-8d0a2770ee14 + - 77bddf4c-deaf-4ebe-a0a5-42ca655b0544 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -278,17 +278,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:38:35 GMT + - Wed, 18 Mar 2020 23:02:02 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -303,13 +303,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:38:34 GMT + - Wed, 18 Mar 2020 23:02:02 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - 495ef3e7-5c80-492a-8fa6-c7af95180706 + - 5874c035-ac76-4fb9-b295-23a99e3bca01 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -331,17 +331,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:38:45 GMT + - Wed, 18 Mar 2020 23:02:12 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -356,13 +356,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:38:46 GMT + - Wed, 18 Mar 2020 23:02:12 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - 1e72475d-94e4-4d53-8d8b-0b82217dc8a5 + - c2d95ac3-1d61-47bf-8d0a-f4fec2884e95 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -384,17 +384,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:38:56 GMT + - Wed, 18 Mar 2020 23:02:22 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -409,13 +409,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:38:56 GMT + - Wed, 18 Mar 2020 23:02:22 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - 95445620-5a68-4b07-8d5d-e400acbefe37 + - 73ef4b6b-c079-42f9-bd1c-0178083dff0d server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -437,17 +437,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:39:06 GMT + - Wed, 18 Mar 2020 23:02:32 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -462,13 +462,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:39:06 GMT + - Wed, 18 Mar 2020 23:02:32 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - f06364cf-f0cb-4772-a540-32be7ecf7b4a + - 217f4681-d28d-4d9b-b7b6-239ca088eabc server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -490,17 +490,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:39:16 GMT + - Wed, 18 Mar 2020 23:02:42 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -515,13 +515,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:39:16 GMT + - Wed, 18 Mar 2020 23:02:42 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - dbde6974-0cca-4d85-8fbc-d739e4e51328 + - 478b04c6-81d3-475c-89da-aeee630249a3 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -543,17 +543,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:39:26 GMT + - Wed, 18 Mar 2020 23:02:52 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"resizing\",\"allocationStateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -568,13 +568,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:39:26 GMT + - Wed, 18 Mar 2020 23:02:52 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - bf033388-394b-4f72-a28b-a7389823f719 + - f45e09fa-a548-4c41-a04f-2adfc6630382 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -596,17 +596,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:39:36 GMT + - Wed, 18 Mar 2020 23:03:03 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D71ACF7CEDB785\",\"lastModified\":\"2019-08-07T00:37:55.2720773Z\",\"creationTime\":\"2019-08-07T00:37:55.2720773Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:37:55.2720773Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-07T00:39:31.2843496Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n + string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_network_814e11b1\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1\",\"eTag\":\"0x8D7CB9046F6F7C5\",\"lastModified\":\"2020-03-18T23:01:22.2534085Z\",\"creationTime\":\"2020-03-18T23:01:22.2534085Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:01:22.2534085Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-03-18T23:02:58.9326246Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":1,\"targetDedicatedNodes\":1,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"maxTasksPerNode\":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 @@ -621,13 +621,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:39:36 GMT + - Wed, 18 Mar 2020 23:03:02 GMT etag: - - '0x8D71ACF7CEDB785' + - '0x8D7CB9046F6F7C5' last-modified: - - Wed, 07 Aug 2019 00:37:55 GMT + - Wed, 18 Mar 2020 23:01:22 GMT request-id: - - 63db874f-6e0e-4226-95e7-bafb0969b9eb + - 303ffcfe-24d8-4209-9185-2a59b380d89e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -649,20 +649,20 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:39:36 GMT + - Wed, 18 Mar 2020 23:03:03 GMT method: GET - uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1/nodes?api-version=2019-08-01.10.0 + uri: https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1/nodes?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch814e11b1.westcentralus.batch.azure.com/$metadata#nodes\",\"value\":[\r\n - \ {\r\n \"id\":\"tvmps_2c1d53ae47b48a34e918d26f9bbfd3f97b76db3dd8c81dd2384ea007e909e73a_d\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1/nodes/tvmps_2c1d53ae47b48a34e918d26f9bbfd3f97b76db3dd8c81dd2384ea007e909e73a_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2019-08-07T00:39:31.2889532Z\",\"allocationTime\":\"2019-08-07T00:39:30.919476Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_2c1d53ae47b48a34e918d26f9bbfd3f97b76db3dd8c81dd2384ea007e909e73a_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n - \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"TestEndpointConfig.0\",\"protocol\":\"udp\",\"publicIPAddress\":\"52.159.17.209\",\"publicFQDN\":\"dnse8e3cd44-e5d9-4f68-a2fc-9d5b2c229ec4-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":60000,\"backendPort\":64444\r\n - \ },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.159.17.209\",\"publicFQDN\":\"dnse8e3cd44-e5d9-4f68-a2fc-9d5b2c229ec4-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n + \ {\r\n \"id\":\"tvmps_b0ce0ceab7d2c897f6cc4689027153407dc63b3a1e9467083afb9e43e2b9f87b_d\",\"url\":\"https://batch814e11b1.westcentralus.batch.azure.com/pools/batch_network_814e11b1/nodes/tvmps_b0ce0ceab7d2c897f6cc4689027153407dc63b3a1e9467083afb9e43e2b9f87b_d\",\"state\":\"starting\",\"schedulingState\":\"enabled\",\"stateTransitionTime\":\"2020-03-18T23:02:58.8602556Z\",\"allocationTime\":\"2020-03-18T23:02:57.9745292Z\",\"ipAddress\":\"10.0.0.4\",\"affinityId\":\"TVM:tvmps_b0ce0ceab7d2c897f6cc4689027153407dc63b3a1e9467083afb9e43e2b9f87b_d\",\"vmSize\":\"standard_a1\",\"totalTasksRun\":0,\"totalTasksSucceeded\":0,\"runningTasksCount\":0,\"isDedicated\":true,\"endpointConfiguration\":{\r\n + \ \"inboundEndpoints\":[\r\n {\r\n \"name\":\"TestEndpointConfig.0\",\"protocol\":\"udp\",\"publicIPAddress\":\"52.161.187.212\",\"publicFQDN\":\"dnsdfd263d6-6029-4eb8-9e64-5ab346318dc4-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":60000,\"backendPort\":64444\r\n + \ },{\r\n \"name\":\"SSHRule.0\",\"protocol\":\"tcp\",\"publicIPAddress\":\"52.161.187.212\",\"publicFQDN\":\"dnsdfd263d6-6029-4eb8-9e64-5ab346318dc4-azurebatch-cloudservice.westcentralus.cloudapp.azure.com\",\"frontendPort\":50000,\"backendPort\":22\r\n \ }\r\n ]\r\n }\r\n }\r\n ]\r\n}" headers: content-type: @@ -670,9 +670,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:39:36 GMT + - Wed, 18 Mar 2020 23:03:02 GMT request-id: - - c21e93bc-2974-4d73-9220-4fb1efe84f4f + - 36bc7663-b2e9-465f-8321-a7979ad81e87 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 a49b82ea6634..714e42cfb1ca 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:37 GMT + - Tue, 24 Mar 2020 15:38:25 GMT method: POST - uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/enableautoscale?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/enableautoscale?api-version=2020-03-01.11.0 response: body: string: '' @@ -31,13 +31,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:02:37 GMT + - Tue, 24 Mar 2020 15:38:25 GMT etag: - - '0x8D71B616EDCB2C4' + - '0x8D7D009647D5BFA' last-modified: - - Wed, 07 Aug 2019 18:02:38 GMT + - Tue, 24 Mar 2020 15:38:25 GMT request-id: - - 74df4cb2-e373-47c7-b569-53d92f954474 + - 59fa23ae-f98b-42de-b00c-b9f06e7b78a3 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:38 GMT + - Tue, 24 Mar 2020 15:38:25 GMT method: POST - uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/evaluateautoscale?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/evaluateautoscale?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\"timestamp\":\"2019-08-07T18:02:38.4508077Z\",\"results\":\"$TargetDedicatedNodes=3;$TargetLowPriorityNodes=0;$NodeDeallocationOption=requeue\"\r\n}" + string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.AutoScaleRun\",\"timestamp\":\"2020-03-24T15:38:25.624474Z\",\"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: - - Wed, 07 Aug 2019 18:02:38 GMT + - Tue, 24 Mar 2020 15:38:25 GMT request-id: - - 1e2994fb-a8c9-4772-900b-708e2b397a11 + - 86c7286d-8cfd-4035-9dd6-3a6a25a706e1 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -108,14 +108,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:38 GMT + - Tue, 24 Mar 2020 15:38:25 GMT method: POST - uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/disableautoscale?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/disableautoscale?api-version=2020-03-01.11.0 response: body: string: '' @@ -125,13 +125,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:02:38 GMT + - Tue, 24 Mar 2020 15:38:25 GMT etag: - - '0x8D71B616EDCB2C4' + - '0x8D7D009647D5BFA' last-modified: - - Wed, 07 Aug 2019 18:02:38 GMT + - Tue, 24 Mar 2020 15:38:25 GMT request-id: - - b0c69312-8ebb-46e7-8a11-f5affda263f1 + - 2ef4c807-7fcd-4b72-89f2-40ff8f2f7fed server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -153,17 +153,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:38 GMT + - Tue, 24 Mar 2020 15:38:25 GMT method: GET - uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"url\":\"https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D71B616EDCB2C4\",\"lastModified\":\"2019-08-07T18:02:38.1949636Z\",\"creationTime\":\"2019-08-07T18:02:37.2212645Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T18:02:37.2212645Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2019-08-07T18:02:38.5801029Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"url\":\"https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D7D009647D5BFA\",\"lastModified\":\"2020-03-24T15:38:25.5434746Z\",\"creationTime\":\"2020-03-24T15:38:25.014412Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T15:38:25.014412Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2020-03-24T15:38:25.7083203Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n \ {\r\n \"name\":\"task-user\",\"elevationLevel\":\"admin\"\r\n }\r\n \ ],\"maxTasksPerNode\":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 @@ -174,13 +174,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:02:38 GMT + - Tue, 24 Mar 2020 15:38:25 GMT etag: - - '0x8D71B616EDCB2C4' + - '0x8D7D009647D5BFA' last-modified: - - Wed, 07 Aug 2019 18:02:38 GMT + - Tue, 24 Mar 2020 15:38:25 GMT request-id: - - d7251f84-32ec-421e-99ad-a56ce9f73bd7 + - d6cda058-1196-4603-9e4b-feda097538e7 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -202,17 +202,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:30 GMT method: GET - uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"url\":\"https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D71B616EDCB2C4\",\"lastModified\":\"2019-08-07T18:02:38.1949636Z\",\"creationTime\":\"2019-08-07T18:02:37.2212645Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T18:02:37.2212645Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-07T18:02:43.568234Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"resizeErrors\":[\r\n + string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"url\":\"https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D7D009647D5BFA\",\"lastModified\":\"2020-03-24T15:38:25.5434746Z\",\"creationTime\":\"2020-03-24T15:38:25.014412Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T15:38:25.014412Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-03-24T15:38:26.1359515Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":2,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"resizeErrors\":[\r\n \ {\r\n \"code\":\"ResizeStopped\",\"message\":\"Desired number of dedicated nodes could not be allocated due to a stop resize operation\"\r\n \ }\r\n ],\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n @@ -226,13 +226,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:30 GMT etag: - - '0x8D71B616EDCB2C4' + - '0x8D7D009647D5BFA' last-modified: - - Wed, 07 Aug 2019 18:02:38 GMT + - Tue, 24 Mar 2020 15:38:25 GMT request-id: - - 405aa0ce-ad77-4559-905e-54865cacbb20 + - 9a06db89-12ad-455c-a8ce-370a228dbe5a server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -258,14 +258,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:30 GMT method: POST - uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/resize?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/resize?api-version=2020-03-01.11.0 response: body: string: '' @@ -275,13 +275,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:30 GMT etag: - - '0x8D71B6172472DBA' + - '0x8D7D00967B937CF' last-modified: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:30 GMT request-id: - - c2591c69-5f73-44a9-932f-63674846023c + - bd7d2898-8bac-4db4-9679-bbed3efb69bb server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -305,14 +305,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:31 GMT method: POST - uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/stopresize?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64/stopresize?api-version=2020-03-01.11.0 response: body: string: '' @@ -322,13 +322,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:30 GMT etag: - - '0x8D71B6172472DBA' + - '0x8D7D00967B937CF' last-modified: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:30 GMT request-id: - - 72308043-6221-459a-b318-f927a51695db + - 64eb5af0-0c44-4a18-b200-afa66eaab117 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -350,17 +350,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:44 GMT + - Tue, 24 Mar 2020 15:38:31 GMT method: GET - uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"url\":\"https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D71B6172472DBA\",\"lastModified\":\"2019-08-07T18:02:43.9259578Z\",\"creationTime\":\"2019-08-07T18:02:37.2212645Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T18:02:37.2212645Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2019-08-07T18:02:44.0815765Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"userAccounts\":[\r\n + string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"url\":\"https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D7D00967B937CF\",\"lastModified\":\"2020-03-24T15:38:30.9689295Z\",\"creationTime\":\"2020-03-24T15:38:25.014412Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T15:38:25.014412Z\",\"allocationState\":\"stopping\",\"allocationStateTransitionTime\":\"2020-03-24T15:38:31.0559282Z\",\"vmSize\":\"standard_a1\",\"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 \ ],\"maxTasksPerNode\":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 @@ -371,13 +371,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:31 GMT etag: - - '0x8D71B6172472DBA' + - '0x8D7D00967B937CF' last-modified: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:30 GMT request-id: - - 1d1bc3c0-0c2d-41e6-9186-c6009b7874e7 + - 40d9e372-dfab-4d09-bc3c-3149aae09cc3 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -399,17 +399,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:49 GMT + - Tue, 24 Mar 2020 15:38:36 GMT method: GET - uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"url\":\"https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D71B6172472DBA\",\"lastModified\":\"2019-08-07T18:02:43.9259578Z\",\"creationTime\":\"2019-08-07T18:02:37.2212645Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T18:02:37.2212645Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-07T18:02:49.1795796Z\",\"vmSize\":\"standard_a1\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":2,\"resizeErrors\":[\r\n + string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"test_batch_test_batch_scale_poolse2690d64\",\"url\":\"https://batche2690d64.westcentralus.batch.azure.com/pools/test_batch_test_batch_scale_poolse2690d64\",\"eTag\":\"0x8D7D00967B937CF\",\"lastModified\":\"2020-03-24T15:38:30.9689295Z\",\"creationTime\":\"2020-03-24T15:38:25.014412Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-24T15:38:25.014412Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-03-24T15:38:31.1409325Z\",\"vmSize\":\"standard_a1\",\"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 @@ -423,13 +423,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:02:49 GMT + - Tue, 24 Mar 2020 15:38:36 GMT etag: - - '0x8D71B6172472DBA' + - '0x8D7D00967B937CF' last-modified: - - Wed, 07 Aug 2019 18:02:43 GMT + - Tue, 24 Mar 2020 15:38:30 GMT request-id: - - 27fa1392-02b4-42b7-bc56-89468b2d4240 + - bb478cbe-e903-4af8-9d65-15a94037c68c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -451,19 +451,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:49 GMT + - Tue, 24 Mar 2020 15:38:36 GMT method: GET - uri: https://batche2690d64.westcentralus.batch.azure.com/lifetimepoolstats?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/lifetimepoolstats?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#poolstats/@Element\",\"url\":\"https://batche2690d64.westcentralus.batch.azure.com/lifetimepoolstats\",\"usageStats\":{\r\n - \ \"startTime\":\"2019-08-07T18:02:17.1867931Z\",\"lastUpdateTime\":\"2019-08-07T18:02:17.1867931Z\",\"dedicatedCoreTime\":\"PT0S\"\r\n - \ },\"resourceStats\":{\r\n \"startTime\":\"2019-08-07T18:02:17.1867931Z\",\"diskReadIOps\":\"0\",\"diskWriteIOps\":\"0\",\"lastUpdateTime\":\"2019-08-07T18:02:17.1867931Z\",\"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\":\"2020-03-24T15:38:07.7023945Z\",\"lastUpdateTime\":\"2020-03-24T15:38:07.7023945Z\",\"dedicatedCoreTime\":\"PT0S\"\r\n + \ },\"resourceStats\":{\r\n \"startTime\":\"2020-03-24T15:38:07.7023945Z\",\"diskReadIOps\":\"0\",\"diskWriteIOps\":\"0\",\"lastUpdateTime\":\"2020-03-24T15:38:07.7023945Z\",\"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: @@ -471,9 +471,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:02:49 GMT + - Tue, 24 Mar 2020 15:38:36 GMT request-id: - - 880328e3-8753-48e2-a084-c1848d420053 + - a9e5dfda-f913-4e6b-af07-5a3f92f78cd6 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -495,14 +495,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 18:02:49 GMT + - Tue, 24 Mar 2020 15:38:36 GMT method: GET - uri: https://batche2690d64.westcentralus.batch.azure.com/poolusagemetrics?api-version=2019-08-01.10.0 + uri: https://batche2690d64.westcentralus.batch.azure.com/poolusagemetrics?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batche2690d64.westcentralus.batch.azure.com/$metadata#poolusagemetrics\",\"value\":[\r\n @@ -513,9 +513,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 18:02:49 GMT + - Tue, 24 Mar 2020 15:38:36 GMT request-id: - - bc9667f4-767d-4bd8-9752-b2dbed035d6c + - dfe0484f-68cc-4a08-836c-c5f628e24ea4 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 155c0bcb252a..c2616a02f20d 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:29 GMT + - Wed, 18 Mar 2020 23:23:08 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2020-03-01.11.0 response: body: string: '' @@ -33,15 +33,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:08 GMT etag: - - '0x8D71AD2391117B9' + - '0x8D7CB93519A7081' last-modified: - - Wed, 07 Aug 2019 00:57:29 GMT + - Wed, 18 Mar 2020 23:23:08 GMT location: - https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task1_98da0af6 request-id: - - 7f425cba-f772-48d6-86ea-6aeb881dc06d + - 23c39e12-84ad-47cf-a59b-7bc2cc6ef3bf server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -63,17 +63,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:08 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task1_98da0af6?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task1_98da0af6?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task1_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task1_98da0af6\",\"eTag\":\"0x8D71AD2391117B9\",\"creationTime\":\"2019-08-07T00:57:29.9090361Z\",\"lastModified\":\"2019-08-07T00:57:29.9090361Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:29.9090361Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task1_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task1_98da0af6\",\"eTag\":\"0x8D7CB93519A7081\",\"creationTime\":\"2020-03-18T23:23:08.5921409Z\",\"lastModified\":\"2020-03-18T23:23:08.5921409Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:08.5921409Z\",\"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 @@ -88,13 +88,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:08 GMT etag: - - '0x8D71AD2391117B9' + - '0x8D7CB93519A7081' last-modified: - - Wed, 07 Aug 2019 00:57:29 GMT + - Wed, 18 Mar 2020 23:23:08 GMT request-id: - - dc99e894-d1e0-4e4c-9a9b-ef710c1ae928 + - 1034d7c8-e7ce-47d5-85bc-bd18c7ca9b7f server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -126,14 +126,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:08 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2020-03-01.11.0 response: body: string: '' @@ -143,15 +143,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:08 GMT etag: - - '0x8D71AD23978913D' + - '0x8D7CB9351D1D523' last-modified: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:08 GMT location: - https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task2_98da0af6 request-id: - - ce8cb07f-a744-471d-9376-6305b6de7e6d + - 5e0602a1-6296-41c7-a422-5dc5ce143180 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -173,17 +173,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:09 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task2_98da0af6?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task2_98da0af6?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task2_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task2_98da0af6\",\"eTag\":\"0x8D71AD23978913D\",\"creationTime\":\"2019-08-07T00:57:30.5871677Z\",\"lastModified\":\"2019-08-07T00:57:30.5871677Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:30.5871677Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task2_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task2_98da0af6\",\"eTag\":\"0x8D7CB9351D1D523\",\"creationTime\":\"2020-03-18T23:23:08.9551651Z\",\"lastModified\":\"2020-03-18T23:23:08.9551651Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:08.9551651Z\",\"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 @@ -199,13 +199,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:08 GMT etag: - - '0x8D71AD23978913D' + - '0x8D7CB9351D1D523' last-modified: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:08 GMT request-id: - - 8d9d82c5-7459-4ced-baba-81ec8807900c + - 3c23159e-8ddb-45e6-afb5-6c725f3e5d9c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -232,14 +232,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:09 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2020-03-01.11.0 response: body: string: '' @@ -249,15 +249,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:08 GMT etag: - - '0x8D71AD239A2C252' + - '0x8D7CB9351EBEACA' last-modified: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:09 GMT location: - https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task3_98da0af6 request-id: - - 7cb55240-0e20-4788-a1fc-58d29841c1c3 + - 10dad41a-0a24-4cb9-ae5b-ef54a5af111c server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -279,17 +279,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:09 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task3_98da0af6?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task3_98da0af6?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task3_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task3_98da0af6\",\"eTag\":\"0x8D71AD239A2C252\",\"creationTime\":\"2019-08-07T00:57:30.8636754Z\",\"lastModified\":\"2019-08-07T00:57:30.8636754Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:30.8636754Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task3_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task3_98da0af6\",\"eTag\":\"0x8D7CB9351EBEACA\",\"creationTime\":\"2020-03-18T23:23:09.126113Z\",\"lastModified\":\"2020-03-18T23:23:09.126113Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.126113Z\",\"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 @@ -300,13 +300,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:09 GMT etag: - - '0x8D71AD239A2C252' + - '0x8D7CB9351EBEACA' last-modified: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:09 GMT request-id: - - 6c571e62-1f78-4d91-958a-240e5f49a211 + - 8e4d50bb-5e1d-49cd-83a8-480293adb70a server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -333,14 +333,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2020-03-01.11.0 response: body: string: '' @@ -350,15 +350,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:30 GMT + - Wed, 18 Mar 2020 23:23:09 GMT etag: - - '0x8D71AD239C61C23' + - '0x8D7CB93520842C9' last-modified: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT location: - https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task4_98da0af6 request-id: - - ce9fdee2-2421-43a3-b91f-fedfe038bdc2 + - 1f83f028-cf8f-4505-bedf-46e9da622810 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -380,17 +380,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task4_98da0af6?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task4_98da0af6?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task4_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task4_98da0af6\",\"eTag\":\"0x8D71AD239C61C23\",\"creationTime\":\"2019-08-07T00:57:31.0953507Z\",\"lastModified\":\"2019-08-07T00:57:31.0953507Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:31.0953507Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task4_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task4_98da0af6\",\"eTag\":\"0x8D7CB93520842C9\",\"creationTime\":\"2020-03-18T23:23:09.3118665Z\",\"lastModified\":\"2020-03-18T23:23:09.3118665Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.3118665Z\",\"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 @@ -401,13 +401,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT etag: - - '0x8D71AD239C61C23' + - '0x8D7CB93520842C9' last-modified: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT request-id: - - e74b896d-9534-4274-b748-b28ac6e258c4 + - 0e049a53-e75a-4c0b-b62c-1ef48bf49240 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -435,14 +435,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2020-03-01.11.0 response: body: string: '' @@ -452,15 +452,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT etag: - - '0x8D71AD239E8D509' + - '0x8D7CB935231491D' last-modified: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT location: - https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task5_98da0af6 request-id: - - d13dd686-3fe5-4727-add1-8536cd67771e + - 1ab25e24-a67b-495c-8482-45429dd3dfdf server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -482,17 +482,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task5_98da0af6?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task5_98da0af6?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task5_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task5_98da0af6\",\"eTag\":\"0x8D71AD239E8D509\",\"creationTime\":\"2019-08-07T00:57:31.3229065Z\",\"lastModified\":\"2019-08-07T00:57:31.3229065Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:31.3229065Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task5_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task5_98da0af6\",\"eTag\":\"0x8D7CB935231491D\",\"creationTime\":\"2020-03-18T23:23:09.5807261Z\",\"lastModified\":\"2020-03-18T23:23:09.5807261Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.5807261Z\",\"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 @@ -504,13 +504,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT etag: - - '0x8D71AD239E8D509' + - '0x8D7CB935231491D' last-modified: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT request-id: - - eaba1b72-d0b0-4ca8-bfda-4a530e7a81c6 + - 9ff841c8-9340-4098-8362-02989663bad5 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -537,14 +537,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2020-03-01.11.0 response: body: string: '' @@ -554,15 +554,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT etag: - - '0x8D71AD23A0AFCCE' + - '0x8D7CB9352543E7B' last-modified: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT location: - https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6 request-id: - - f0f131ef-a4e6-4859-8f49-c374761d271f + - 05102afa-e619-4d3b-98aa-b853b427e733 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -584,17 +584,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D71AD23A0AFCCE\",\"creationTime\":\"2019-08-07T00:57:31.546747Z\",\"lastModified\":\"2019-08-07T00:57:31.546747Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:31.546747Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D7CB9352543E7B\",\"creationTime\":\"2020-03-18T23:23:09.8098299Z\",\"lastModified\":\"2020-03-18T23:23:09.8098299Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.8098299Z\",\"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 \ },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n}" @@ -604,13 +604,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT etag: - - '0x8D71AD23A0AFCCE' + - '0x8D7CB9352543E7B' last-modified: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT request-id: - - 4008f296-7eb2-4776-b764-43dca9e37f43 + - cb1c14b8-57d9-4852-8cab-70acd53df11e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -639,20 +639,20 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"batch_task9_98da0af6\",\"eTag\":\"0x8D71AD23A2DD5DF\",\"lastModified\":\"2019-08-07T00:57:31.7751263Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task9_98da0af6\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"batch_task7_98da0af6\",\"eTag\":\"0x8D71AD23A2E8B53\",\"lastModified\":\"2019-08-07T00:57:31.7797715Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task7_98da0af6\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"batch_task8_98da0af6\",\"eTag\":\"0x8D71AD23A2F4DC4\",\"lastModified\":\"2019-08-07T00:57:31.7847492Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task8_98da0af6\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"batch_task9_98da0af6\",\"eTag\":\"0x8D7CB9352688E0A\",\"lastModified\":\"2020-03-18T23:23:09.9429386Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task9_98da0af6\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"batch_task7_98da0af6\",\"eTag\":\"0x8D7CB93526AD85E\",\"lastModified\":\"2020-03-18T23:23:09.9579486Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task7_98da0af6\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"batch_task8_98da0af6\",\"eTag\":\"0x8D7CB93526B26C3\",\"lastModified\":\"2020-03-18T23:23:09.9599555Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task8_98da0af6\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -660,9 +660,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT request-id: - - 18832663-61db-4ad3-811c-9f3f0eed0303 + - 1eed007c-569e-406a-9b44-7f0f415adce2 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -684,18 +684,18 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:10 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks\",\"value\":[\r\n - \ {\r\n \"id\":\"batch_task1_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task1_98da0af6\",\"eTag\":\"0x8D71AD2391117B9\",\"creationTime\":\"2019-08-07T00:57:29.9090361Z\",\"lastModified\":\"2019-08-07T00:57:29.9090361Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:29.9090361Z\",\"commandLine\":\"cmd + \ {\r\n \"id\":\"batch_task1_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task1_98da0af6\",\"eTag\":\"0x8D7CB93519A7081\",\"creationTime\":\"2020-03-18T23:23:08.5921409Z\",\"lastModified\":\"2020-03-18T23:23:08.5921409Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:08.5921409Z\",\"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 @@ -705,7 +705,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 \ },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n - \ }\r\n },{\r\n \"id\":\"batch_task2_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task2_98da0af6\",\"eTag\":\"0x8D71AD23978913D\",\"creationTime\":\"2019-08-07T00:57:30.5871677Z\",\"lastModified\":\"2019-08-07T00:57:30.5871677Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:30.5871677Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task2_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task2_98da0af6\",\"eTag\":\"0x8D7CB9351D1D523\",\"creationTime\":\"2020-03-18T23:23:08.9551651Z\",\"lastModified\":\"2020-03-18T23:23:08.9551651Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:08.9551651Z\",\"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 @@ -716,38 +716,38 @@ interactions: \ \"scope\":\"pool\",\"elevationLevel\":\"nonadmin\"\r\n }\r\n \ },\"constraints\":{\r\n \"maxWallClockTime\":\"P10675199DT2H48M5.4775807S\",\"retentionTime\":\"P7D\",\"maxTaskRetryCount\":0\r\n \ },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n - \ }\r\n },{\r\n \"id\":\"batch_task3_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task3_98da0af6\",\"eTag\":\"0x8D71AD239A2C252\",\"creationTime\":\"2019-08-07T00:57:30.8636754Z\",\"lastModified\":\"2019-08-07T00:57:30.8636754Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:30.8636754Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task3_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task3_98da0af6\",\"eTag\":\"0x8D7CB9351EBEACA\",\"creationTime\":\"2020-03-18T23:23:09.126113Z\",\"lastModified\":\"2020-03-18T23:23:09.126113Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.126113Z\",\"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 \ },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n - \ }\r\n },{\r\n \"id\":\"batch_task4_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task4_98da0af6\",\"eTag\":\"0x8D71AD239C61C23\",\"creationTime\":\"2019-08-07T00:57:31.0953507Z\",\"lastModified\":\"2019-08-07T00:57:31.0953507Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:31.0953507Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task4_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task4_98da0af6\",\"eTag\":\"0x8D7CB93520842C9\",\"creationTime\":\"2020-03-18T23:23:09.3118665Z\",\"lastModified\":\"2020-03-18T23:23:09.3118665Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.3118665Z\",\"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 \ },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n - \ }\r\n },{\r\n \"id\":\"batch_task5_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task5_98da0af6\",\"eTag\":\"0x8D71AD239E8D509\",\"creationTime\":\"2019-08-07T00:57:31.3229065Z\",\"lastModified\":\"2019-08-07T00:57:31.3229065Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:31.3229065Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task5_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task5_98da0af6\",\"eTag\":\"0x8D7CB935231491D\",\"creationTime\":\"2020-03-18T23:23:09.5807261Z\",\"lastModified\":\"2020-03-18T23:23:09.5807261Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.5807261Z\",\"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 \ },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n - \ }\r\n },{\r\n \"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D71AD23A0AFCCE\",\"creationTime\":\"2019-08-07T00:57:31.546747Z\",\"lastModified\":\"2019-08-07T00:57:31.546747Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:31.546747Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D7CB9352543E7B\",\"creationTime\":\"2020-03-18T23:23:09.8098299Z\",\"lastModified\":\"2020-03-18T23:23:09.8098299Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.8098299Z\",\"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 \ },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n - \ }\r\n },{\r\n \"id\":\"batch_task7_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task7_98da0af6\",\"eTag\":\"0x8D71AD23A2E8B53\",\"creationTime\":\"2019-08-07T00:57:31.7797715Z\",\"lastModified\":\"2019-08-07T00:57:31.7797715Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:31.7797715Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task7_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task7_98da0af6\",\"eTag\":\"0x8D7CB93526AD85E\",\"creationTime\":\"2020-03-18T23:23:09.9579486Z\",\"lastModified\":\"2020-03-18T23:23:09.9579486Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.9579486Z\",\"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 \ },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n - \ }\r\n },{\r\n \"id\":\"batch_task8_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task8_98da0af6\",\"eTag\":\"0x8D71AD23A2F4DC4\",\"creationTime\":\"2019-08-07T00:57:31.7847492Z\",\"lastModified\":\"2019-08-07T00:57:31.7847492Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:31.7847492Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task8_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task8_98da0af6\",\"eTag\":\"0x8D7CB93526B26C3\",\"creationTime\":\"2020-03-18T23:23:09.9599555Z\",\"lastModified\":\"2020-03-18T23:23:09.9599555Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.9599555Z\",\"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 \ },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n - \ }\r\n },{\r\n \"id\":\"batch_task9_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task9_98da0af6\",\"eTag\":\"0x8D71AD23A2DD5DF\",\"creationTime\":\"2019-08-07T00:57:31.7751263Z\",\"lastModified\":\"2019-08-07T00:57:31.7751263Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:31.7751263Z\",\"commandLine\":\"cmd + \ }\r\n },{\r\n \"id\":\"batch_task9_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task9_98da0af6\",\"eTag\":\"0x8D7CB9352688E0A\",\"creationTime\":\"2020-03-18T23:23:09.9429386Z\",\"lastModified\":\"2020-03-18T23:23:09.9429386Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:09.9429386Z\",\"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 @@ -759,9 +759,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:09 GMT request-id: - - 26ef6dd1-c5f8-45f3-9851-3fd2f06a4de8 + - 4865f1cf-fa09-4910-b010-02a0fc710e35 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -783,14 +783,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:31 GMT + - Wed, 18 Mar 2020 23:23:10 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/taskcounts?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/taskcounts?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskcounts/@Element\",\"active\":0,\"running\":0,\"completed\":0,\"succeeded\":0,\"failed\":0\r\n}" @@ -800,9 +800,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:09 GMT request-id: - - ae8cb583-6d54-420d-bdc3-051ef97087f8 + - 2a7f0f55-d9d8-42f9-a52b-26516096d0c1 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -826,14 +826,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6/terminate?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6/terminate?api-version=2020-03-01.11.0 response: body: string: '' @@ -845,13 +845,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT etag: - - '0x8D71AD23A9C65E2' + - '0x8D7CB93529E4144' last-modified: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT request-id: - - a8f18c12-4150-4543-a6aa-a82570a5f98a + - 76b7d9b4-5308-42e8-afca-457aa2a56d80 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -871,20 +871,20 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D71AD23A9C65E2\",\"creationTime\":\"2019-08-07T00:57:31.546747Z\",\"lastModified\":\"2019-08-07T00:57:32.499709Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2019-08-07T00:57:32.499709Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2019-08-07T00:57:31.546747Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D7CB93529E4144\",\"creationTime\":\"2020-03-18T23:23:09.8098299Z\",\"lastModified\":\"2020-03-18T23:23:10.2948676Z\",\"state\":\"completed\",\"stateTransitionTime\":\"2020-03-18T23:23:10.2948676Z\",\"previousState\":\"active\",\"previousStateTransitionTime\":\"2020-03-18T23:23:09.8098299Z\",\"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 - \ },\"executionInfo\":{\r\n \"endTime\":\"2019-08-07T00:57:32.499709Z\",\"failureInfo\":{\r\n + \ },\"executionInfo\":{\r\n \"endTime\":\"2020-03-18T23:23:10.2948676Z\",\"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 \r\n }\r\n}" @@ -894,13 +894,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT etag: - - '0x8D71AD23A9C65E2' + - '0x8D7CB93529E4144' last-modified: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT request-id: - - 634e3bc5-1af4-4f86-b62d-49bd3e2a67ec + - 32662525-f9ad-43a9-8bf5-6a3f5acf59fb server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -924,14 +924,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6/reactivate?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6/reactivate?api-version=2020-03-01.11.0 response: body: string: '' @@ -941,13 +941,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT etag: - - '0x8D71AD23ACCE057' + - '0x8D7CB9352B4080B' last-modified: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT request-id: - - 980deb03-c1fe-416d-a64d-da4015ac2905 + - 92b99ad1-650e-415b-bb71-c7c7ef0de8ac server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -967,17 +967,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D71AD23ACCE057\",\"creationTime\":\"2019-08-07T00:57:31.546747Z\",\"lastModified\":\"2019-08-07T00:57:32.8174167Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T00:57:32.8174167Z\",\"previousState\":\"completed\",\"previousStateTransitionTime\":\"2019-08-07T00:57:32.499709Z\",\"commandLine\":\"cmd + string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#tasks/@Element\",\"id\":\"batch_task6_98da0af6\",\"url\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6\",\"eTag\":\"0x8D7CB9352B4080B\",\"creationTime\":\"2020-03-18T23:23:09.8098299Z\",\"lastModified\":\"2020-03-18T23:23:10.4375819Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:23:10.4375819Z\",\"previousState\":\"completed\",\"previousStateTransitionTime\":\"2020-03-18T23:23:10.2948676Z\",\"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 \ },\"executionInfo\":{\r\n \"retryCount\":0,\"requeueCount\":0\r\n }\r\n}" @@ -987,13 +987,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT etag: - - '0x8D71AD23ACCE057' + - '0x8D7CB9352B4080B' last-modified: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT request-id: - - f55b7b21-da3a-4c00-b2cf-5577a62aae8f + - 317a63bb-eae2-4059-9f9b-81842bcae39e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1019,14 +1019,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT method: PUT - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6?api-version=2020-03-01.11.0 response: body: string: '' @@ -1036,13 +1036,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT etag: - - '0x8D71AD23AF06E0A' + - '0x8D7CB9352D17A33' last-modified: - - Wed, 07 Aug 2019 00:57:33 GMT + - Wed, 18 Mar 2020 23:23:10 GMT request-id: - - 17c05ac9-9e25-4eba-9408-9ab2c04b3789 + - cd646287-3aec-4f7c-bd79-2e7c6b081a0d server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1064,14 +1064,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:33 GMT + - Wed, 18 Mar 2020 23:23:10 GMT method: GET - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6/subtasksinfo?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6/subtasksinfo?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#subtaskinfo\",\"value\":[\r\n @@ -1082,9 +1082,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT request-id: - - 4ff2a452-f8ff-425c-998c-abc5b754267b + - 24eaac3c-2165-4e42-84c7-5543c8156993 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -1108,14 +1108,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:33 GMT + - Wed, 18 Mar 2020 23:23:10 GMT method: DELETE - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/batch_task6_98da0af6?api-version=2020-03-01.11.0 response: body: string: '' @@ -1123,9 +1123,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:32 GMT + - Wed, 18 Mar 2020 23:23:10 GMT request-id: - - 024814a9-c98a-435e-a948-808eda44a09d + - e933693b-7063-4873-97b2-3265dcedce35 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -11152,19 +11152,19 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:34 GMT + - Wed, 18 Mar 2020 23:23:11 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"RequestBodyTooLarge\",\"message\":{\r\n \ \"lang\":\"en-US\",\"value\":\"The request body is too large and exceeds - the maximum permissible limit.\\nRequestId:90de7706-750a-4fa0-b73b-9fd8bf013c67\\nTime:2019-08-07T00:57:34.3761446Z\"\r\n + the maximum permissible limit.\\nRequestId:bbba5fa9-ae30-4caf-80d7-9de6524d59cc\\nTime:2020-03-18T23:23:11.5015039Z\"\r\n \ },\"values\":[\r\n {\r\n \"key\":\"MaxLimit\",\"value\":\"1048576\"\r\n \ }\r\n ]\r\n}" headers: @@ -11175,9 +11175,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:34 GMT + - Wed, 18 Mar 2020 23:23:11 GMT request-id: - - 90de7706-750a-4fa0-b73b-9fd8bf013c67 + - bbba5fa9-ae30-4caf-80d7-9de6524d59cc server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -21202,19 +21202,19 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:35 GMT + - Wed, 18 Mar 2020 23:23:12 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"RequestBodyTooLarge\",\"message\":{\r\n \ \"lang\":\"en-US\",\"value\":\"The request body is too large and exceeds - the maximum permissible limit.\\nRequestId:1eac3d03-9810-4ab3-b663-d8953714c2fe\\nTime:2019-08-07T00:57:35.8069852Z\"\r\n + the maximum permissible limit.\\nRequestId:1254182c-18f5-4ce6-bebb-fe2e4cc74f3d\\nTime:2020-03-18T23:23:12.5046416Z\"\r\n \ },\"values\":[\r\n {\r\n \"key\":\"MaxLimit\",\"value\":\"1048576\"\r\n \ }\r\n ]\r\n}" headers: @@ -21225,9 +21225,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:35 GMT + - Wed, 18 Mar 2020 23:23:12 GMT request-id: - - 1eac3d03-9810-4ab3-b663-d8953714c2fe + - 1254182c-18f5-4ce6-bebb-fe2e4cc74f3d server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -31351,19 +31351,19 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:36 GMT + - Wed, 18 Mar 2020 23:23:13 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#Microsoft.Azure.Batch.Protocol.Entities.Container.errors/@Element\",\"code\":\"RequestBodyTooLarge\",\"message\":{\r\n \ \"lang\":\"en-US\",\"value\":\"The request body is too large and exceeds - the maximum permissible limit.\\nRequestId:5d332034-f03d-496e-b631-757d5b8ea3de\\nTime:2019-08-07T00:57:37.0067743Z\"\r\n + the maximum permissible limit.\\nRequestId:faa7bd9a-b941-4ff4-870d-67c92786d569\\nTime:2020-03-18T23:23:13.3822284Z\"\r\n \ },\"values\":[\r\n {\r\n \"key\":\"MaxLimit\",\"value\":\"1048576\"\r\n \ }\r\n ]\r\n}" headers: @@ -31374,9 +31374,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:36 GMT + - Wed, 18 Mar 2020 23:23:13 GMT request-id: - - 5d332034-f03d-496e-b631-757d5b8ea3de + - faa7bd9a-b941-4ff4-870d-67c92786d569 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -36450,67 +36450,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:37 GMT + - Wed, 18 Mar 2020 23:23:13 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask732\",\"eTag\":\"0x8D71AD23DAF3761\",\"lastModified\":\"2019-08-07T00:57:37.6562017Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask732\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask731\",\"eTag\":\"0x8D71AD23DAF5E81\",\"lastModified\":\"2019-08-07T00:57:37.6572033Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask731\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask730\",\"eTag\":\"0x8D71AD23DB09740\",\"lastModified\":\"2019-08-07T00:57:37.6652096Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask730\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask729\",\"eTag\":\"0x8D71AD23DB237C7\",\"lastModified\":\"2019-08-07T00:57:37.6758727Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask729\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask728\",\"eTag\":\"0x8D71AD23DB3A43E\",\"lastModified\":\"2019-08-07T00:57:37.685203Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask728\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask727\",\"eTag\":\"0x8D71AD23DB578DF\",\"lastModified\":\"2019-08-07T00:57:37.6971999Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask727\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask726\",\"eTag\":\"0x8D71AD23DB68A61\",\"lastModified\":\"2019-08-07T00:57:37.7042017Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask726\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask725\",\"eTag\":\"0x8D71AD23DB8AD43\",\"lastModified\":\"2019-08-07T00:57:37.7182019Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask725\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask724\",\"eTag\":\"0x8D71AD23DB9E5A8\",\"lastModified\":\"2019-08-07T00:57:37.7261992Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask724\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask723\",\"eTag\":\"0x8D71AD23DBB6C52\",\"lastModified\":\"2019-08-07T00:57:37.7362002Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask723\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask722\",\"eTag\":\"0x8D71AD23DBCF307\",\"lastModified\":\"2019-08-07T00:57:37.7462023Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask722\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask721\",\"eTag\":\"0x8D71AD23DBE79A1\",\"lastModified\":\"2019-08-07T00:57:37.7562017Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask721\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask720\",\"eTag\":\"0x8D71AD23DBF6448\",\"lastModified\":\"2019-08-07T00:57:37.7622088Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask720\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask719\",\"eTag\":\"0x8D71AD23DC0003A\",\"lastModified\":\"2019-08-07T00:57:37.766201Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask719\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask718\",\"eTag\":\"0x8D71AD23DC1ADEB\",\"lastModified\":\"2019-08-07T00:57:37.7772011Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask718\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask717\",\"eTag\":\"0x8D71AD23DC2E66C\",\"lastModified\":\"2019-08-07T00:57:37.7852012Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask717\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask716\",\"eTag\":\"0x8D71AD23DC4460E\",\"lastModified\":\"2019-08-07T00:57:37.794203Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask716\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask715\",\"eTag\":\"0x8D71AD23DC5CCA4\",\"lastModified\":\"2019-08-07T00:57:37.804202Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask715\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask714\",\"eTag\":\"0x8D71AD23DC75328\",\"lastModified\":\"2019-08-07T00:57:37.8141992Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask714\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask713\",\"eTag\":\"0x8D71AD23DC8D9E5\",\"lastModified\":\"2019-08-07T00:57:37.8242021Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask713\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask712\",\"eTag\":\"0x8D71AD23DCA3973\",\"lastModified\":\"2019-08-07T00:57:37.8332019Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask712\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask711\",\"eTag\":\"0x8D71AD23DCBC020\",\"lastModified\":\"2019-08-07T00:57:37.8432032Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask711\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask710\",\"eTag\":\"0x8D71AD23DCBC020\",\"lastModified\":\"2019-08-07T00:57:37.8432032Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask710\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask709\",\"eTag\":\"0x8D71AD23DCE7F3A\",\"lastModified\":\"2019-08-07T00:57:37.8612026Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask709\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask708\",\"eTag\":\"0x8D71AD23DCEF45B\",\"lastModified\":\"2019-08-07T00:57:37.8642011Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask708\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask707\",\"eTag\":\"0x8D71AD23DD005E5\",\"lastModified\":\"2019-08-07T00:57:37.8712037Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask707\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask706\",\"eTag\":\"0x8D71AD23DD18C6E\",\"lastModified\":\"2019-08-07T00:57:37.8812014Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask706\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask705\",\"eTag\":\"0x8D71AD23DD31320\",\"lastModified\":\"2019-08-07T00:57:37.8912032Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask705\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask704\",\"eTag\":\"0x8D71AD23DD4C0D5\",\"lastModified\":\"2019-08-07T00:57:37.9022037Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask704\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask702\",\"eTag\":\"0x8D71AD23DD5F944\",\"lastModified\":\"2019-08-07T00:57:37.910202Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask702\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask701\",\"eTag\":\"0x8D71AD23DD758DD\",\"lastModified\":\"2019-08-07T00:57:37.9192029Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask701\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask703\",\"eTag\":\"0x8D71AD23DD84693\",\"lastModified\":\"2019-08-07T00:57:37.9252883Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask703\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask700\",\"eTag\":\"0x8D71AD23DD9AD96\",\"lastModified\":\"2019-08-07T00:57:37.934479Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask700\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask699\",\"eTag\":\"0x8D71AD23DDA675B\",\"lastModified\":\"2019-08-07T00:57:37.9392347Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask699\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask698\",\"eTag\":\"0x8D71AD23DDB9EB8\",\"lastModified\":\"2019-08-07T00:57:37.9472056Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask698\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask697\",\"eTag\":\"0x8D71AD23DDCFEF2\",\"lastModified\":\"2019-08-07T00:57:37.9562226Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask697\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask696\",\"eTag\":\"0x8D71AD23DE2F17A\",\"lastModified\":\"2019-08-07T00:57:37.9951994Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask696\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask695\",\"eTag\":\"0x8D71AD23DE33FC4\",\"lastModified\":\"2019-08-07T00:57:37.9972036Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask695\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask694\",\"eTag\":\"0x8D71AD23DE366CF\",\"lastModified\":\"2019-08-07T00:57:37.9982031Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask694\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask693\",\"eTag\":\"0x8D71AD23DE6CBE5\",\"lastModified\":\"2019-08-07T00:57:38.0204517Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask693\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask691\",\"eTag\":\"0x8D71AD23DE7117C\",\"lastModified\":\"2019-08-07T00:57:38.0222332Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask691\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask690\",\"eTag\":\"0x8D71AD23DE7117C\",\"lastModified\":\"2019-08-07T00:57:38.0222332Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask690\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask689\",\"eTag\":\"0x8D71AD23DE87006\",\"lastModified\":\"2019-08-07T00:57:38.031207Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask689\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask692\",\"eTag\":\"0x8D71AD23DE8E53D\",\"lastModified\":\"2019-08-07T00:57:38.0342077Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask692\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask688\",\"eTag\":\"0x8D71AD23DE9F678\",\"lastModified\":\"2019-08-07T00:57:38.0412024Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask688\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask687\",\"eTag\":\"0x8D71AD23DEB7EDA\",\"lastModified\":\"2019-08-07T00:57:38.0512474Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask687\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask686\",\"eTag\":\"0x8D71AD23DECB5AD\",\"lastModified\":\"2019-08-07T00:57:38.0592045Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask686\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask685\",\"eTag\":\"0x8D71AD23DEE8D17\",\"lastModified\":\"2019-08-07T00:57:38.0712727Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask685\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask684\",\"eTag\":\"0x8D71AD23DEFE9D7\",\"lastModified\":\"2019-08-07T00:57:38.0802007Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask684\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask683\",\"eTag\":\"0x8D71AD23DF0FC09\",\"lastModified\":\"2019-08-07T00:57:38.0872201Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask683\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask730\",\"eTag\":\"0x8D7CB9354CBD47B\",\"lastModified\":\"2020-03-18T23:23:13.9489915Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask730\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask732\",\"eTag\":\"0x8D7CB9354CBD47B\",\"lastModified\":\"2020-03-18T23:23:13.9489915Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask732\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask731\",\"eTag\":\"0x8D7CB9354CCE62D\",\"lastModified\":\"2020-03-18T23:23:13.9559981Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask731\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask729\",\"eTag\":\"0x8D7CB9354CD0D58\",\"lastModified\":\"2020-03-18T23:23:13.9570008Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask729\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask728\",\"eTag\":\"0x8D7CB9354CF7DF2\",\"lastModified\":\"2020-03-18T23:23:13.9729906Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask728\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask724\",\"eTag\":\"0x8D7CB9354D1C7D2\",\"lastModified\":\"2020-03-18T23:23:13.987989Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask724\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask725\",\"eTag\":\"0x8D7CB9354D1C7D2\",\"lastModified\":\"2020-03-18T23:23:13.987989Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask725\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask723\",\"eTag\":\"0x8D7CB9354D378C9\",\"lastModified\":\"2020-03-18T23:23:13.9990729Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask723\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask727\",\"eTag\":\"0x8D7CB9354CE4E00\",\"lastModified\":\"2020-03-18T23:23:13.9652096Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask727\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask726\",\"eTag\":\"0x8D7CB9354CF3183\",\"lastModified\":\"2020-03-18T23:23:13.9710339Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask726\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask720\",\"eTag\":\"0x8D7CB9354D65BBF\",\"lastModified\":\"2020-03-18T23:23:14.0179903Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask720\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask719\",\"eTag\":\"0x8D7CB9354DAEFA9\",\"lastModified\":\"2020-03-18T23:23:14.0479913Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask719\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask722\",\"eTag\":\"0x8D7CB9354D4FC32\",\"lastModified\":\"2020-03-18T23:23:14.0089906Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask722\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask721\",\"eTag\":\"0x8D7CB9354D4FC32\",\"lastModified\":\"2020-03-18T23:23:14.0089906Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask721\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask718\",\"eTag\":\"0x8D7CB9354DD608D\",\"lastModified\":\"2020-03-18T23:23:14.0639885Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask718\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask717\",\"eTag\":\"0x8D7CB9354DDD5E6\",\"lastModified\":\"2020-03-18T23:23:14.0669926Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask717\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask716\",\"eTag\":\"0x8D7CB9354DEE72D\",\"lastModified\":\"2020-03-18T23:23:14.0739885Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask716\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask715\",\"eTag\":\"0x8D7CB9354E06DCE\",\"lastModified\":\"2020-03-18T23:23:14.0839886Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask715\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask714\",\"eTag\":\"0x8D7CB9354E1E86D\",\"lastModified\":\"2020-03-18T23:23:14.0936813Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask714\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask713\",\"eTag\":\"0x8D7CB9354E36C23\",\"lastModified\":\"2020-03-18T23:23:14.1036067Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask713\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask711\",\"eTag\":\"0x8D7CB9354E501B5\",\"lastModified\":\"2020-03-18T23:23:14.1139893Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask711\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask712\",\"eTag\":\"0x8D7CB9354E4E7E3\",\"lastModified\":\"2020-03-18T23:23:14.1133283Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask712\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask710\",\"eTag\":\"0x8D7CB9354E6615C\",\"lastModified\":\"2020-03-18T23:23:14.1229916Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask710\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask709\",\"eTag\":\"0x8D7CB9354E772F7\",\"lastModified\":\"2020-03-18T23:23:14.1299959Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask709\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask708\",\"eTag\":\"0x8D7CB9354E95B69\",\"lastModified\":\"2020-03-18T23:23:14.1425001Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask708\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask707\",\"eTag\":\"0x8D7CB9354EADC7A\",\"lastModified\":\"2020-03-18T23:23:14.1523578Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask707\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask706\",\"eTag\":\"0x8D7CB9354EC5AE5\",\"lastModified\":\"2020-03-18T23:23:14.1621477Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask706\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask705\",\"eTag\":\"0x8D7CB9354EDDB69\",\"lastModified\":\"2020-03-18T23:23:14.1719913Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask705\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask704\",\"eTag\":\"0x8D7CB9354EF527D\",\"lastModified\":\"2020-03-18T23:23:14.1815933Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask704\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask703\",\"eTag\":\"0x8D7CB9354F0BEB7\",\"lastModified\":\"2020-03-18T23:23:14.1909175Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask703\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask702\",\"eTag\":\"0x8D7CB9354F2303A\",\"lastModified\":\"2020-03-18T23:23:14.200377Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask702\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask701\",\"eTag\":\"0x8D7CB9354F2482D\",\"lastModified\":\"2020-03-18T23:23:14.2009901Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask701\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask700\",\"eTag\":\"0x8D7CB9354F49E19\",\"lastModified\":\"2020-03-18T23:23:14.2162969Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask700\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask699\",\"eTag\":\"0x8D7CB9354F5C67A\",\"lastModified\":\"2020-03-18T23:23:14.2238842Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask699\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask698\",\"eTag\":\"0x8D7CB9354F6E9E8\",\"lastModified\":\"2020-03-18T23:23:14.2313448Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask698\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask697\",\"eTag\":\"0x8D7CB9354F814D8\",\"lastModified\":\"2020-03-18T23:23:14.2389976Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask697\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask696\",\"eTag\":\"0x8D7CB9354F9386A\",\"lastModified\":\"2020-03-18T23:23:14.2464618Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask696\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask695\",\"eTag\":\"0x8D7CB9354FA857E\",\"lastModified\":\"2020-03-18T23:23:14.2549886Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask695\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask694\",\"eTag\":\"0x8D7CB9354FBCD34\",\"lastModified\":\"2020-03-18T23:23:14.263378Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask694\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask693\",\"eTag\":\"0x8D7CB9354FD3439\",\"lastModified\":\"2020-03-18T23:23:14.2725689Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask693\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask692\",\"eTag\":\"0x8D7CB9354FE98A2\",\"lastModified\":\"2020-03-18T23:23:14.281693Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask692\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask691\",\"eTag\":\"0x8D7CB9354FFFFA9\",\"lastModified\":\"2020-03-18T23:23:14.2908841Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask691\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask690\",\"eTag\":\"0x8D7CB935501636A\",\"lastModified\":\"2020-03-18T23:23:14.2999914Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask690\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask689\",\"eTag\":\"0x8D7CB9355024E36\",\"lastModified\":\"2020-03-18T23:23:14.3060022Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask689\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask688\",\"eTag\":\"0x8D7CB935503CA14\",\"lastModified\":\"2020-03-18T23:23:14.3157268Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask688\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask687\",\"eTag\":\"0x8D7CB9355047194\",\"lastModified\":\"2020-03-18T23:23:14.3200148Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask687\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask686\",\"eTag\":\"0x8D7CB935505D035\",\"lastModified\":\"2020-03-18T23:23:14.3289909Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask686\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask685\",\"eTag\":\"0x8D7CB93550708B9\",\"lastModified\":\"2020-03-18T23:23:14.3369913Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask685\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask684\",\"eTag\":\"0x8D7CB93550861F0\",\"lastModified\":\"2020-03-18T23:23:14.3458288Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask684\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask683\",\"eTag\":\"0x8D7CB9355090587\",\"lastModified\":\"2020-03-18T23:23:14.3500167Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask683\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -36518,9 +36518,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:37 GMT + - Wed, 18 Mar 2020 23:23:13 GMT request-id: - - 938ea8fc-1bbf-4329-9f3b-1c3123c63d40 + - 9b5ece42-5075-4d9c-99bd-040e639cd84e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -41596,67 +41596,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:38 GMT + - Wed, 18 Mar 2020 23:23:14 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask632\",\"eTag\":\"0x8D71AD23E671762\",\"lastModified\":\"2019-08-07T00:57:38.861245Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask632\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask631\",\"eTag\":\"0x8D71AD23E6888CA\",\"lastModified\":\"2019-08-07T00:57:38.8707018Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask631\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask630\",\"eTag\":\"0x8D71AD23E69FF5F\",\"lastModified\":\"2019-08-07T00:57:38.8802911Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask630\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask629\",\"eTag\":\"0x8D71AD23E6A01F4\",\"lastModified\":\"2019-08-07T00:57:38.8803572Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask629\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask628\",\"eTag\":\"0x8D71AD23E6B7141\",\"lastModified\":\"2019-08-07T00:57:38.8897601Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask628\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask627\",\"eTag\":\"0x8D71AD23E6E6431\",\"lastModified\":\"2019-08-07T00:57:38.9090865Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask627\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask626\",\"eTag\":\"0x8D71AD23E6FD210\",\"lastModified\":\"2019-08-07T00:57:38.9184528Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask626\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask625\",\"eTag\":\"0x8D71AD23E714613\",\"lastModified\":\"2019-08-07T00:57:38.9279763Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask625\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask624\",\"eTag\":\"0x8D71AD23E72BCB8\",\"lastModified\":\"2019-08-07T00:57:38.9375672Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask624\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask623\",\"eTag\":\"0x8D71AD23E747EAB\",\"lastModified\":\"2019-08-07T00:57:38.9490859Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask623\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask622\",\"eTag\":\"0x8D71AD23E75DE38\",\"lastModified\":\"2019-08-07T00:57:38.9580856Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask622\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask621\",\"eTag\":\"0x8D71AD23E7C1FF4\",\"lastModified\":\"2019-08-07T00:57:38.99909Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask621\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask620\",\"eTag\":\"0x8D71AD23E7D2C86\",\"lastModified\":\"2019-08-07T00:57:39.0059654Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask620\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask619\",\"eTag\":\"0x8D71AD23E806594\",\"lastModified\":\"2019-08-07T00:57:39.0270868Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask619\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask617\",\"eTag\":\"0x8D71AD23E817722\",\"lastModified\":\"2019-08-07T00:57:39.0340898Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask617\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask616\",\"eTag\":\"0x8D71AD23E82886F\",\"lastModified\":\"2019-08-07T00:57:39.0410863Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask616\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask615\",\"eTag\":\"0x8D71AD23E848460\",\"lastModified\":\"2019-08-07T00:57:39.0540896Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask615\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask618\",\"eTag\":\"0x8D71AD23E819E1B\",\"lastModified\":\"2019-08-07T00:57:39.0350875Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask618\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask613\",\"eTag\":\"0x8D71AD23E876A93\",\"lastModified\":\"2019-08-07T00:57:39.0730899Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask613\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask612\",\"eTag\":\"0x8D71AD23E8A50C6\",\"lastModified\":\"2019-08-07T00:57:39.0920902Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask612\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask611\",\"eTag\":\"0x8D71AD23E8C2675\",\"lastModified\":\"2019-08-07T00:57:39.1041141Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask611\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask614\",\"eTag\":\"0x8D71AD23E85BCDF\",\"lastModified\":\"2019-08-07T00:57:39.0620895Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask614\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask609\",\"eTag\":\"0x8D71AD23E8D0FE9\",\"lastModified\":\"2019-08-07T00:57:39.1100905Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask609\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask608\",\"eTag\":\"0x8D71AD23E8E322B\",\"lastModified\":\"2019-08-07T00:57:39.1175211Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask608\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask610\",\"eTag\":\"0x8D71AD23E8C2675\",\"lastModified\":\"2019-08-07T00:57:39.1041141Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask610\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask604\",\"eTag\":\"0x8D71AD23E941487\",\"lastModified\":\"2019-08-07T00:57:39.1560839Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask604\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask605\",\"eTag\":\"0x8D71AD23E932A53\",\"lastModified\":\"2019-08-07T00:57:39.1500883Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask605\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask606\",\"eTag\":\"0x8D71AD23E932A53\",\"lastModified\":\"2019-08-07T00:57:39.1500883Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask606\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask607\",\"eTag\":\"0x8D71AD23E92B50D\",\"lastModified\":\"2019-08-07T00:57:39.1470861Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask607\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask603\",\"eTag\":\"0x8D71AD23E98B625\",\"lastModified\":\"2019-08-07T00:57:39.1864357Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask603\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask601\",\"eTag\":\"0x8D71AD23E99E127\",\"lastModified\":\"2019-08-07T00:57:39.1940903Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask601\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask602\",\"eTag\":\"0x8D71AD23E98CFC0\",\"lastModified\":\"2019-08-07T00:57:39.1870912Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask602\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask599\",\"eTag\":\"0x8D71AD23E9BB5C7\",\"lastModified\":\"2019-08-07T00:57:39.2060871Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask599\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask600\",\"eTag\":\"0x8D71AD23E9B8EB6\",\"lastModified\":\"2019-08-07T00:57:39.205087Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask600\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask598\",\"eTag\":\"0x8D71AD23E9E0DF0\",\"lastModified\":\"2019-08-07T00:57:39.2214512Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask598\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask597\",\"eTag\":\"0x8D71AD23E9F7642\",\"lastModified\":\"2019-08-07T00:57:39.2306754Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask597\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask594\",\"eTag\":\"0x8D71AD23EA309F5\",\"lastModified\":\"2019-08-07T00:57:39.2541173Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask594\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask593\",\"eTag\":\"0x8D71AD23EA4689E\",\"lastModified\":\"2019-08-07T00:57:39.2630942Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask593\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask595\",\"eTag\":\"0x8D71AD23EA25BC6\",\"lastModified\":\"2019-08-07T00:57:39.2496582Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask595\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask596\",\"eTag\":\"0x8D71AD23EA0F754\",\"lastModified\":\"2019-08-07T00:57:39.2405332Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask596\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask591\",\"eTag\":\"0x8D71AD23EA6644C\",\"lastModified\":\"2019-08-07T00:57:39.2760908Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask591\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask592\",\"eTag\":\"0x8D71AD23EA5C864\",\"lastModified\":\"2019-08-07T00:57:39.2720996Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask592\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask588\",\"eTag\":\"0x8D71AD23EAEA1AE\",\"lastModified\":\"2019-08-07T00:57:39.330091Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask588\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask587\",\"eTag\":\"0x8D71AD23EAFB320\",\"lastModified\":\"2019-08-07T00:57:39.3370912Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask587\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask586\",\"eTag\":\"0x8D71AD23EB00143\",\"lastModified\":\"2019-08-07T00:57:39.3390915Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask586\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask590\",\"eTag\":\"0x8D71AD23EA9E6CB\",\"lastModified\":\"2019-08-07T00:57:39.2990923Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask590\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask585\",\"eTag\":\"0x8D71AD23EB27264\",\"lastModified\":\"2019-08-07T00:57:39.3550948Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask585\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask584\",\"eTag\":\"0x8D71AD23EB2995B\",\"lastModified\":\"2019-08-07T00:57:39.3560923Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask584\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask583\",\"eTag\":\"0x8D71AD23EB446FB\",\"lastModified\":\"2019-08-07T00:57:39.3670907Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask583\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask589\",\"eTag\":\"0x8D71AD23EAD1B15\",\"lastModified\":\"2019-08-07T00:57:39.3200917Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask589\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask632\",\"eTag\":\"0x8D7CB93555B9819\",\"lastModified\":\"2020-03-18T23:23:14.8911641Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask632\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask631\",\"eTag\":\"0x8D7CB93555D1EA8\",\"lastModified\":\"2020-03-18T23:23:14.9011624Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask631\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask630\",\"eTag\":\"0x8D7CB93555EA53B\",\"lastModified\":\"2020-03-18T23:23:14.9111611Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask630\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask629\",\"eTag\":\"0x8D7CB9355602BF2\",\"lastModified\":\"2020-03-18T23:23:14.9211634Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask629\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask627\",\"eTag\":\"0x8D7CB935562A3E2\",\"lastModified\":\"2020-03-18T23:23:14.937341Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask627\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask628\",\"eTag\":\"0x8D7CB935561B37C\",\"lastModified\":\"2020-03-18T23:23:14.9311868Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask628\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask626\",\"eTag\":\"0x8D7CB93556471B6\",\"lastModified\":\"2020-03-18T23:23:14.9491638Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask626\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask625\",\"eTag\":\"0x8D7CB9355658444\",\"lastModified\":\"2020-03-18T23:23:14.9561924Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask625\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask624\",\"eTag\":\"0x8D7CB9355670ADB\",\"lastModified\":\"2020-03-18T23:23:14.9661915Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask624\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask622\",\"eTag\":\"0x8D7CB935568B779\",\"lastModified\":\"2020-03-18T23:23:14.9771641Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask622\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask623\",\"eTag\":\"0x8D7CB9355689176\",\"lastModified\":\"2020-03-18T23:23:14.976191Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask623\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask621\",\"eTag\":\"0x8D7CB9355695396\",\"lastModified\":\"2020-03-18T23:23:14.9811606Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask621\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask620\",\"eTag\":\"0x8D7CB93556AB336\",\"lastModified\":\"2020-03-18T23:23:14.9901622Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask620\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask619\",\"eTag\":\"0x8D7CB93556C3AE0\",\"lastModified\":\"2020-03-18T23:23:15.0001888Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask619\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask618\",\"eTag\":\"0x8D7CB93556D26C2\",\"lastModified\":\"2020-03-18T23:23:15.0062274Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask618\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask616\",\"eTag\":\"0x8D7CB9355722D30\",\"lastModified\":\"2020-03-18T23:23:15.03916Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask616\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask615\",\"eTag\":\"0x8D7CB935573B3D6\",\"lastModified\":\"2020-03-18T23:23:15.0491606Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask615\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask617\",\"eTag\":\"0x8D7CB935573B3D6\",\"lastModified\":\"2020-03-18T23:23:15.0491606Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask617\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask614\",\"eTag\":\"0x8D7CB93557561B5\",\"lastModified\":\"2020-03-18T23:23:15.0601653Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask614\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask613\",\"eTag\":\"0x8D7CB9355767409\",\"lastModified\":\"2020-03-18T23:23:15.0671881Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask613\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask612\",\"eTag\":\"0x8D7CB935577A2CB\",\"lastModified\":\"2020-03-18T23:23:15.0749387Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask612\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask611\",\"eTag\":\"0x8D7CB93557847BF\",\"lastModified\":\"2020-03-18T23:23:15.0791615Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask611\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask610\",\"eTag\":\"0x8D7CB935579A758\",\"lastModified\":\"2020-03-18T23:23:15.0881624Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask610\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask609\",\"eTag\":\"0x8D7CB93557B2DF9\",\"lastModified\":\"2020-03-18T23:23:15.0981625Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask609\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask608\",\"eTag\":\"0x8D7CB93557CB64B\",\"lastModified\":\"2020-03-18T23:23:15.1082059Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask608\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask607\",\"eTag\":\"0x8D7CB93557E1424\",\"lastModified\":\"2020-03-18T23:23:15.117162Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask607\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask606\",\"eTag\":\"0x8D7CB93557E3B3E\",\"lastModified\":\"2020-03-18T23:23:15.118163Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask606\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask605\",\"eTag\":\"0x8D7CB935580AC38\",\"lastModified\":\"2020-03-18T23:23:15.1341624Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask605\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask604\",\"eTag\":\"0x8D7CB9355812175\",\"lastModified\":\"2020-03-18T23:23:15.1371637Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask604\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask603\",\"eTag\":\"0x8D7CB935582A7FA\",\"lastModified\":\"2020-03-18T23:23:15.147161Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask603\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask602\",\"eTag\":\"0x8D7CB935582A7FA\",\"lastModified\":\"2020-03-18T23:23:15.147161Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask602\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask601\",\"eTag\":\"0x8D7CB9355842EA3\",\"lastModified\":\"2020-03-18T23:23:15.1571619Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask601\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask600\",\"eTag\":\"0x8D7CB935585DD78\",\"lastModified\":\"2020-03-18T23:23:15.1681912Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask600\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask599\",\"eTag\":\"0x8D7CB935585DD78\",\"lastModified\":\"2020-03-18T23:23:15.1681912Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask599\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask598\",\"eTag\":\"0x8D7CB9355887534\",\"lastModified\":\"2020-03-18T23:23:15.1851828Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask598\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask597\",\"eTag\":\"0x8D7CB935589109B\",\"lastModified\":\"2020-03-18T23:23:15.1891611Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask597\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask596\",\"eTag\":\"0x8D7CB935589A20E\",\"lastModified\":\"2020-03-18T23:23:15.1928846Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask596\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask595\",\"eTag\":\"0x8D7CB93558BD097\",\"lastModified\":\"2020-03-18T23:23:15.2071831Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask595\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask594\",\"eTag\":\"0x8D7CB93558D09CA\",\"lastModified\":\"2020-03-18T23:23:15.215201Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask594\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask593\",\"eTag\":\"0x8D7CB93558E41A5\",\"lastModified\":\"2020-03-18T23:23:15.2231845Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask593\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask592\",\"eTag\":\"0x8D7CB93558F7A2A\",\"lastModified\":\"2020-03-18T23:23:15.231185Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask592\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask591\",\"eTag\":\"0x8D7CB9355914DF5\",\"lastModified\":\"2020-03-18T23:23:15.2431605Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask591\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask590\",\"eTag\":\"0x8D7CB935591EB36\",\"lastModified\":\"2020-03-18T23:23:15.2471862Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask590\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask589\",\"eTag\":\"0x8D7CB935593247B\",\"lastModified\":\"2020-03-18T23:23:15.2552059Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask589\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask588\",\"eTag\":\"0x8D7CB9355945C29\",\"lastModified\":\"2020-03-18T23:23:15.2631849Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask588\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask587\",\"eTag\":\"0x8D7CB9355BA39C0\",\"lastModified\":\"2020-03-18T23:23:15.5113408Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask587\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask586\",\"eTag\":\"0x8D7CB9355BA39C0\",\"lastModified\":\"2020-03-18T23:23:15.5113408Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask586\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask584\",\"eTag\":\"0x8D7CB9355BA6096\",\"lastModified\":\"2020-03-18T23:23:15.512335Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask584\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask583\",\"eTag\":\"0x8D7CB9355BA6096\",\"lastModified\":\"2020-03-18T23:23:15.512335Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask583\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask585\",\"eTag\":\"0x8D7CB9355BA6096\",\"lastModified\":\"2020-03-18T23:23:15.512335Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask585\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -41664,9 +41664,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:38 GMT + - Wed, 18 Mar 2020 23:23:14 GMT request-id: - - 65054281-d7a8-49d0-ae33-87c7a6240bd7 + - d88ed887-a6d2-4430-a464-1b144dd943b4 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -46742,67 +46742,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:39 GMT + - Wed, 18 Mar 2020 23:23:15 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask582\",\"eTag\":\"0x8D71AD23F2BEA73\",\"lastModified\":\"2019-08-07T00:57:40.1511539Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask582\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask581\",\"eTag\":\"0x8D71AD23F2C87BE\",\"lastModified\":\"2019-08-07T00:57:40.1551806Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask581\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask580\",\"eTag\":\"0x8D71AD23F2DE667\",\"lastModified\":\"2019-08-07T00:57:40.1641575Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask580\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask579\",\"eTag\":\"0x8D71AD23F2F460B\",\"lastModified\":\"2019-08-07T00:57:40.1731595Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask579\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask578\",\"eTag\":\"0x8D71AD23F30CC83\",\"lastModified\":\"2019-08-07T00:57:40.1831555Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask578\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask577\",\"eTag\":\"0x8D71AD23F3141AB\",\"lastModified\":\"2019-08-07T00:57:40.1861547Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask577\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask576\",\"eTag\":\"0x8D71AD23F32F1E7\",\"lastModified\":\"2019-08-07T00:57:40.1972199Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask576\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask575\",\"eTag\":\"0x8D71AD23F34A12C\",\"lastModified\":\"2019-08-07T00:57:40.2082604Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask575\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask574\",\"eTag\":\"0x8D71AD23F3588DD\",\"lastModified\":\"2019-08-07T00:57:40.2141917Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask574\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask573\",\"eTag\":\"0x8D71AD23F3A4235\",\"lastModified\":\"2019-08-07T00:57:40.2451509Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask573\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask572\",\"eTag\":\"0x8D71AD23F3B05E0\",\"lastModified\":\"2019-08-07T00:57:40.25016Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask572\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask570\",\"eTag\":\"0x8D71AD23F3D9DA2\",\"lastModified\":\"2019-08-07T00:57:40.2671522Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask570\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask571\",\"eTag\":\"0x8D71AD23F3C8C60\",\"lastModified\":\"2019-08-07T00:57:40.2601568Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask571\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask569\",\"eTag\":\"0x8D71AD23F3F4BDB\",\"lastModified\":\"2019-08-07T00:57:40.2781659Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask569\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask568\",\"eTag\":\"0x8D71AD23F405D07\",\"lastModified\":\"2019-08-07T00:57:40.2851591Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask568\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask567\",\"eTag\":\"0x8D71AD23F41EE92\",\"lastModified\":\"2019-08-07T00:57:40.2954386Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask567\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask564\",\"eTag\":\"0x8D71AD23F4FED1E\",\"lastModified\":\"2019-08-07T00:57:40.3871518Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask564\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask563\",\"eTag\":\"0x8D71AD23F50142B\",\"lastModified\":\"2019-08-07T00:57:40.3881515Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask563\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask562\",\"eTag\":\"0x8D71AD23F50142B\",\"lastModified\":\"2019-08-07T00:57:40.3881515Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask562\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask566\",\"eTag\":\"0x8D71AD23F503B47\",\"lastModified\":\"2019-08-07T00:57:40.3891527Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask566\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask565\",\"eTag\":\"0x8D71AD23F50B7E7\",\"lastModified\":\"2019-08-07T00:57:40.3923431Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask565\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask560\",\"eTag\":\"0x8D71AD23F51FA81\",\"lastModified\":\"2019-08-07T00:57:40.4006017Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask560\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask561\",\"eTag\":\"0x8D71AD23F50D794\",\"lastModified\":\"2019-08-07T00:57:40.393154Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask561\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask557\",\"eTag\":\"0x8D71AD23F536F9C\",\"lastModified\":\"2019-08-07T00:57:40.4101532Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask557\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask559\",\"eTag\":\"0x8D71AD23F554454\",\"lastModified\":\"2019-08-07T00:57:40.4221524Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask559\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask556\",\"eTag\":\"0x8D71AD23F55B98E\",\"lastModified\":\"2019-08-07T00:57:40.4251534Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask556\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask558\",\"eTag\":\"0x8D71AD23F574DB2\",\"lastModified\":\"2019-08-07T00:57:40.4354994Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask558\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask554\",\"eTag\":\"0x8D71AD23F57DC68\",\"lastModified\":\"2019-08-07T00:57:40.4391528Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask554\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask553\",\"eTag\":\"0x8D71AD23F58C6C2\",\"lastModified\":\"2019-08-07T00:57:40.4451522Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask553\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask555\",\"eTag\":\"0x8D71AD23F58EDDF\",\"lastModified\":\"2019-08-07T00:57:40.4461535Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask555\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask552\",\"eTag\":\"0x8D71AD23F59B158\",\"lastModified\":\"2019-08-07T00:57:40.4511576Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask552\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask551\",\"eTag\":\"0x8D71AD23F5B11BD\",\"lastModified\":\"2019-08-07T00:57:40.4601789Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask551\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask550\",\"eTag\":\"0x8D71AD23F5BFB20\",\"lastModified\":\"2019-08-07T00:57:40.4661536Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask550\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask549\",\"eTag\":\"0x8D71AD23F5CE590\",\"lastModified\":\"2019-08-07T00:57:40.4721552Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask549\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask548\",\"eTag\":\"0x8D71AD23F5FD99A\",\"lastModified\":\"2019-08-07T00:57:40.4915098Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask548\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask547\",\"eTag\":\"0x8D71AD23F608F26\",\"lastModified\":\"2019-08-07T00:57:40.4961574Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask547\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask546\",\"eTag\":\"0x8D71AD23F61EEA9\",\"lastModified\":\"2019-08-07T00:57:40.5051561Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask546\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask545\",\"eTag\":\"0x8D71AD23F639C69\",\"lastModified\":\"2019-08-07T00:57:40.5161577Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask545\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask544\",\"eTag\":\"0x8D71AD23F64ADA0\",\"lastModified\":\"2019-08-07T00:57:40.523152Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask544\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask543\",\"eTag\":\"0x8D71AD23F6549FA\",\"lastModified\":\"2019-08-07T00:57:40.5271546Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask543\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask542\",\"eTag\":\"0x8D71AD23F66AA85\",\"lastModified\":\"2019-08-07T00:57:40.5361797Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask542\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask540\",\"eTag\":\"0x8D71AD23F6A2BE2\",\"lastModified\":\"2019-08-07T00:57:40.5591522Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask540\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask539\",\"eTag\":\"0x8D71AD23F6C5EAC\",\"lastModified\":\"2019-08-07T00:57:40.5735596Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask539\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask538\",\"eTag\":\"0x8D71AD23F6DC869\",\"lastModified\":\"2019-08-07T00:57:40.5828201Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask538\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask541\",\"eTag\":\"0x8D71AD23F67E56F\",\"lastModified\":\"2019-08-07T00:57:40.5442415Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask541\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask537\",\"eTag\":\"0x8D71AD23F6E98E8\",\"lastModified\":\"2019-08-07T00:57:40.5881576Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask537\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask536\",\"eTag\":\"0x8D71AD23F6FD13F\",\"lastModified\":\"2019-08-07T00:57:40.5961535Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask536\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask535\",\"eTag\":\"0x8D71AD23F7110CA\",\"lastModified\":\"2019-08-07T00:57:40.6043338Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask535\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask534\",\"eTag\":\"0x8D71AD23F7353BD\",\"lastModified\":\"2019-08-07T00:57:40.6191549Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask534\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask533\",\"eTag\":\"0x8D71AD23F743DF8\",\"lastModified\":\"2019-08-07T00:57:40.6251512Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask533\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask582\",\"eTag\":\"0x8D7CB935613C43C\",\"lastModified\":\"2020-03-18T23:23:16.0981564Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask582\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask581\",\"eTag\":\"0x8D7CB9356154F08\",\"lastModified\":\"2020-03-18T23:23:16.1082632Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask581\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask580\",\"eTag\":\"0x8D7CB93561A05BA\",\"lastModified\":\"2020-03-18T23:23:16.1391546Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask580\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask579\",\"eTag\":\"0x8D7CB93561A2BE0\",\"lastModified\":\"2020-03-18T23:23:16.1401312Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask579\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask577\",\"eTag\":\"0x8D7CB93561A52D3\",\"lastModified\":\"2020-03-18T23:23:16.1411283Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask577\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask578\",\"eTag\":\"0x8D7CB93561A52D3\",\"lastModified\":\"2020-03-18T23:23:16.1411283Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask578\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask576\",\"eTag\":\"0x8D7CB93561B65DA\",\"lastModified\":\"2020-03-18T23:23:16.148169Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask576\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask575\",\"eTag\":\"0x8D7CB93561CEAB6\",\"lastModified\":\"2020-03-18T23:23:16.1581238Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask575\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask574\",\"eTag\":\"0x8D7CB93561E4C14\",\"lastModified\":\"2020-03-18T23:23:16.16717Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask574\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask573\",\"eTag\":\"0x8D7CB93561FD108\",\"lastModified\":\"2020-03-18T23:23:16.1771272Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask573\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask572\",\"eTag\":\"0x8D7CB935621319F\",\"lastModified\":\"2020-03-18T23:23:16.1861535Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask572\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask571\",\"eTag\":\"0x8D7CB935622B8DF\",\"lastModified\":\"2020-03-18T23:23:16.1961695Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask571\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask570\",\"eTag\":\"0x8D7CB93562417A8\",\"lastModified\":\"2020-03-18T23:23:16.2051496Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask570\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask569\",\"eTag\":\"0x8D7CB9356259FB6\",\"lastModified\":\"2020-03-18T23:23:16.2151862Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask569\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask567\",\"eTag\":\"0x8D7CB935627242E\",\"lastModified\":\"2020-03-18T23:23:16.225131Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask567\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask568\",\"eTag\":\"0x8D7CB935627242E\",\"lastModified\":\"2020-03-18T23:23:16.225131Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask568\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask565\",\"eTag\":\"0x8D7CB93562B6AB4\",\"lastModified\":\"2020-03-18T23:23:16.2531508Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask565\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask564\",\"eTag\":\"0x8D7CB93562B91B2\",\"lastModified\":\"2020-03-18T23:23:16.254149Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask564\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask563\",\"eTag\":\"0x8D7CB93562CF047\",\"lastModified\":\"2020-03-18T23:23:16.2631239Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask563\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask566\",\"eTag\":\"0x8D7CB935628AAD6\",\"lastModified\":\"2020-03-18T23:23:16.2351318Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask566\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask562\",\"eTag\":\"0x8D7CB93562E51D1\",\"lastModified\":\"2020-03-18T23:23:16.2721745Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask562\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask561\",\"eTag\":\"0x8D7CB93562FD67E\",\"lastModified\":\"2020-03-18T23:23:16.2821246Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask561\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask559\",\"eTag\":\"0x8D7CB9356349193\",\"lastModified\":\"2020-03-18T23:23:16.3131283Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask559\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask560\",\"eTag\":\"0x8D7CB9356346AB0\",\"lastModified\":\"2020-03-18T23:23:16.3121328Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask560\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask558\",\"eTag\":\"0x8D7CB935634B88B\",\"lastModified\":\"2020-03-18T23:23:16.3141259Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask558\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask556\",\"eTag\":\"0x8D7CB935636CA15\",\"lastModified\":\"2020-03-18T23:23:16.3276821Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask556\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask557\",\"eTag\":\"0x8D7CB935634B88B\",\"lastModified\":\"2020-03-18T23:23:16.3141259Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask557\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask555\",\"eTag\":\"0x8D7CB9356375090\",\"lastModified\":\"2020-03-18T23:23:16.3311248Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask555\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask554\",\"eTag\":\"0x8D7CB9356379605\",\"lastModified\":\"2020-03-18T23:23:16.3329029Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask554\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask553\",\"eTag\":\"0x8D7CB9356388AEA\",\"lastModified\":\"2020-03-18T23:23:16.3391722Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask553\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask552\",\"eTag\":\"0x8D7CB9356397359\",\"lastModified\":\"2020-03-18T23:23:16.3451225Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask552\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask551\",\"eTag\":\"0x8D7CB93563B71FD\",\"lastModified\":\"2020-03-18T23:23:16.3581949Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask551\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask549\",\"eTag\":\"0x8D7CB93563D1CFD\",\"lastModified\":\"2020-03-18T23:23:16.3691261Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask549\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask550\",\"eTag\":\"0x8D7CB93563CF7A5\",\"lastModified\":\"2020-03-18T23:23:16.3681701Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask550\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask548\",\"eTag\":\"0x8D7CB93563E7E9D\",\"lastModified\":\"2020-03-18T23:23:16.3781789Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask548\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask547\",\"eTag\":\"0x8D7CB9356400321\",\"lastModified\":\"2020-03-18T23:23:16.3881249Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask547\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask546\",\"eTag\":\"0x8D7CB9356416478\",\"lastModified\":\"2020-03-18T23:23:16.3971704Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask546\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask545\",\"eTag\":\"0x8D7CB935642EA7B\",\"lastModified\":\"2020-03-18T23:23:16.4071547Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask545\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask544\",\"eTag\":\"0x8D7CB93564471B6\",\"lastModified\":\"2020-03-18T23:23:16.4171702Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask544\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask542\",\"eTag\":\"0x8D7CB935645F694\",\"lastModified\":\"2020-03-18T23:23:16.4271252Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask542\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask543\",\"eTag\":\"0x8D7CB935645F694\",\"lastModified\":\"2020-03-18T23:23:16.4271252Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask543\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask541\",\"eTag\":\"0x8D7CB9356478336\",\"lastModified\":\"2020-03-18T23:23:16.437279Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask541\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask540\",\"eTag\":\"0x8D7CB935648DDC3\",\"lastModified\":\"2020-03-18T23:23:16.4461507Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask540\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask539\",\"eTag\":\"0x8D7CB93564A643B\",\"lastModified\":\"2020-03-18T23:23:16.4561467Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask539\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask538\",\"eTag\":\"0x8D7CB93564BE9CD\",\"lastModified\":\"2020-03-18T23:23:16.4661197Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask538\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask537\",\"eTag\":\"0x8D7CB93564D4A72\",\"lastModified\":\"2020-03-18T23:23:16.4751474Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask537\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask535\",\"eTag\":\"0x8D7CB9356525E33\",\"lastModified\":\"2020-03-18T23:23:16.5084211Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask535\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask534\",\"eTag\":\"0x8D7CB9356527926\",\"lastModified\":\"2020-03-18T23:23:16.509111Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask534\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask536\",\"eTag\":\"0x8D7CB9356525E33\",\"lastModified\":\"2020-03-18T23:23:16.5084211Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask536\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask533\",\"eTag\":\"0x8D7CB9356527926\",\"lastModified\":\"2020-03-18T23:23:16.509111Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask533\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -46810,9 +46810,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:39 GMT + - Wed, 18 Mar 2020 23:23:16 GMT request-id: - - a46ee40b-5a5b-4cfe-9d7d-e501f20d0b48 + - ebac4a97-066e-46e5-b941-9d83d90c1fd5 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -51888,67 +51888,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:41 GMT + - Wed, 18 Mar 2020 23:23:16 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask532\",\"eTag\":\"0x8D71AD23FEC996E\",\"lastModified\":\"2019-08-07T00:57:41.4139246Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask532\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask531\",\"eTag\":\"0x8D71AD23FEDF8F3\",\"lastModified\":\"2019-08-07T00:57:41.4229235Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask531\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask530\",\"eTag\":\"0x8D71AD23FF0DF3B\",\"lastModified\":\"2019-08-07T00:57:41.4419259Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask530\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask529\",\"eTag\":\"0x8D71AD23FF265C6\",\"lastModified\":\"2019-08-07T00:57:41.4519238Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask529\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask528\",\"eTag\":\"0x8D71AD23FF3C55B\",\"lastModified\":\"2019-08-07T00:57:41.4609243Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask528\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask527\",\"eTag\":\"0x8D71AD23FF54BFD\",\"lastModified\":\"2019-08-07T00:57:41.4709245Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask527\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask526\",\"eTag\":\"0x8D71AD23FF6AB83\",\"lastModified\":\"2019-08-07T00:57:41.4799235Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask526\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask525\",\"eTag\":\"0x8D71AD23FF80B18\",\"lastModified\":\"2019-08-07T00:57:41.488924Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask525\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask524\",\"eTag\":\"0x8D71AD23FF991D1\",\"lastModified\":\"2019-08-07T00:57:41.4989265Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask524\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask523\",\"eTag\":\"0x8D71AD23FFAF177\",\"lastModified\":\"2019-08-07T00:57:41.5079287Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask523\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask521\",\"eTag\":\"0x8D71AD23FFF1003\",\"lastModified\":\"2019-08-07T00:57:41.5349251Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask521\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask522\",\"eTag\":\"0x8D71AD23FFDB07F\",\"lastModified\":\"2019-08-07T00:57:41.5259263Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask522\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask520\",\"eTag\":\"0x8D71AD240006F97\",\"lastModified\":\"2019-08-07T00:57:41.5439255Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask520\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask519\",\"eTag\":\"0x8D71AD24001F647\",\"lastModified\":\"2019-08-07T00:57:41.5539271Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask519\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask518\",\"eTag\":\"0x8D71AD240037CF1\",\"lastModified\":\"2019-08-07T00:57:41.5639281Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask518\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask517\",\"eTag\":\"0x8D71AD240037CF1\",\"lastModified\":\"2019-08-07T00:57:41.5639281Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask517\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask516\",\"eTag\":\"0x8D71AD24005038A\",\"lastModified\":\"2019-08-07T00:57:41.5739274Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask516\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask515\",\"eTag\":\"0x8D71AD240066307\",\"lastModified\":\"2019-08-07T00:57:41.5829255Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask515\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask514\",\"eTag\":\"0x8D71AD24008D40D\",\"lastModified\":\"2019-08-07T00:57:41.5989261Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask514\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask513\",\"eTag\":\"0x8D71AD2400A3391\",\"lastModified\":\"2019-08-07T00:57:41.6079249Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask513\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask512\",\"eTag\":\"0x8D71AD2400B9362\",\"lastModified\":\"2019-08-07T00:57:41.6169314Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask512\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask511\",\"eTag\":\"0x8D71AD2400C2FA6\",\"lastModified\":\"2019-08-07T00:57:41.6209318Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask511\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask509\",\"eTag\":\"0x8D71AD2400E7971\",\"lastModified\":\"2019-08-07T00:57:41.6359281Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask509\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask510\",\"eTag\":\"0x8D71AD2400D19DC\",\"lastModified\":\"2019-08-07T00:57:41.6269276Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask510\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask508\",\"eTag\":\"0x8D71AD2400FD91A\",\"lastModified\":\"2019-08-07T00:57:41.6449306Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask508\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask507\",\"eTag\":\"0x8D71AD2401186D3\",\"lastModified\":\"2019-08-07T00:57:41.6559315Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask507\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask506\",\"eTag\":\"0x8D71AD24012E670\",\"lastModified\":\"2019-08-07T00:57:41.6649328Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask506\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask505\",\"eTag\":\"0x8D71AD240144628\",\"lastModified\":\"2019-08-07T00:57:41.6739368Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask505\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask504\",\"eTag\":\"0x8D71AD24015CD26\",\"lastModified\":\"2019-08-07T00:57:41.6839462Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask504\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask503\",\"eTag\":\"0x8D71AD240172C01\",\"lastModified\":\"2019-08-07T00:57:41.6929281Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask503\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask502\",\"eTag\":\"0x8D71AD240188B80\",\"lastModified\":\"2019-08-07T00:57:41.7019264Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask502\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask501\",\"eTag\":\"0x8D71AD24019EB1F\",\"lastModified\":\"2019-08-07T00:57:41.7109279Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask501\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask500\",\"eTag\":\"0x8D71AD2401B71CD\",\"lastModified\":\"2019-08-07T00:57:41.7209293Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask500\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask499\",\"eTag\":\"0x8D71AD2401CF879\",\"lastModified\":\"2019-08-07T00:57:41.7309305Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask499\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask498\",\"eTag\":\"0x8D71AD2401E5829\",\"lastModified\":\"2019-08-07T00:57:41.7399337Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask498\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask497\",\"eTag\":\"0x8D71AD2402006C1\",\"lastModified\":\"2019-08-07T00:57:41.7509569Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask497\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask496\",\"eTag\":\"0x8D71AD240219F9C\",\"lastModified\":\"2019-08-07T00:57:41.7614236Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask496\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask495\",\"eTag\":\"0x8D71AD24022C4B7\",\"lastModified\":\"2019-08-07T00:57:41.7689271Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask495\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask494\",\"eTag\":\"0x8D71AD240242488\",\"lastModified\":\"2019-08-07T00:57:41.7779336Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask494\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask493\",\"eTag\":\"0x8D71AD24024C0B1\",\"lastModified\":\"2019-08-07T00:57:41.7819313Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask493\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask492\",\"eTag\":\"0x8D71AD24025AC14\",\"lastModified\":\"2019-08-07T00:57:41.7879572Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask492\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask491\",\"eTag\":\"0x8D71AD2402780E9\",\"lastModified\":\"2019-08-07T00:57:41.7999593Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask491\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask490\",\"eTag\":\"0x8D71AD240280157\",\"lastModified\":\"2019-08-07T00:57:41.8032471Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask490\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask489\",\"eTag\":\"0x8D71AD2402891B0\",\"lastModified\":\"2019-08-07T00:57:41.8069424Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask489\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask488\",\"eTag\":\"0x8D71AD2402A17B7\",\"lastModified\":\"2019-08-07T00:57:41.8169271Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask488\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask487\",\"eTag\":\"0x8D71AD2402BC55C\",\"lastModified\":\"2019-08-07T00:57:41.827926Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask487\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask486\",\"eTag\":\"0x8D71AD2402CAFCB\",\"lastModified\":\"2019-08-07T00:57:41.8339275Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask486\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask485\",\"eTag\":\"0x8D71AD2402E0F6F\",\"lastModified\":\"2019-08-07T00:57:41.8429295Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask485\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask484\",\"eTag\":\"0x8D71AD2402F6F10\",\"lastModified\":\"2019-08-07T00:57:41.8519312Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask484\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask483\",\"eTag\":\"0x8D71AD240305974\",\"lastModified\":\"2019-08-07T00:57:41.8579316Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask483\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask532\",\"eTag\":\"0x8D7CB9356A98E83\",\"lastModified\":\"2020-03-18T23:23:17.0798211Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask532\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask531\",\"eTag\":\"0x8D7CB9356AAC6F4\",\"lastModified\":\"2020-03-18T23:23:17.0878196Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask531\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask530\",\"eTag\":\"0x8D7CB9356AC267B\",\"lastModified\":\"2020-03-18T23:23:17.0968187Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask530\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask529\",\"eTag\":\"0x8D7CB9356AC267B\",\"lastModified\":\"2020-03-18T23:23:17.0968187Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask529\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask528\",\"eTag\":\"0x8D7CB9356AEBE47\",\"lastModified\":\"2020-03-18T23:23:17.1138119Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask528\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask527\",\"eTag\":\"0x8D7CB9356B29009\",\"lastModified\":\"2020-03-18T23:23:17.1388425Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask527\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask526\",\"eTag\":\"0x8D7CB9356B2B679\",\"lastModified\":\"2020-03-18T23:23:17.1398265Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask526\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask525\",\"eTag\":\"0x8D7CB9356B41931\",\"lastModified\":\"2020-03-18T23:23:17.1489073Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask525\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask524\",\"eTag\":\"0x8D7CB9356B59C21\",\"lastModified\":\"2020-03-18T23:23:17.1588129Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask524\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask523\",\"eTag\":\"0x8D7CB9356B72260\",\"lastModified\":\"2020-03-18T23:23:17.1688032Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask523\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask522\",\"eTag\":\"0x8D7CB9356B883D7\",\"lastModified\":\"2020-03-18T23:23:17.1778519Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask522\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask521\",\"eTag\":\"0x8D7CB9356BD8AB1\",\"lastModified\":\"2020-03-18T23:23:17.2107953Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask521\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask519\",\"eTag\":\"0x8D7CB9356BFAEC9\",\"lastModified\":\"2020-03-18T23:23:17.2248265Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask519\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask518\",\"eTag\":\"0x8D7CB9356C13500\",\"lastModified\":\"2020-03-18T23:23:17.234816Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask518\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask520\",\"eTag\":\"0x8D7CB9356BE9C24\",\"lastModified\":\"2020-03-18T23:23:17.2177956Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask520\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask517\",\"eTag\":\"0x8D7CB9356C2BC3F\",\"lastModified\":\"2020-03-18T23:23:17.2448319Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask517\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask516\",\"eTag\":\"0x8D7CB9356C41C2D\",\"lastModified\":\"2020-03-18T23:23:17.2538413Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask516\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask515\",\"eTag\":\"0x8D7CB9356C5A28D\",\"lastModified\":\"2020-03-18T23:23:17.2638349Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask515\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask514\",\"eTag\":\"0x8D7CB9356C5C7C8\",\"lastModified\":\"2020-03-18T23:23:17.264788Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask514\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask513\",\"eTag\":\"0x8D7CB9356C727F4\",\"lastModified\":\"2020-03-18T23:23:17.2738036Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask513\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask512\",\"eTag\":\"0x8D7CB9356C8884B\",\"lastModified\":\"2020-03-18T23:23:17.2828235Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask512\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask511\",\"eTag\":\"0x8D7CB9356CA0E4D\",\"lastModified\":\"2020-03-18T23:23:17.2928077Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask511\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask510\",\"eTag\":\"0x8D7CB9356CBE21A\",\"lastModified\":\"2020-03-18T23:23:17.3047834Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask510\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask509\",\"eTag\":\"0x8D7CB9356CD1A57\",\"lastModified\":\"2020-03-18T23:23:17.3127767Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask509\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask508\",\"eTag\":\"0x8D7CB9356CDB6A4\",\"lastModified\":\"2020-03-18T23:23:17.316778Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask508\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask507\",\"eTag\":\"0x8D7CB9356CEA768\",\"lastModified\":\"2020-03-18T23:23:17.3229416Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask507\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask506\",\"eTag\":\"0x8D7CB9356CF426C\",\"lastModified\":\"2020-03-18T23:23:17.32691Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask506\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask505\",\"eTag\":\"0x8D7CB9356D0C39D\",\"lastModified\":\"2020-03-18T23:23:17.3367709Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask505\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask504\",\"eTag\":\"0x8D7CB9356D2231C\",\"lastModified\":\"2020-03-18T23:23:17.3457692Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask504\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask503\",\"eTag\":\"0x8D7CB9356D3F7E2\",\"lastModified\":\"2020-03-18T23:23:17.3577698Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask503\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask502\",\"eTag\":\"0x8D7CB9356D50940\",\"lastModified\":\"2020-03-18T23:23:17.364768Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask502\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask501\",\"eTag\":\"0x8D7CB9356D5304C\",\"lastModified\":\"2020-03-18T23:23:17.3657676Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask501\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask500\",\"eTag\":\"0x8D7CB9356D6B6CC\",\"lastModified\":\"2020-03-18T23:23:17.3757644Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask500\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask499\",\"eTag\":\"0x8D7CB9356D83D5B\",\"lastModified\":\"2020-03-18T23:23:17.3857627Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask499\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask498\",\"eTag\":\"0x8D7CB9356D9C3FB\",\"lastModified\":\"2020-03-18T23:23:17.3957627Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask498\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask497\",\"eTag\":\"0x8D7CB9356DB2377\",\"lastModified\":\"2020-03-18T23:23:17.4047607Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask497\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask495\",\"eTag\":\"0x8D7CB9356DCAA0A\",\"lastModified\":\"2020-03-18T23:23:17.4147594Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask495\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask494\",\"eTag\":\"0x8D7CB9356DE0990\",\"lastModified\":\"2020-03-18T23:23:17.4237584Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask494\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask496\",\"eTag\":\"0x8D7CB9356DB2377\",\"lastModified\":\"2020-03-18T23:23:17.4047607Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask496\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask493\",\"eTag\":\"0x8D7CB9356DF69CA\",\"lastModified\":\"2020-03-18T23:23:17.4327754Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask493\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask492\",\"eTag\":\"0x8D7CB9356E0C885\",\"lastModified\":\"2020-03-18T23:23:17.4417541Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask492\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask491\",\"eTag\":\"0x8D7CB9356E20239\",\"lastModified\":\"2020-03-18T23:23:17.4497849Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask491\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask490\",\"eTag\":\"0x8D7CB9356E36070\",\"lastModified\":\"2020-03-18T23:23:17.4587504Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask490\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask489\",\"eTag\":\"0x8D7CB9356E498E1\",\"lastModified\":\"2020-03-18T23:23:17.4667489Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask489\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask488\",\"eTag\":\"0x8D7CB9356E5F84E\",\"lastModified\":\"2020-03-18T23:23:17.4757454Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask488\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask487\",\"eTag\":\"0x8D7CB9356E73118\",\"lastModified\":\"2020-03-18T23:23:17.4837528Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask487\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask486\",\"eTag\":\"0x8D7CB9356E97AA9\",\"lastModified\":\"2020-03-18T23:23:17.4987433Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask486\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask485\",\"eTag\":\"0x8D7CB9356EA6734\",\"lastModified\":\"2020-03-18T23:23:17.5047988Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask485\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask484\",\"eTag\":\"0x8D7CB9356EB4F40\",\"lastModified\":\"2020-03-18T23:23:17.5107392Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask484\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask483\",\"eTag\":\"0x8D7CB9356EC39E7\",\"lastModified\":\"2020-03-18T23:23:17.5167463Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask483\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -51956,9 +51956,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:40 GMT + - Wed, 18 Mar 2020 23:23:16 GMT request-id: - - d479922d-0378-4d68-aaf6-daf66807f730 + - e02be613-9e9f-4eac-a5ac-51627b90a52b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -57034,67 +57034,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:42 GMT + - Wed, 18 Mar 2020 23:23:17 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask482\",\"eTag\":\"0x8D71AD240AB1DFB\",\"lastModified\":\"2019-08-07T00:57:42.6625019Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask482\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask481\",\"eTag\":\"0x8D71AD240ACA07E\",\"lastModified\":\"2019-08-07T00:57:42.6723966Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask481\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask480\",\"eTag\":\"0x8D71AD240AF865E\",\"lastModified\":\"2019-08-07T00:57:42.6913886Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask480\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask478\",\"eTag\":\"0x8D71AD240B0A2C2\",\"lastModified\":\"2019-08-07T00:57:42.698669Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask478\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask479\",\"eTag\":\"0x8D71AD240B0BEDF\",\"lastModified\":\"2019-08-07T00:57:42.6993887Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask479\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask477\",\"eTag\":\"0x8D71AD240B13459\",\"lastModified\":\"2019-08-07T00:57:42.7023961Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask477\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask476\",\"eTag\":\"0x8D71AD240B3CC28\",\"lastModified\":\"2019-08-07T00:57:42.7193896Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask476\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask475\",\"eTag\":\"0x8D71AD240B4B68D\",\"lastModified\":\"2019-08-07T00:57:42.7253901Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask475\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask474\",\"eTag\":\"0x8D71AD240B58C0E\",\"lastModified\":\"2019-08-07T00:57:42.7308558Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask474\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask473\",\"eTag\":\"0x8D71AD240B8DDBB\",\"lastModified\":\"2019-08-07T00:57:42.7526075Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask473\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask472\",\"eTag\":\"0x8D71AD240B97174\",\"lastModified\":\"2019-08-07T00:57:42.7563892Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask472\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask471\",\"eTag\":\"0x8D71AD240BB463F\",\"lastModified\":\"2019-08-07T00:57:42.7683903Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask471\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask470\",\"eTag\":\"0x8D71AD240BCA5CA\",\"lastModified\":\"2019-08-07T00:57:42.7773898Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask470\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask469\",\"eTag\":\"0x8D71AD240BE0532\",\"lastModified\":\"2019-08-07T00:57:42.7863858Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask469\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask468\",\"eTag\":\"0x8D71AD240BF16B9\",\"lastModified\":\"2019-08-07T00:57:42.7933881Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask468\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask467\",\"eTag\":\"0x8D71AD240BFB2FC\",\"lastModified\":\"2019-08-07T00:57:42.7973884Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask467\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask465\",\"eTag\":\"0x8D71AD240C29935\",\"lastModified\":\"2019-08-07T00:57:42.8163893Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask465\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask466\",\"eTag\":\"0x8D71AD240C24B11\",\"lastModified\":\"2019-08-07T00:57:42.8143889Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask466\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask463\",\"eTag\":\"0x8D71AD240C5A6A1\",\"lastModified\":\"2019-08-07T00:57:42.8363937Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask463\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask464\",\"eTag\":\"0x8D71AD240C50B57\",\"lastModified\":\"2019-08-07T00:57:42.8324183Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask464\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask462\",\"eTag\":\"0x8D71AD240C7064D\",\"lastModified\":\"2019-08-07T00:57:42.8453965Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask462\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask461\",\"eTag\":\"0x8D71AD240C910DE\",\"lastModified\":\"2019-08-07T00:57:42.8587742Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask461\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask460\",\"eTag\":\"0x8D71AD240CA8848\",\"lastModified\":\"2019-08-07T00:57:42.8683848Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask460\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask459\",\"eTag\":\"0x8D71AD240CC0F01\",\"lastModified\":\"2019-08-07T00:57:42.8783873Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask459\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask458\",\"eTag\":\"0x8D71AD240CD6D37\",\"lastModified\":\"2019-08-07T00:57:42.8873527Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask458\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask457\",\"eTag\":\"0x8D71AD240CEDE58\",\"lastModified\":\"2019-08-07T00:57:42.8968024Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask457\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask456\",\"eTag\":\"0x8D71AD240D054C6\",\"lastModified\":\"2019-08-07T00:57:42.9063878Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask456\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask454\",\"eTag\":\"0x8D71AD240D1B477\",\"lastModified\":\"2019-08-07T00:57:42.9153911Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask454\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask455\",\"eTag\":\"0x8D71AD240D11824\",\"lastModified\":\"2019-08-07T00:57:42.9113892Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask455\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask453\",\"eTag\":\"0x8D71AD240D31403\",\"lastModified\":\"2019-08-07T00:57:42.9243907Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask453\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask452\",\"eTag\":\"0x8D71AD240D4736D\",\"lastModified\":\"2019-08-07T00:57:42.9333869Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask452\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask451\",\"eTag\":\"0x8D71AD240D5ABF9\",\"lastModified\":\"2019-08-07T00:57:42.9413881Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask451\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask450\",\"eTag\":\"0x8D71AD240D81D02\",\"lastModified\":\"2019-08-07T00:57:42.957389Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask450\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask449\",\"eTag\":\"0x8D71AD240D8B997\",\"lastModified\":\"2019-08-07T00:57:42.9613975Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask449\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask448\",\"eTag\":\"0x8D71AD240DA18C1\",\"lastModified\":\"2019-08-07T00:57:42.9703873Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask448\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask447\",\"eTag\":\"0x8D71AD240DC0233\",\"lastModified\":\"2019-08-07T00:57:42.9829171Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask447\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask446\",\"eTag\":\"0x8D71AD240DCD7DE\",\"lastModified\":\"2019-08-07T00:57:42.988387Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask446\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask445\",\"eTag\":\"0x8D71AD240DE37C7\",\"lastModified\":\"2019-08-07T00:57:42.9973959Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask445\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask444\",\"eTag\":\"0x8D71AD240DED4E8\",\"lastModified\":\"2019-08-07T00:57:43.0014184Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask444\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask443\",\"eTag\":\"0x8D71AD240E03352\",\"lastModified\":\"2019-08-07T00:57:43.010389Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask443\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask442\",\"eTag\":\"0x8D71AD240E192DB\",\"lastModified\":\"2019-08-07T00:57:43.0193883Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask442\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask441\",\"eTag\":\"0x8D71AD240E3196A\",\"lastModified\":\"2019-08-07T00:57:43.0293866Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask441\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask440\",\"eTag\":\"0x8D71AD240EB57A9\",\"lastModified\":\"2019-08-07T00:57:43.0834089Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask440\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask438\",\"eTag\":\"0x8D71AD240EB08BE\",\"lastModified\":\"2019-08-07T00:57:43.0813886Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask438\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask437\",\"eTag\":\"0x8D71AD240EB08BE\",\"lastModified\":\"2019-08-07T00:57:43.0813886Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask437\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask436\",\"eTag\":\"0x8D71AD240EB57A9\",\"lastModified\":\"2019-08-07T00:57:43.0834089Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask436\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask435\",\"eTag\":\"0x8D71AD240EC6BBB\",\"lastModified\":\"2019-08-07T00:57:43.0904763Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask435\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask439\",\"eTag\":\"0x8D71AD240EB7DFC\",\"lastModified\":\"2019-08-07T00:57:43.08439Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask439\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask434\",\"eTag\":\"0x8D71AD240ED05BB\",\"lastModified\":\"2019-08-07T00:57:43.0944187Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask434\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask433\",\"eTag\":\"0x8D71AD240EE6547\",\"lastModified\":\"2019-08-07T00:57:43.1034183Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask433\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask481\",\"eTag\":\"0x8D7CB935746492C\",\"lastModified\":\"2020-03-18T23:23:18.1069612Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask481\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask482\",\"eTag\":\"0x8D7CB935746492C\",\"lastModified\":\"2020-03-18T23:23:18.1069612Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask482\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask480\",\"eTag\":\"0x8D7CB9357480D7F\",\"lastModified\":\"2020-03-18T23:23:18.1185407Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask480\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask479\",\"eTag\":\"0x8D7CB935748D1C6\",\"lastModified\":\"2020-03-18T23:23:18.1235654Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask479\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask478\",\"eTag\":\"0x8D7CB9357494B3A\",\"lastModified\":\"2020-03-18T23:23:18.1266746Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask478\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask477\",\"eTag\":\"0x8D7CB93574AD3F5\",\"lastModified\":\"2020-03-18T23:23:18.1367285Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask477\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask476\",\"eTag\":\"0x8D7CB93574B90C3\",\"lastModified\":\"2020-03-18T23:23:18.1415619Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask476\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask475\",\"eTag\":\"0x8D7CB93574C2C0F\",\"lastModified\":\"2020-03-18T23:23:18.1455375Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask475\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask474\",\"eTag\":\"0x8D7CB93574D6490\",\"lastModified\":\"2020-03-18T23:23:18.1535376Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask474\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask473\",\"eTag\":\"0x8D7CB93574E0246\",\"lastModified\":\"2020-03-18T23:23:18.157575Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask473\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask472\",\"eTag\":\"0x8D7CB935750997B\",\"lastModified\":\"2020-03-18T23:23:18.1745531Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask472\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask471\",\"eTag\":\"0x8D7CB9357510F34\",\"lastModified\":\"2020-03-18T23:23:18.1775668Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask471\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask470\",\"eTag\":\"0x8D7CB935752713F\",\"lastModified\":\"2020-03-18T23:23:18.1866303Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask470\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask469\",\"eTag\":\"0x8D7CB93575460FB\",\"lastModified\":\"2020-03-18T23:23:18.1993211Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask469\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask468\",\"eTag\":\"0x8D7CB9357550558\",\"lastModified\":\"2020-03-18T23:23:18.2035288Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask468\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask467\",\"eTag\":\"0x8D7CB935755A1AF\",\"lastModified\":\"2020-03-18T23:23:18.2075311Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask467\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask466\",\"eTag\":\"0x8D7CB935756DB77\",\"lastModified\":\"2020-03-18T23:23:18.2155639Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask466\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask465\",\"eTag\":\"0x8D7CB9357586214\",\"lastModified\":\"2020-03-18T23:23:18.2255636Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask465\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask464\",\"eTag\":\"0x8D7CB93575C57DE\",\"lastModified\":\"2020-03-18T23:23:18.2515166Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask464\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask463\",\"eTag\":\"0x8D7CB93575D959B\",\"lastModified\":\"2020-03-18T23:23:18.2596507Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask463\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask462\",\"eTag\":\"0x8D7CB93575D9AD2\",\"lastModified\":\"2020-03-18T23:23:18.2597842Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask462\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask461\",\"eTag\":\"0x8D7CB93575EA209\",\"lastModified\":\"2020-03-18T23:23:18.2665225Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask461\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask460\",\"eTag\":\"0x8D7CB9357600163\",\"lastModified\":\"2020-03-18T23:23:18.2755171Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask460\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask459\",\"eTag\":\"0x8D7CB93576161DA\",\"lastModified\":\"2020-03-18T23:23:18.2845402Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask459\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask458\",\"eTag\":\"0x8D7CB935762C151\",\"lastModified\":\"2020-03-18T23:23:18.2935377Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask458\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask457\",\"eTag\":\"0x8D7CB9357641FDF\",\"lastModified\":\"2020-03-18T23:23:18.3025119Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask457\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask456\",\"eTag\":\"0x8D7CB9357649533\",\"lastModified\":\"2020-03-18T23:23:18.3055155Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask456\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask455\",\"eTag\":\"0x8D7CB9357672E07\",\"lastModified\":\"2020-03-18T23:23:18.3225351Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask455\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask454\",\"eTag\":\"0x8D7CB935767A20E\",\"lastModified\":\"2020-03-18T23:23:18.3255054Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask454\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask453\",\"eTag\":\"0x8D7CB935769D67B\",\"lastModified\":\"2020-03-18T23:23:18.3399547Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask453\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask452\",\"eTag\":\"0x8D7CB935769DE61\",\"lastModified\":\"2020-03-18T23:23:18.3401569Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask452\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask451\",\"eTag\":\"0x8D7CB93576B5770\",\"lastModified\":\"2020-03-18T23:23:18.3498096Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask451\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask450\",\"eTag\":\"0x8D7CB93576CC8D1\",\"lastModified\":\"2020-03-18T23:23:18.3592657Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask450\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask449\",\"eTag\":\"0x8D7CB93576E41F6\",\"lastModified\":\"2020-03-18T23:23:18.3689206Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask449\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask448\",\"eTag\":\"0x8D7CB93576FE02E\",\"lastModified\":\"2020-03-18T23:23:18.3795246Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask448\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask447\",\"eTag\":\"0x8D7CB935770062B\",\"lastModified\":\"2020-03-18T23:23:18.3804971Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask447\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask446\",\"eTag\":\"0x8D7CB935772AD71\",\"lastModified\":\"2020-03-18T23:23:18.3978865Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask446\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask445\",\"eTag\":\"0x8D7CB935772C504\",\"lastModified\":\"2020-03-18T23:23:18.39849Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask445\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask444\",\"eTag\":\"0x8D7CB9357742BCD\",\"lastModified\":\"2020-03-18T23:23:18.4076749Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask444\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask443\",\"eTag\":\"0x8D7CB935775AF5D\",\"lastModified\":\"2020-03-18T23:23:18.4175965Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask443\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask442\",\"eTag\":\"0x8D7CB935777305F\",\"lastModified\":\"2020-03-18T23:23:18.4274527Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask442\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask441\",\"eTag\":\"0x8D7CB935778BC47\",\"lastModified\":\"2020-03-18T23:23:18.4375879Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask441\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask440\",\"eTag\":\"0x8D7CB93577A3A14\",\"lastModified\":\"2020-03-18T23:23:18.447362Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask440\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask439\",\"eTag\":\"0x8D7CB93577A3EBF\",\"lastModified\":\"2020-03-18T23:23:18.4474815Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask439\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask438\",\"eTag\":\"0x8D7CB93577C61BE\",\"lastModified\":\"2020-03-18T23:23:18.4614846Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask438\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask437\",\"eTag\":\"0x8D7CB93577D4175\",\"lastModified\":\"2020-03-18T23:23:18.4672117Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask437\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask435\",\"eTag\":\"0x8D7CB93577E5D69\",\"lastModified\":\"2020-03-18T23:23:18.4744809Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask435\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask436\",\"eTag\":\"0x8D7CB93577DC23E\",\"lastModified\":\"2020-03-18T23:23:18.4705086Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask436\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask433\",\"eTag\":\"0x8D7CB935781422A\",\"lastModified\":\"2020-03-18T23:23:18.4934442Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask433\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask434\",\"eTag\":\"0x8D7CB9357813CF4\",\"lastModified\":\"2020-03-18T23:23:18.4933108Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask434\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -57102,9 +57102,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:42 GMT + - Wed, 18 Mar 2020 23:23:18 GMT request-id: - - 512fa902-1929-4809-b14e-72c00bcfd959 + - 881f2293-ef21-4685-87c1-248add494279 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -62180,67 +62180,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:43 GMT + - Wed, 18 Mar 2020 23:23:18 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask432\",\"eTag\":\"0x8D71AD2415F320F\",\"lastModified\":\"2019-08-07T00:57:43.8426639Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask432\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask431\",\"eTag\":\"0x8D71AD241610695\",\"lastModified\":\"2019-08-07T00:57:43.8546581Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask431\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask430\",\"eTag\":\"0x8D71AD24162B44E\",\"lastModified\":\"2019-08-07T00:57:43.865659Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask430\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask429\",\"eTag\":\"0x8D71AD241639ECE\",\"lastModified\":\"2019-08-07T00:57:43.8716622Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask429\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask427\",\"eTag\":\"0x8D71AD24165C1D9\",\"lastModified\":\"2019-08-07T00:57:43.8856665Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask427\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask428\",\"eTag\":\"0x8D71AD24164FE64\",\"lastModified\":\"2019-08-07T00:57:43.8806628Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask428\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask426\",\"eTag\":\"0x8D71AD241679666\",\"lastModified\":\"2019-08-07T00:57:43.8976614Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask426\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask425\",\"eTag\":\"0x8D71AD2416880E8\",\"lastModified\":\"2019-08-07T00:57:43.9036648Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask425\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask424\",\"eTag\":\"0x8D71AD2416B59FB\",\"lastModified\":\"2019-08-07T00:57:43.9223291Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask424\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask423\",\"eTag\":\"0x8D71AD2416BDC1F\",\"lastModified\":\"2019-08-07T00:57:43.9256607Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask423\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask422\",\"eTag\":\"0x8D71AD2416D1487\",\"lastModified\":\"2019-08-07T00:57:43.9336583Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask422\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask421\",\"eTag\":\"0x8D71AD2416E7452\",\"lastModified\":\"2019-08-07T00:57:43.9426642Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask421\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask420\",\"eTag\":\"0x8D71AD2416FFAC0\",\"lastModified\":\"2019-08-07T00:57:43.9526592Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask420\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask419\",\"eTag\":\"0x8D71AD241715A90\",\"lastModified\":\"2019-08-07T00:57:43.9616656Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask419\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask418\",\"eTag\":\"0x8D71AD24172B9FB\",\"lastModified\":\"2019-08-07T00:57:43.9706619Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask418\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask417\",\"eTag\":\"0x8D71AD24173567B\",\"lastModified\":\"2019-08-07T00:57:43.9746683Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask417\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask416\",\"eTag\":\"0x8D71AD24175A04C\",\"lastModified\":\"2019-08-07T00:57:43.9896652Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask416\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask415\",\"eTag\":\"0x8D71AD24177A26F\",\"lastModified\":\"2019-08-07T00:57:44.0028271Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask415\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask414\",\"eTag\":\"0x8D71AD24178864E\",\"lastModified\":\"2019-08-07T00:57:44.0086606Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask414\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask413\",\"eTag\":\"0x8D71AD24179E5D3\",\"lastModified\":\"2019-08-07T00:57:44.0176595Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask413\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask412\",\"eTag\":\"0x8D71AD2417B9916\",\"lastModified\":\"2019-08-07T00:57:44.0288022Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask412\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask411\",\"eTag\":\"0x8D71AD2417D6971\",\"lastModified\":\"2019-08-07T00:57:44.0406897Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask411\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask410\",\"eTag\":\"0x8D71AD2417D8F70\",\"lastModified\":\"2019-08-07T00:57:44.0416624Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask410\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask409\",\"eTag\":\"0x8D71AD2417EA0D6\",\"lastModified\":\"2019-08-07T00:57:44.0486614Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask409\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask408\",\"eTag\":\"0x8D71AD241805D2F\",\"lastModified\":\"2019-08-07T00:57:44.0600367Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask408\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask407\",\"eTag\":\"0x8D71AD24181D649\",\"lastModified\":\"2019-08-07T00:57:44.0696905Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask407\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask406\",\"eTag\":\"0x8D71AD24183D0EE\",\"lastModified\":\"2019-08-07T00:57:44.0826606Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask406\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask405\",\"eTag\":\"0x8D71AD24184BB7D\",\"lastModified\":\"2019-08-07T00:57:44.0886653Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask405\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask404\",\"eTag\":\"0x8D71AD24187C8A6\",\"lastModified\":\"2019-08-07T00:57:44.108663Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask404\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask403\",\"eTag\":\"0x8D71AD241883DCD\",\"lastModified\":\"2019-08-07T00:57:44.1116621Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask403\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask402\",\"eTag\":\"0x8D71AD24189010A\",\"lastModified\":\"2019-08-07T00:57:44.1166602Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask402\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask401\",\"eTag\":\"0x8D71AD2418A1282\",\"lastModified\":\"2019-08-07T00:57:44.123661Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask401\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask398\",\"eTag\":\"0x8D71AD2418E7F61\",\"lastModified\":\"2019-08-07T00:57:44.1526625Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask398\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask400\",\"eTag\":\"0x8D71AD2418B9914\",\"lastModified\":\"2019-08-07T00:57:44.1336596Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask400\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask399\",\"eTag\":\"0x8D71AD2418D1FD9\",\"lastModified\":\"2019-08-07T00:57:44.1436633Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask399\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask397\",\"eTag\":\"0x8D71AD24190073D\",\"lastModified\":\"2019-08-07T00:57:44.1626941Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask397\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask396\",\"eTag\":\"0x8D71AD24191663E\",\"lastModified\":\"2019-08-07T00:57:44.1716798Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask396\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask394\",\"eTag\":\"0x8D71AD24193D686\",\"lastModified\":\"2019-08-07T00:57:44.1876614Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask394\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask395\",\"eTag\":\"0x8D71AD24195DE14\",\"lastModified\":\"2019-08-07T00:57:44.200962Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask395\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask392\",\"eTag\":\"0x8D71AD2419695C3\",\"lastModified\":\"2019-08-07T00:57:44.2056643Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask392\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask393\",\"eTag\":\"0x8D71AD2419647CA\",\"lastModified\":\"2019-08-07T00:57:44.2036682Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask393\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask391\",\"eTag\":\"0x8D71AD24197F550\",\"lastModified\":\"2019-08-07T00:57:44.214664Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask391\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask390\",\"eTag\":\"0x8D71AD2419A6613\",\"lastModified\":\"2019-08-07T00:57:44.2306579Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask390\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask389\",\"eTag\":\"0x8D71AD2419B601F\",\"lastModified\":\"2019-08-07T00:57:44.2370591Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask389\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask388\",\"eTag\":\"0x8D71AD2419CCC5F\",\"lastModified\":\"2019-08-07T00:57:44.2463839Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask388\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask387\",\"eTag\":\"0x8D71AD2419E4051\",\"lastModified\":\"2019-08-07T00:57:44.2559057Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask387\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask386\",\"eTag\":\"0x8D71AD2419E84BE\",\"lastModified\":\"2019-08-07T00:57:44.2576574Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask386\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask385\",\"eTag\":\"0x8D71AD2419FBD32\",\"lastModified\":\"2019-08-07T00:57:44.2656562Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask385\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask384\",\"eTag\":\"0x8D71AD241A12D90\",\"lastModified\":\"2019-08-07T00:57:44.2750864Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask384\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask383\",\"eTag\":\"0x8D71AD241A25593\",\"lastModified\":\"2019-08-07T00:57:44.2826643Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask383\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask432\",\"eTag\":\"0x8D7CB9357D3063A\",\"lastModified\":\"2020-03-18T23:23:19.029305Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask432\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask431\",\"eTag\":\"0x8D7CB9357D35464\",\"lastModified\":\"2020-03-18T23:23:19.031306Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask431\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask430\",\"eTag\":\"0x8D7CB9357D3A275\",\"lastModified\":\"2020-03-18T23:23:19.0333045Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask430\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask429\",\"eTag\":\"0x8D7CB9357D501F0\",\"lastModified\":\"2020-03-18T23:23:19.0423024Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask429\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask428\",\"eTag\":\"0x8D7CB9357D6B0C7\",\"lastModified\":\"2020-03-18T23:23:19.0533319Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask428\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask427\",\"eTag\":\"0x8D7CB9357D772EA\",\"lastModified\":\"2020-03-18T23:23:19.0583018Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask427\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask426\",\"eTag\":\"0x8D7CB9357D8854B\",\"lastModified\":\"2020-03-18T23:23:19.0653259Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask426\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask424\",\"eTag\":\"0x8D7CB9357DD92C2\",\"lastModified\":\"2020-03-18T23:23:19.0984386Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask424\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask425\",\"eTag\":\"0x8D7CB9357DCA2CF\",\"lastModified\":\"2020-03-18T23:23:19.0922959Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask425\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask422\",\"eTag\":\"0x8D7CB9357DFD839\",\"lastModified\":\"2020-03-18T23:23:19.1133241Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask422\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask421\",\"eTag\":\"0x8D7CB9357E184B2\",\"lastModified\":\"2020-03-18T23:23:19.124293Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask421\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask420\",\"eTag\":\"0x8D7CB9357E15EAE\",\"lastModified\":\"2020-03-18T23:23:19.1233198Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask420\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask419\",\"eTag\":\"0x8D7CB9357E2E54F\",\"lastModified\":\"2020-03-18T23:23:19.1333199Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask419\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask418\",\"eTag\":\"0x8D7CB9357E506F0\",\"lastModified\":\"2020-03-18T23:23:19.147288Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask418\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask423\",\"eTag\":\"0x8D7CB9357E4F55E\",\"lastModified\":\"2020-03-18T23:23:19.1468382Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask423\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask417\",\"eTag\":\"0x8D7CB9357E57D87\",\"lastModified\":\"2020-03-18T23:23:19.1503239Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask417\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask416\",\"eTag\":\"0x8D7CB9357E79F21\",\"lastModified\":\"2020-03-18T23:23:19.1642913Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask416\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask415\",\"eTag\":\"0x8D7CB9357E9001E\",\"lastModified\":\"2020-03-18T23:23:19.1733278Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask415\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask414\",\"eTag\":\"0x8D7CB9357EA5E1B\",\"lastModified\":\"2020-03-18T23:23:19.1822875Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask414\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask413\",\"eTag\":\"0x8D7CB9357EBE627\",\"lastModified\":\"2020-03-18T23:23:19.1923239Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask413\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask412\",\"eTag\":\"0x8D7CB9357ED6CB2\",\"lastModified\":\"2020-03-18T23:23:19.2023218Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask412\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask411\",\"eTag\":\"0x8D7CB9357EECAA4\",\"lastModified\":\"2020-03-18T23:23:19.2112804Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask411\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask410\",\"eTag\":\"0x8D7CB9357F1D7B6\",\"lastModified\":\"2020-03-18T23:23:19.2312758Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask410\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask409\",\"eTag\":\"0x8D7CB9357F1FEB2\",\"lastModified\":\"2020-03-18T23:23:19.2322738Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask409\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask408\",\"eTag\":\"0x8D7CB9357F33717\",\"lastModified\":\"2020-03-18T23:23:19.2402711Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask408\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask407\",\"eTag\":\"0x8D7CB9357F58104\",\"lastModified\":\"2020-03-18T23:23:19.2552708Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask407\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask406\",\"eTag\":\"0x8D7CB9357F76904\",\"lastModified\":\"2020-03-18T23:23:19.2677636Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask406\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask405\",\"eTag\":\"0x8D7CB9357F7F356\",\"lastModified\":\"2020-03-18T23:23:19.2713046Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask405\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask404\",\"eTag\":\"0x8D7CB9357F81901\",\"lastModified\":\"2020-03-18T23:23:19.2722689Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask404\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask403\",\"eTag\":\"0x8D7CB9357F99F94\",\"lastModified\":\"2020-03-18T23:23:19.2822676Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask403\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask402\",\"eTag\":\"0x8D7CB9357FAFFBE\",\"lastModified\":\"2020-03-18T23:23:19.291283Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask402\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask401\",\"eTag\":\"0x8D7CB9357FC5FBB\",\"lastModified\":\"2020-03-18T23:23:19.3002939Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask401\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask400\",\"eTag\":\"0x8D7CB9357FDE50E\",\"lastModified\":\"2020-03-18T23:23:19.3102606Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask400\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask399\",\"eTag\":\"0x8D7CB9357FF4575\",\"lastModified\":\"2020-03-18T23:23:19.3192821Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask399\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask397\",\"eTag\":\"0x8D7CB935800F243\",\"lastModified\":\"2020-03-18T23:23:19.3302595Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask397\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask396\",\"eTag\":\"0x8D7CB935801404D\",\"lastModified\":\"2020-03-18T23:23:19.3322573Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask396\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask395\",\"eTag\":\"0x8D7CB935804279F\",\"lastModified\":\"2020-03-18T23:23:19.3512863Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask395\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask398\",\"eTag\":\"0x8D7CB935800CB44\",\"lastModified\":\"2020-03-18T23:23:19.3292612Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask398\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask394\",\"eTag\":\"0x8D7CB93580511D8\",\"lastModified\":\"2020-03-18T23:23:19.3572824Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask394\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask393\",\"eTag\":\"0x8D7CB935806703E\",\"lastModified\":\"2020-03-18T23:23:19.3662526Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask393\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask392\",\"eTag\":\"0x8D7CB935807A8D7\",\"lastModified\":\"2020-03-18T23:23:19.3742551Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask392\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask391\",\"eTag\":\"0x8D7CB9358090855\",\"lastModified\":\"2020-03-18T23:23:19.3832533Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask391\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask390\",\"eTag\":\"0x8D7CB93580A41BA\",\"lastModified\":\"2020-03-18T23:23:19.3912762Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask390\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask389\",\"eTag\":\"0x8D7CB93580BA190\",\"lastModified\":\"2020-03-18T23:23:19.4002832Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask389\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask388\",\"eTag\":\"0x8D7CB93580CFFC7\",\"lastModified\":\"2020-03-18T23:23:19.4092487Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask388\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask387\",\"eTag\":\"0x8D7CB93580D3408\",\"lastModified\":\"2020-03-18T23:23:19.4105864Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask387\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask386\",\"eTag\":\"0x8D7CB93580E608D\",\"lastModified\":\"2020-03-18T23:23:19.4182797Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask386\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask385\",\"eTag\":\"0x8D7CB93580F98A0\",\"lastModified\":\"2020-03-18T23:23:19.4262688Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask385\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask384\",\"eTag\":\"0x8D7CB935810F734\",\"lastModified\":\"2020-03-18T23:23:19.4352436Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask384\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask383\",\"eTag\":\"0x8D7CB9358119394\",\"lastModified\":\"2020-03-18T23:23:19.4392468Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask383\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -62248,9 +62248,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:43 GMT + - Wed, 18 Mar 2020 23:23:18 GMT request-id: - - 38cab14f-5bbe-47c6-b813-ea52f9f85d8d + - 6653e38d-8561-4b69-a633-7aa9ff5cac3e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -67326,67 +67326,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:44 GMT + - Wed, 18 Mar 2020 23:23:19 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask382\",\"eTag\":\"0x8D71AD24214669D\",\"lastModified\":\"2019-08-07T00:57:45.0302109Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask382\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask381\",\"eTag\":\"0x8D71AD24216D6A4\",\"lastModified\":\"2019-08-07T00:57:45.046186Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask381\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask379\",\"eTag\":\"0x8D71AD24219479B\",\"lastModified\":\"2019-08-07T00:57:45.0621851Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask379\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask380\",\"eTag\":\"0x8D71AD242196EC4\",\"lastModified\":\"2019-08-07T00:57:45.0631876Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask380\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask378\",\"eTag\":\"0x8D71AD2421A3325\",\"lastModified\":\"2019-08-07T00:57:45.0682149Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask378\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask377\",\"eTag\":\"0x8D71AD2421B918C\",\"lastModified\":\"2019-08-07T00:57:45.0771852Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask377\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask376\",\"eTag\":\"0x8D71AD2421CF120\",\"lastModified\":\"2019-08-07T00:57:45.0861856Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask376\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask375\",\"eTag\":\"0x8D71AD2421E2AD0\",\"lastModified\":\"2019-08-07T00:57:45.094216Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask375\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask374\",\"eTag\":\"0x8D71AD2421F8A4D\",\"lastModified\":\"2019-08-07T00:57:45.1032141Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask374\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask373\",\"eTag\":\"0x8D71AD24222966F\",\"lastModified\":\"2019-08-07T00:57:45.1231855Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask373\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask372\",\"eTag\":\"0x8D71AD24223CF28\",\"lastModified\":\"2019-08-07T00:57:45.1311912Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask372\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask371\",\"eTag\":\"0x8D71AD242252FA9\",\"lastModified\":\"2019-08-07T00:57:45.1402153Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask371\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask370\",\"eTag\":\"0x8D71AD242279F7B\",\"lastModified\":\"2019-08-07T00:57:45.1561851Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask370\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask369\",\"eTag\":\"0x8D71AD24228D7F8\",\"lastModified\":\"2019-08-07T00:57:45.1641848Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask369\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask368\",\"eTag\":\"0x8D71AD242299B79\",\"lastModified\":\"2019-08-07T00:57:45.1691897Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask368\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask367\",\"eTag\":\"0x8D71AD2422AFB09\",\"lastModified\":\"2019-08-07T00:57:45.1781897Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask367\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask366\",\"eTag\":\"0x8D71AD2422C5AB7\",\"lastModified\":\"2019-08-07T00:57:45.1871927Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask366\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask365\",\"eTag\":\"0x8D71AD2422E0BC7\",\"lastModified\":\"2019-08-07T00:57:45.1982791Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask365\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask364\",\"eTag\":\"0x8D71AD2422F8EBF\",\"lastModified\":\"2019-08-07T00:57:45.2081855Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask364\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask363\",\"eTag\":\"0x8D71AD24230C743\",\"lastModified\":\"2019-08-07T00:57:45.2161859Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask363\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask362\",\"eTag\":\"0x8D71AD24232C2DC\",\"lastModified\":\"2019-08-07T00:57:45.2291804Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask362\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask361\",\"eTag\":\"0x8D71AD24234BEB0\",\"lastModified\":\"2019-08-07T00:57:45.2421808Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask361\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask360\",\"eTag\":\"0x8D71AD242361E82\",\"lastModified\":\"2019-08-07T00:57:45.2511874Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask360\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask359\",\"eTag\":\"0x8D71AD242364583\",\"lastModified\":\"2019-08-07T00:57:45.2521859Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask359\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask358\",\"eTag\":\"0x8D71AD2423745C1\",\"lastModified\":\"2019-08-07T00:57:45.2587457Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask358\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask357\",\"eTag\":\"0x8D71AD24239C7F0\",\"lastModified\":\"2019-08-07T00:57:45.2751856Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask357\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask356\",\"eTag\":\"0x8D71AD2423B9CA7\",\"lastModified\":\"2019-08-07T00:57:45.2871847Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask356\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask355\",\"eTag\":\"0x8D71AD2423D241F\",\"lastModified\":\"2019-08-07T00:57:45.2972063Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask355\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask354\",\"eTag\":\"0x8D71AD242406601\",\"lastModified\":\"2019-08-07T00:57:45.3185537Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask354\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask353\",\"eTag\":\"0x8D71AD24240A5B7\",\"lastModified\":\"2019-08-07T00:57:45.3201847Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask353\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask352\",\"eTag\":\"0x8D71AD24241CF9F\",\"lastModified\":\"2019-08-07T00:57:45.3278111Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask352\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask351\",\"eTag\":\"0x8D71AD242438BE4\",\"lastModified\":\"2019-08-07T00:57:45.3391844Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask351\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask348\",\"eTag\":\"0x8D71AD242481FAB\",\"lastModified\":\"2019-08-07T00:57:45.3691819Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask348\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask350\",\"eTag\":\"0x8D71AD242464B10\",\"lastModified\":\"2019-08-07T00:57:45.3571856Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask350\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask349\",\"eTag\":\"0x8D71AD242462E4D\",\"lastModified\":\"2019-08-07T00:57:45.3564493Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask349\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask347\",\"eTag\":\"0x8D71AD2424920AE\",\"lastModified\":\"2019-08-07T00:57:45.3757614Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask347\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask346\",\"eTag\":\"0x8D71AD2424A99E8\",\"lastModified\":\"2019-08-07T00:57:45.3854184Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask346\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask344\",\"eTag\":\"0x8D71AD2424C8C8A\",\"lastModified\":\"2019-08-07T00:57:45.3981834Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask344\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask345\",\"eTag\":\"0x8D71AD2424C8C8A\",\"lastModified\":\"2019-08-07T00:57:45.3981834Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask345\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask343\",\"eTag\":\"0x8D71AD2424F24A7\",\"lastModified\":\"2019-08-07T00:57:45.4151847Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask343\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask342\",\"eTag\":\"0x8D71AD242504D59\",\"lastModified\":\"2019-08-07T00:57:45.4227801Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask342\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask341\",\"eTag\":\"0x8D71AD24251C698\",\"lastModified\":\"2019-08-07T00:57:45.4324376Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask341\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask340\",\"eTag\":\"0x8D71AD242531C1D\",\"lastModified\":\"2019-08-07T00:57:45.4411805Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask340\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask339\",\"eTag\":\"0x8D71AD242548CDB\",\"lastModified\":\"2019-08-07T00:57:45.4506203Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask339\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask338\",\"eTag\":\"0x8D71AD24255FBA1\",\"lastModified\":\"2019-08-07T00:57:45.4600097Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask338\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask337\",\"eTag\":\"0x8D71AD24257583B\",\"lastModified\":\"2019-08-07T00:57:45.4689339Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask337\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask336\",\"eTag\":\"0x8D71AD24258C9A8\",\"lastModified\":\"2019-08-07T00:57:45.4783912Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask336\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask335\",\"eTag\":\"0x8D71AD2425A28DF\",\"lastModified\":\"2019-08-07T00:57:45.4873823Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask335\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask334\",\"eTag\":\"0x8D71AD2425B9F89\",\"lastModified\":\"2019-08-07T00:57:45.4969737Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask334\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask333\",\"eTag\":\"0x8D71AD2425C9219\",\"lastModified\":\"2019-08-07T00:57:45.5031833Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask333\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask382\",\"eTag\":\"0x8D7CB9358675ED8\",\"lastModified\":\"2020-03-18T23:23:20.0015064Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask382\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask381\",\"eTag\":\"0x8D7CB935868E6D9\",\"lastModified\":\"2020-03-18T23:23:20.0115417Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask381\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask380\",\"eTag\":\"0x8D7CB9358744580\",\"lastModified\":\"2020-03-18T23:23:20.0860544Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask380\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask379\",\"eTag\":\"0x8D7CB9358745667\",\"lastModified\":\"2020-03-18T23:23:20.0864871Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask379\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask378\",\"eTag\":\"0x8D7CB935875C136\",\"lastModified\":\"2020-03-18T23:23:20.095775Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask378\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask374\",\"eTag\":\"0x8D7CB93587603FC\",\"lastModified\":\"2020-03-18T23:23:20.0974844Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask374\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask375\",\"eTag\":\"0x8D7CB935875DCFC\",\"lastModified\":\"2020-03-18T23:23:20.096486Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask375\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask376\",\"eTag\":\"0x8D7CB9358747D7B\",\"lastModified\":\"2020-03-18T23:23:20.0874875Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask376\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask377\",\"eTag\":\"0x8D7CB9358745667\",\"lastModified\":\"2020-03-18T23:23:20.0864871Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask377\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask370\",\"eTag\":\"0x8D7CB93587737DD\",\"lastModified\":\"2020-03-18T23:23:20.1053661Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask370\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask369\",\"eTag\":\"0x8D7CB935878EA15\",\"lastModified\":\"2020-03-18T23:23:20.1164821Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask369\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask368\",\"eTag\":\"0x8D7CB93587B33EB\",\"lastModified\":\"2020-03-18T23:23:20.1314795Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask368\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask372\",\"eTag\":\"0x8D7CB93587BA904\",\"lastModified\":\"2020-03-18T23:23:20.1344772Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask372\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask373\",\"eTag\":\"0x8D7CB93587B33EB\",\"lastModified\":\"2020-03-18T23:23:20.1314795Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask373\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask371\",\"eTag\":\"0x8D7CB93587BA904\",\"lastModified\":\"2020-03-18T23:23:20.1344772Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask371\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask366\",\"eTag\":\"0x8D7CB93587CBA87\",\"lastModified\":\"2020-03-18T23:23:20.1414791Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask366\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask367\",\"eTag\":\"0x8D7CB93587C93D6\",\"lastModified\":\"2020-03-18T23:23:20.1404886Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask367\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask365\",\"eTag\":\"0x8D7CB93587E1B77\",\"lastModified\":\"2020-03-18T23:23:20.1505143Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask365\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask364\",\"eTag\":\"0x8D7CB93587FA215\",\"lastModified\":\"2020-03-18T23:23:20.1605141Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask364\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask363\",\"eTag\":\"0x8D7CB93588128F4\",\"lastModified\":\"2020-03-18T23:23:20.1705204Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask363\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask362\",\"eTag\":\"0x8D7CB935882ADEE\",\"lastModified\":\"2020-03-18T23:23:20.1804782Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask362\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask361\",\"eTag\":\"0x8D7CB93588397F2\",\"lastModified\":\"2020-03-18T23:23:20.186469Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask361\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask360\",\"eTag\":\"0x8D7CB935885019E\",\"lastModified\":\"2020-03-18T23:23:20.1957278Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask360\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask359\",\"eTag\":\"0x8D7CB9358867064\",\"lastModified\":\"2020-03-18T23:23:20.2051172Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask359\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask358\",\"eTag\":\"0x8D7CB935887E1C7\",\"lastModified\":\"2020-03-18T23:23:20.2145735Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask358\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask357\",\"eTag\":\"0x8D7CB93588955B2\",\"lastModified\":\"2020-03-18T23:23:20.2240946Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask357\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask356\",\"eTag\":\"0x8D7CB93588B87E8\",\"lastModified\":\"2020-03-18T23:23:20.2384872Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask356\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask355\",\"eTag\":\"0x8D7CB93588BAE10\",\"lastModified\":\"2020-03-18T23:23:20.239464Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask355\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask354\",\"eTag\":\"0x8D7CB93588CE756\",\"lastModified\":\"2020-03-18T23:23:20.2474838Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask354\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask353\",\"eTag\":\"0x8D7CB93588DABF0\",\"lastModified\":\"2020-03-18T23:23:20.2525168Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask353\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask352\",\"eTag\":\"0x8D7CB93588E6DE1\",\"lastModified\":\"2020-03-18T23:23:20.2574817Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask352\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask351\",\"eTag\":\"0x8D7CB93588FF4B4\",\"lastModified\":\"2020-03-18T23:23:20.2674868Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask351\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask350\",\"eTag\":\"0x8D7CB9358917BB0\",\"lastModified\":\"2020-03-18T23:23:20.277496Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask350\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask349\",\"eTag\":\"0x8D7CB935892D9C7\",\"lastModified\":\"2020-03-18T23:23:20.2864583Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask349\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask348\",\"eTag\":\"0x8D7CB935892D9C7\",\"lastModified\":\"2020-03-18T23:23:20.2864583Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask348\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask347\",\"eTag\":\"0x8D7CB9358954AC9\",\"lastModified\":\"2020-03-18T23:23:20.3024585Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask347\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask346\",\"eTag\":\"0x8D7CB935896D148\",\"lastModified\":\"2020-03-18T23:23:20.3124552Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask346\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask345\",\"eTag\":\"0x8D7CB935897E27D\",\"lastModified\":\"2020-03-18T23:23:20.3194493Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask345\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask344\",\"eTag\":\"0x8D7CB9358991C1D\",\"lastModified\":\"2020-03-18T23:23:20.3274781Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask344\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask343\",\"eTag\":\"0x8D7CB93589A549A\",\"lastModified\":\"2020-03-18T23:23:20.3354778Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask343\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask342\",\"eTag\":\"0x8D7CB93589B8D1E\",\"lastModified\":\"2020-03-18T23:23:20.3434782Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask342\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask341\",\"eTag\":\"0x8D7CB93589CC576\",\"lastModified\":\"2020-03-18T23:23:20.3514742Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask341\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask340\",\"eTag\":\"0x8D7CB93589DFDE7\",\"lastModified\":\"2020-03-18T23:23:20.3594727Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask340\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask339\",\"eTag\":\"0x8D7CB93589F367F\",\"lastModified\":\"2020-03-18T23:23:20.3674751Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask339\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask338\",\"eTag\":\"0x8D7CB9358A01F94\",\"lastModified\":\"2020-03-18T23:23:20.373442Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask338\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask337\",\"eTag\":\"0x8D7CB9358A0BBF7\",\"lastModified\":\"2020-03-18T23:23:20.3774455Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask337\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask336\",\"eTag\":\"0x8D7CB9358A1CE73\",\"lastModified\":\"2020-03-18T23:23:20.3844723Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask336\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask335\",\"eTag\":\"0x8D7CB9358A3069D\",\"lastModified\":\"2020-03-18T23:23:20.3924637Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask335\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask334\",\"eTag\":\"0x8D7CB9358A4665F\",\"lastModified\":\"2020-03-18T23:23:20.4014687Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask334\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask333\",\"eTag\":\"0x8D7CB9358A528C2\",\"lastModified\":\"2020-03-18T23:23:20.406445Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask333\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -67394,9 +67394,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:45 GMT + - Wed, 18 Mar 2020 23:23:19 GMT request-id: - - e2c2003a-4ed8-42c6-bb0a-1b9106deb79c + - d51b692f-a189-44fe-83d9-13f749194e1d server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -72472,67 +72472,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:46 GMT + - Wed, 18 Mar 2020 23:23:20 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask331\",\"eTag\":\"0x8D71AD242D33C2D\",\"lastModified\":\"2019-08-07T00:57:46.2808621Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask331\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask330\",\"eTag\":\"0x8D71AD242D4BAB1\",\"lastModified\":\"2019-08-07T00:57:46.2906545Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask330\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask329\",\"eTag\":\"0x8D71AD242D62452\",\"lastModified\":\"2019-08-07T00:57:46.2999122Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask329\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask328\",\"eTag\":\"0x8D71AD242D79D76\",\"lastModified\":\"2019-08-07T00:57:46.309567Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask328\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask327\",\"eTag\":\"0x8D71AD242D7B5B5\",\"lastModified\":\"2019-08-07T00:57:46.3101877Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask327\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask332\",\"eTag\":\"0x8D71AD242D1DF9D\",\"lastModified\":\"2019-08-07T00:57:46.2719389Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask332\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask326\",\"eTag\":\"0x8D71AD242DAC306\",\"lastModified\":\"2019-08-07T00:57:46.3301894Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask326\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask325\",\"eTag\":\"0x8D71AD242DD5AEE\",\"lastModified\":\"2019-08-07T00:57:46.3471854Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask325\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask323\",\"eTag\":\"0x8D71AD242DEBAA8\",\"lastModified\":\"2019-08-07T00:57:46.3561896Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask323\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask324\",\"eTag\":\"0x8D71AD242DEA86C\",\"lastModified\":\"2019-08-07T00:57:46.3557228Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask324\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask322\",\"eTag\":\"0x8D71AD242E01A24\",\"lastModified\":\"2019-08-07T00:57:46.3651876Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask322\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask321\",\"eTag\":\"0x8D71AD242E159CA\",\"lastModified\":\"2019-08-07T00:57:46.3733706Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask321\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask320\",\"eTag\":\"0x8D71AD242E327DD\",\"lastModified\":\"2019-08-07T00:57:46.3851997Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask320\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask319\",\"eTag\":\"0x8D71AD242E46105\",\"lastModified\":\"2019-08-07T00:57:46.3932165Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask319\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask318\",\"eTag\":\"0x8D71AD242E5DA4B\",\"lastModified\":\"2019-08-07T00:57:46.4028747Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask318\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask317\",\"eTag\":\"0x8D71AD242E6A9FA\",\"lastModified\":\"2019-08-07T00:57:46.4081914Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask317\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask316\",\"eTag\":\"0x8D71AD242E835A1\",\"lastModified\":\"2019-08-07T00:57:46.4183201Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask316\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask315\",\"eTag\":\"0x8D71AD242E9905F\",\"lastModified\":\"2019-08-07T00:57:46.4271967Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask315\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask314\",\"eTag\":\"0x8D71AD242EB099D\",\"lastModified\":\"2019-08-07T00:57:46.4368541Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask314\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask313\",\"eTag\":\"0x8D71AD242EC764B\",\"lastModified\":\"2019-08-07T00:57:46.4461899Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask313\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask312\",\"eTag\":\"0x8D71AD242EDD5E1\",\"lastModified\":\"2019-08-07T00:57:46.4551905Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask312\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask311\",\"eTag\":\"0x8D71AD242EFFA84\",\"lastModified\":\"2019-08-07T00:57:46.4692356Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask311\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask310\",\"eTag\":\"0x8D71AD242F0BC12\",\"lastModified\":\"2019-08-07T00:57:46.4741906Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask310\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask309\",\"eTag\":\"0x8D71AD242F242A6\",\"lastModified\":\"2019-08-07T00:57:46.4841894Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask309\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask308\",\"eTag\":\"0x8D71AD242F2DEEC\",\"lastModified\":\"2019-08-07T00:57:46.48819Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask308\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask307\",\"eTag\":\"0x8D71AD242F3F078\",\"lastModified\":\"2019-08-07T00:57:46.4951928Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask307\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask306\",\"eTag\":\"0x8D71AD242F4DBC7\",\"lastModified\":\"2019-08-07T00:57:46.5012167Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask306\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask305\",\"eTag\":\"0x8D71AD242F66142\",\"lastModified\":\"2019-08-07T00:57:46.5111874Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask305\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask304\",\"eTag\":\"0x8D71AD242F7C520\",\"lastModified\":\"2019-08-07T00:57:46.5202976Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask304\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask303\",\"eTag\":\"0x8D71AD242F9209E\",\"lastModified\":\"2019-08-07T00:57:46.5291934Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask303\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask302\",\"eTag\":\"0x8D71AD242FA8036\",\"lastModified\":\"2019-08-07T00:57:46.5381942Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask302\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask301\",\"eTag\":\"0x8D71AD242FBDFC5\",\"lastModified\":\"2019-08-07T00:57:46.5471941Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask301\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask300\",\"eTag\":\"0x8D71AD242FC7BC9\",\"lastModified\":\"2019-08-07T00:57:46.5511881Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask300\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask299\",\"eTag\":\"0x8D71AD242FE027B\",\"lastModified\":\"2019-08-07T00:57:46.5611899Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask299\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask298\",\"eTag\":\"0x8D71AD242FF620C\",\"lastModified\":\"2019-08-07T00:57:46.57019Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask298\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask297\",\"eTag\":\"0x8D71AD243009AEB\",\"lastModified\":\"2019-08-07T00:57:46.5781995Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask297\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask296\",\"eTag\":\"0x8D71AD2430367A4\",\"lastModified\":\"2019-08-07T00:57:46.5965476Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask296\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask295\",\"eTag\":\"0x8D71AD243052E55\",\"lastModified\":\"2019-08-07T00:57:46.6081877Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask295\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask294\",\"eTag\":\"0x8D71AD2430620EA\",\"lastModified\":\"2019-08-07T00:57:46.6143978Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask294\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask293\",\"eTag\":\"0x8D71AD243081494\",\"lastModified\":\"2019-08-07T00:57:46.6271892Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask293\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask292\",\"eTag\":\"0x8D71AD243094CF4\",\"lastModified\":\"2019-08-07T00:57:46.635186Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask292\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask291\",\"eTag\":\"0x8D71AD2430A5E7B\",\"lastModified\":\"2019-08-07T00:57:46.6421883Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask291\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask290\",\"eTag\":\"0x8D71AD2430C333B\",\"lastModified\":\"2019-08-07T00:57:46.6541883Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask290\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask289\",\"eTag\":\"0x8D71AD2430D92E7\",\"lastModified\":\"2019-08-07T00:57:46.6631911Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask289\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask288\",\"eTag\":\"0x8D71AD2430FD2BA\",\"lastModified\":\"2019-08-07T00:57:46.6779322Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask288\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask287\",\"eTag\":\"0x8D71AD2430FDCA0\",\"lastModified\":\"2019-08-07T00:57:46.6781856Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask287\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask286\",\"eTag\":\"0x8D71AD243113523\",\"lastModified\":\"2019-08-07T00:57:46.6870051Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask286\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask285\",\"eTag\":\"0x8D71AD243128E86\",\"lastModified\":\"2019-08-07T00:57:46.695847Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask285\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask283\",\"eTag\":\"0x8D71AD24314E5EF\",\"lastModified\":\"2019-08-07T00:57:46.7111919Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask283\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask284\",\"eTag\":\"0x8D71AD2431470B5\",\"lastModified\":\"2019-08-07T00:57:46.7081909Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask284\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask332\",\"eTag\":\"0x8D7CB9358F6AED6\",\"lastModified\":\"2020-03-18T23:23:20.940719Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask332\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask331\",\"eTag\":\"0x8D7CB9358F72460\",\"lastModified\":\"2020-03-18T23:23:20.943728Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask331\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask330\",\"eTag\":\"0x8D7CB9358F7C156\",\"lastModified\":\"2020-03-18T23:23:20.9477462Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask330\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask329\",\"eTag\":\"0x8D7CB9358F9464F\",\"lastModified\":\"2020-03-18T23:23:20.9577039Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask329\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask328\",\"eTag\":\"0x8D7CB9358FAA77A\",\"lastModified\":\"2020-03-18T23:23:20.966745Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask328\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask327\",\"eTag\":\"0x8D7CB9358FAF582\",\"lastModified\":\"2020-03-18T23:23:20.9687426Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask327\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask326\",\"eTag\":\"0x8D7CB9358FC5372\",\"lastModified\":\"2020-03-18T23:23:20.977701Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask326\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask325\",\"eTag\":\"0x8D7CB9358FE01FB\",\"lastModified\":\"2020-03-18T23:23:20.9887227Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask325\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask324\",\"eTag\":\"0x8D7CB9358FF606C\",\"lastModified\":\"2020-03-18T23:23:20.997694Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask324\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask323\",\"eTag\":\"0x8D7CB935900C002\",\"lastModified\":\"2020-03-18T23:23:21.0066946Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask323\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask322\",\"eTag\":\"0x8D7CB9359021F70\",\"lastModified\":\"2020-03-18T23:23:21.0156912Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask322\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask321\",\"eTag\":\"0x8D7CB9359035F0E\",\"lastModified\":\"2020-03-18T23:23:21.0238734Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask321\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask320\",\"eTag\":\"0x8D7CB935904E014\",\"lastModified\":\"2020-03-18T23:23:21.03373Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask320\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask319\",\"eTag\":\"0x8D7CB935905539B\",\"lastModified\":\"2020-03-18T23:23:21.0366875Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask319\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask318\",\"eTag\":\"0x8D7CB93590668ED\",\"lastModified\":\"2020-03-18T23:23:21.0437869Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask318\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask317\",\"eTag\":\"0x8D7CB935909676B\",\"lastModified\":\"2020-03-18T23:23:21.0634091Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask317\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask316\",\"eTag\":\"0x8D7CB93590AE569\",\"lastModified\":\"2020-03-18T23:23:21.0731881Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask316\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask315\",\"eTag\":\"0x8D7CB93590C64EE\",\"lastModified\":\"2020-03-18T23:23:21.0830062Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask315\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask314\",\"eTag\":\"0x8D7CB93590C7FA2\",\"lastModified\":\"2020-03-18T23:23:21.0836898Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask314\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask313\",\"eTag\":\"0x8D7CB93590DEB1A\",\"lastModified\":\"2020-03-18T23:23:21.0929946Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask313\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask312\",\"eTag\":\"0x8D7CB93590F66E1\",\"lastModified\":\"2020-03-18T23:23:21.1027169Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask312\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask311\",\"eTag\":\"0x8D7CB935910EBE1\",\"lastModified\":\"2020-03-18T23:23:21.1126753Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask311\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask310\",\"eTag\":\"0x8D7CB93591272D1\",\"lastModified\":\"2020-03-18T23:23:21.1226833Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask310\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask309\",\"eTag\":\"0x8D7CB935914BC61\",\"lastModified\":\"2020-03-18T23:23:21.1376737Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask309\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask308\",\"eTag\":\"0x8D7CB9359155979\",\"lastModified\":\"2020-03-18T23:23:21.1416953Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask308\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask307\",\"eTag\":\"0x8D7CB93591724FD\",\"lastModified\":\"2020-03-18T23:23:21.1534589Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask307\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask306\",\"eTag\":\"0x8D7CB935918A0C1\",\"lastModified\":\"2020-03-18T23:23:21.1631809Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask306\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask305\",\"eTag\":\"0x8D7CB93591A19F0\",\"lastModified\":\"2020-03-18T23:23:21.1728368Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask305\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask304\",\"eTag\":\"0x8D7CB93591B9321\",\"lastModified\":\"2020-03-18T23:23:21.1824929Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask304\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask303\",\"eTag\":\"0x8D7CB93591B99CF\",\"lastModified\":\"2020-03-18T23:23:21.1826639Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask303\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask302\",\"eTag\":\"0x8D7CB93591D2062\",\"lastModified\":\"2020-03-18T23:23:21.1926626Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask302\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask301\",\"eTag\":\"0x8D7CB93591E8812\",\"lastModified\":\"2020-03-18T23:23:21.2018706Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask301\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask300\",\"eTag\":\"0x8D7CB935920069B\",\"lastModified\":\"2020-03-18T23:23:21.2116635Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask300\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask299\",\"eTag\":\"0x8D7CB9359218235\",\"lastModified\":\"2020-03-18T23:23:21.2213813Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask299\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask298\",\"eTag\":\"0x8D7CB935922F8F7\",\"lastModified\":\"2020-03-18T23:23:21.2309751Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask298\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask297\",\"eTag\":\"0x8D7CB935924720B\",\"lastModified\":\"2020-03-18T23:23:21.2406283Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask297\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask296\",\"eTag\":\"0x8D7CB935924E86A\",\"lastModified\":\"2020-03-18T23:23:21.2436586Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask296\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask295\",\"eTag\":\"0x8D7CB935925F2EE\",\"lastModified\":\"2020-03-18T23:23:21.2504814Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask295\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask294\",\"eTag\":\"0x8D7CB9359276EB4\",\"lastModified\":\"2020-03-18T23:23:21.2602036Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask294\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask293\",\"eTag\":\"0x8D7CB935928E547\",\"lastModified\":\"2020-03-18T23:23:21.2697927Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask293\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask292\",\"eTag\":\"0x8D7CB93592A610D\",\"lastModified\":\"2020-03-18T23:23:21.2795149Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask292\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask291\",\"eTag\":\"0x8D7CB93592BDF70\",\"lastModified\":\"2020-03-18T23:23:21.289304Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask291\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask290\",\"eTag\":\"0x8D7CB93592D4C6C\",\"lastModified\":\"2020-03-18T23:23:21.2986476Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask290\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask288\",\"eTag\":\"0x8D7CB93592ED301\",\"lastModified\":\"2020-03-18T23:23:21.3086465Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask288\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask289\",\"eTag\":\"0x8D7CB93592EBA92\",\"lastModified\":\"2020-03-18T23:23:21.308021Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask289\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask287\",\"eTag\":\"0x8D7CB9359302BC0\",\"lastModified\":\"2020-03-18T23:23:21.317472Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask287\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask286\",\"eTag\":\"0x8D7CB9359319FC9\",\"lastModified\":\"2020-03-18T23:23:21.3269961Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask286\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask285\",\"eTag\":\"0x8D7CB9359330BDF\",\"lastModified\":\"2020-03-18T23:23:21.3363167Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask285\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask284\",\"eTag\":\"0x8D7CB9359349F44\",\"lastModified\":\"2020-03-18T23:23:21.3466436Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask284\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask283\",\"eTag\":\"0x8D7CB9359353C7D\",\"lastModified\":\"2020-03-18T23:23:21.3506685Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask283\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -72540,9 +72540,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:46 GMT + - Wed, 18 Mar 2020 23:23:20 GMT request-id: - - d3510c35-8edb-423a-ae29-f70fee2424ef + - ce434c5d-e113-460f-aff1-d6ec62c1836e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -77618,67 +77618,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:47 GMT + - Wed, 18 Mar 2020 23:23:21 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask282\",\"eTag\":\"0x8D71AD2438BE55C\",\"lastModified\":\"2019-08-07T00:57:47.4910556Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask282\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask280\",\"eTag\":\"0x8D71AD2438E0836\",\"lastModified\":\"2019-08-07T00:57:47.505055Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask280\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask281\",\"eTag\":\"0x8D71AD2438D450C\",\"lastModified\":\"2019-08-07T00:57:47.5000588Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask281\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask279\",\"eTag\":\"0x8D71AD2438F40AA\",\"lastModified\":\"2019-08-07T00:57:47.5130538Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask279\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask278\",\"eTag\":\"0x8D71AD24390A026\",\"lastModified\":\"2019-08-07T00:57:47.5220518Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask278\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask276\",\"eTag\":\"0x8D71AD24392F2CE\",\"lastModified\":\"2019-08-07T00:57:47.537275Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask276\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask277\",\"eTag\":\"0x8D71AD2439497D2\",\"lastModified\":\"2019-08-07T00:57:47.548053Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask277\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask275\",\"eTag\":\"0x8D71AD24395B908\",\"lastModified\":\"2019-08-07T00:57:47.5554568Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask275\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask274\",\"eTag\":\"0x8D71AD2439756EA\",\"lastModified\":\"2019-08-07T00:57:47.5660522Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask274\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask272\",\"eTag\":\"0x8D71AD2439A640F\",\"lastModified\":\"2019-08-07T00:57:47.5860495Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask272\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask273\",\"eTag\":\"0x8D71AD24398DD7D\",\"lastModified\":\"2019-08-07T00:57:47.5760509Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask273\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask271\",\"eTag\":\"0x8D71AD2439B83CF\",\"lastModified\":\"2019-08-07T00:57:47.5934159Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask271\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask270\",\"eTag\":\"0x8D71AD2439CB458\",\"lastModified\":\"2019-08-07T00:57:47.601212Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask270\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask269\",\"eTag\":\"0x8D71AD2439E34B2\",\"lastModified\":\"2019-08-07T00:57:47.6110514Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask269\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask268\",\"eTag\":\"0x8D71AD243A0EE8E\",\"lastModified\":\"2019-08-07T00:57:47.6289166Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask268\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask267\",\"eTag\":\"0x8D71AD243A0F3B9\",\"lastModified\":\"2019-08-07T00:57:47.6290489Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask267\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask266\",\"eTag\":\"0x8D71AD243A233BF\",\"lastModified\":\"2019-08-07T00:57:47.6372415Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask266\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask265\",\"eTag\":\"0x8D71AD243A3DA1C\",\"lastModified\":\"2019-08-07T00:57:47.648054Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask265\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask264\",\"eTag\":\"0x8D71AD243A4DF8F\",\"lastModified\":\"2019-08-07T00:57:47.6547471Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask264\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask263\",\"eTag\":\"0x8D71AD243A64AE9\",\"lastModified\":\"2019-08-07T00:57:47.6640489Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask263\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask262\",\"eTag\":\"0x8D71AD243A793FD\",\"lastModified\":\"2019-08-07T00:57:47.6724733Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask262\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask261\",\"eTag\":\"0x8D71AD243A9A67D\",\"lastModified\":\"2019-08-07T00:57:47.6860541Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask261\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask260\",\"eTag\":\"0x8D71AD243AA69DB\",\"lastModified\":\"2019-08-07T00:57:47.6910555Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask260\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask258\",\"eTag\":\"0x8D71AD243AD01F7\",\"lastModified\":\"2019-08-07T00:57:47.7080567Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask258\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask257\",\"eTag\":\"0x8D71AD243AE616C\",\"lastModified\":\"2019-08-07T00:57:47.717054Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask257\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask259\",\"eTag\":\"0x8D71AD243ABC9A9\",\"lastModified\":\"2019-08-07T00:57:47.7000617Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask259\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask255\",\"eTag\":\"0x8D71AD243B14784\",\"lastModified\":\"2019-08-07T00:57:47.7360516Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask255\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask254\",\"eTag\":\"0x8D71AD243B20AE1\",\"lastModified\":\"2019-08-07T00:57:47.7410529Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask254\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask256\",\"eTag\":\"0x8D71AD243B120B1\",\"lastModified\":\"2019-08-07T00:57:47.7350577Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask256\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask253\",\"eTag\":\"0x8D71AD243B391A7\",\"lastModified\":\"2019-08-07T00:57:47.7510567Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask253\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask252\",\"eTag\":\"0x8D71AD243B6147C\",\"lastModified\":\"2019-08-07T00:57:47.7675132Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask252\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask251\",\"eTag\":\"0x8D71AD243B74064\",\"lastModified\":\"2019-08-07T00:57:47.7751908Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask251\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask249\",\"eTag\":\"0x8D71AD243B8C1C2\",\"lastModified\":\"2019-08-07T00:57:47.7850562Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask249\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask250\",\"eTag\":\"0x8D71AD243B84C82\",\"lastModified\":\"2019-08-07T00:57:47.7820546Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask250\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask248\",\"eTag\":\"0x8D71AD243BA2166\",\"lastModified\":\"2019-08-07T00:57:47.7940582Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask248\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask247\",\"eTag\":\"0x8D71AD243BBA7CE\",\"lastModified\":\"2019-08-07T00:57:47.8040526Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask247\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask246\",\"eTag\":\"0x8D71AD243BD074F\",\"lastModified\":\"2019-08-07T00:57:47.8130511Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask246\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask244\",\"eTag\":\"0x8D71AD243C089B3\",\"lastModified\":\"2019-08-07T00:57:47.8360499Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask244\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask243\",\"eTag\":\"0x8D71AD243C17564\",\"lastModified\":\"2019-08-07T00:57:47.8420836Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask243\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask245\",\"eTag\":\"0x8D71AD243BEDC38\",\"lastModified\":\"2019-08-07T00:57:47.8250552Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask245\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask242\",\"eTag\":\"0x8D71AD243C36FF5\",\"lastModified\":\"2019-08-07T00:57:47.8550517Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask242\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask241\",\"eTag\":\"0x8D71AD243C7DCCC\",\"lastModified\":\"2019-08-07T00:57:47.8840524Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask241\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask239\",\"eTag\":\"0x8D71AD243C82AD4\",\"lastModified\":\"2019-08-07T00:57:47.88605Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask239\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask238\",\"eTag\":\"0x8D71AD243C82AD4\",\"lastModified\":\"2019-08-07T00:57:47.88605Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask238\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask240\",\"eTag\":\"0x8D71AD243C98A8D\",\"lastModified\":\"2019-08-07T00:57:47.8950541Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask240\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask237\",\"eTag\":\"0x8D71AD243CAEA1E\",\"lastModified\":\"2019-08-07T00:57:47.9040542Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask237\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask236\",\"eTag\":\"0x8D71AD243CBEDD4\",\"lastModified\":\"2019-08-07T00:57:47.9107028Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask236\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask235\",\"eTag\":\"0x8D71AD243CDF77D\",\"lastModified\":\"2019-08-07T00:57:47.9240573Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask235\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask234\",\"eTag\":\"0x8D71AD243CEBA85\",\"lastModified\":\"2019-08-07T00:57:47.9290501Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask234\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask233\",\"eTag\":\"0x8D71AD243D042A0\",\"lastModified\":\"2019-08-07T00:57:47.939088Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask233\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask282\",\"eTag\":\"0x8D7CB9359972C00\",\"lastModified\":\"2020-03-18T23:23:21.9924992Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask282\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask279\",\"eTag\":\"0x8D7CB935997522F\",\"lastModified\":\"2020-03-18T23:23:21.9934767Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask279\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask277\",\"eTag\":\"0x8D7CB935997A04C\",\"lastModified\":\"2020-03-18T23:23:21.9954764Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask277\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask280\",\"eTag\":\"0x8D7CB9359977935\",\"lastModified\":\"2020-03-18T23:23:21.9944757Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask280\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask276\",\"eTag\":\"0x8D7CB935997C75E\",\"lastModified\":\"2020-03-18T23:23:21.9964766Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask276\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask278\",\"eTag\":\"0x8D7CB935997A04C\",\"lastModified\":\"2020-03-18T23:23:21.9954764Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask278\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask281\",\"eTag\":\"0x8D7CB9359977935\",\"lastModified\":\"2020-03-18T23:23:21.9944757Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask281\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask273\",\"eTag\":\"0x8D7CB93599A1121\",\"lastModified\":\"2020-03-18T23:23:22.0114721Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask273\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask274\",\"eTag\":\"0x8D7CB9359994DD5\",\"lastModified\":\"2020-03-18T23:23:22.0064725Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask274\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask275\",\"eTag\":\"0x8D7CB93599926D8\",\"lastModified\":\"2020-03-18T23:23:22.0054744Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask275\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask272\",\"eTag\":\"0x8D7CB93599B2E10\",\"lastModified\":\"2020-03-18T23:23:22.0187664Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask272\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask271\",\"eTag\":\"0x8D7CB93599B70B8\",\"lastModified\":\"2020-03-18T23:23:22.0204728Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask271\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask270\",\"eTag\":\"0x8D7CB93599D45D8\",\"lastModified\":\"2020-03-18T23:23:22.0324824Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask270\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask269\",\"eTag\":\"0x8D7CB93599E2AC5\",\"lastModified\":\"2020-03-18T23:23:22.0383429Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask269\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask267\",\"eTag\":\"0x8D7CB9359A12A1E\",\"lastModified\":\"2020-03-18T23:23:22.057987Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask267\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask268\",\"eTag\":\"0x8D7CB93599FABBB\",\"lastModified\":\"2020-03-18T23:23:22.0481979Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask268\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask266\",\"eTag\":\"0x8D7CB9359A2A34A\",\"lastModified\":\"2020-03-18T23:23:22.0676426Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask266\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask265\",\"eTag\":\"0x8D7CB9359A426DF\",\"lastModified\":\"2020-03-18T23:23:22.0775647Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask265\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask264\",\"eTag\":\"0x8D7CB9359A5AD0D\",\"lastModified\":\"2020-03-18T23:23:22.0875533Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask264\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask263\",\"eTag\":\"0x8D7CB9359A72E08\",\"lastModified\":\"2020-03-18T23:23:22.0974088Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask263\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask262\",\"eTag\":\"0x8D7CB9359A8B1A1\",\"lastModified\":\"2020-03-18T23:23:22.1073313Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask262\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask261\",\"eTag\":\"0x8D7CB9359A8B68E\",\"lastModified\":\"2020-03-18T23:23:22.1074574Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask261\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask260\",\"eTag\":\"0x8D7CB9359AA3D21\",\"lastModified\":\"2020-03-18T23:23:22.1174561Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask260\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask259\",\"eTag\":\"0x8D7CB9359ABBB9D\",\"lastModified\":\"2020-03-18T23:23:22.1272477Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask259\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask258\",\"eTag\":\"0x8D7CB9359AD7163\",\"lastModified\":\"2020-03-18T23:23:22.1384547Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask258\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask257\",\"eTag\":\"0x8D7CB9359AE34E7\",\"lastModified\":\"2020-03-18T23:23:22.1434599Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask257\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask255\",\"eTag\":\"0x8D7CB9359AF461A\",\"lastModified\":\"2020-03-18T23:23:22.1504538Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask255\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask256\",\"eTag\":\"0x8D7CB9359AEB207\",\"lastModified\":\"2020-03-18T23:23:22.1466631Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask256\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask254\",\"eTag\":\"0x8D7CB9359B03682\",\"lastModified\":\"2020-03-18T23:23:22.1566082Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask254\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask252\",\"eTag\":\"0x8D7CB9359B33349\",\"lastModified\":\"2020-03-18T23:23:22.1761865Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask252\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask250\",\"eTag\":\"0x8D7CB9359B3B2C9\",\"lastModified\":\"2020-03-18T23:23:22.1794505Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask250\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask251\",\"eTag\":\"0x8D7CB9359B4B1E4\",\"lastModified\":\"2020-03-18T23:23:22.1859812Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask251\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask248\",\"eTag\":\"0x8D7CB9359B6BFF6\",\"lastModified\":\"2020-03-18T23:23:22.1994486Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask248\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask249\",\"eTag\":\"0x8D7CB9359B7AE68\",\"lastModified\":\"2020-03-18T23:23:22.2055528Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask249\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask247\",\"eTag\":\"0x8D7CB9359B930CE\",\"lastModified\":\"2020-03-18T23:23:22.2154446Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask247\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask246\",\"eTag\":\"0x8D7CB9359BAB05A\",\"lastModified\":\"2020-03-18T23:23:22.2252634Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask246\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask245\",\"eTag\":\"0x8D7CB9359BC298F\",\"lastModified\":\"2020-03-18T23:23:22.2349199Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask245\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask243\",\"eTag\":\"0x8D7CB9359BE39BD\",\"lastModified\":\"2020-03-18T23:23:22.2484413Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask243\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask244\",\"eTag\":\"0x8D7CB9359BDB27A\",\"lastModified\":\"2020-03-18T23:23:22.2449786Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask244\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask241\",\"eTag\":\"0x8D7CB9359C0B6DE\",\"lastModified\":\"2020-03-18T23:23:22.2647518Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask241\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask240\",\"eTag\":\"0x8D7CB9359C23A75\",\"lastModified\":\"2020-03-18T23:23:22.2746741Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask240\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask242\",\"eTag\":\"0x8D7CB9359BF334C\",\"lastModified\":\"2020-03-18T23:23:22.25483Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask242\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask253\",\"eTag\":\"0x8D7CB9359C2CD61\",\"lastModified\":\"2020-03-18T23:23:22.2784353Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask253\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask235\",\"eTag\":\"0x8D7CB9359C87386\",\"lastModified\":\"2020-03-18T23:23:22.3154566Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask235\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask238\",\"eTag\":\"0x8D7CB9359C5443A\",\"lastModified\":\"2020-03-18T23:23:22.294585Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask238\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask236\",\"eTag\":\"0x8D7CB9359C6CA68\",\"lastModified\":\"2020-03-18T23:23:22.3045736Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask236\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask237\",\"eTag\":\"0x8D7CB9359C6C7D0\",\"lastModified\":\"2020-03-18T23:23:22.3045072Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask237\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask239\",\"eTag\":\"0x8D7CB9359C3C350\",\"lastModified\":\"2020-03-18T23:23:22.2847312Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask239\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask234\",\"eTag\":\"0x8D7CB9359CA202D\",\"lastModified\":\"2020-03-18T23:23:22.3264301Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask234\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask233\",\"eTag\":\"0x8D7CB9359CABCBA\",\"lastModified\":\"2020-03-18T23:23:22.3304378Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask233\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -77686,9 +77686,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:47 GMT + - Wed, 18 Mar 2020 23:23:21 GMT request-id: - - 794a5e07-2b2a-42ba-958e-714e2f9a1ce8 + - 6cb4b6bd-2acb-472d-81d9-1f3cecbbfa1b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -82764,67 +82764,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:48 GMT + - Wed, 18 Mar 2020 23:23:22 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask232\",\"eTag\":\"0x8D71AD24446E430\",\"lastModified\":\"2019-08-07T00:57:48.7165488Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask232\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask231\",\"eTag\":\"0x8D71AD2444843B8\",\"lastModified\":\"2019-08-07T00:57:48.725548Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask231\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask230\",\"eTag\":\"0x8D71AD24449CA53\",\"lastModified\":\"2019-08-07T00:57:48.7355475Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask230\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask229\",\"eTag\":\"0x8D71AD2444C8976\",\"lastModified\":\"2019-08-07T00:57:48.7535478Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask229\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask225\",\"eTag\":\"0x8D71AD244531957\",\"lastModified\":\"2019-08-07T00:57:48.7965527Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask225\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask227\",\"eTag\":\"0x8D71AD24452F244\",\"lastModified\":\"2019-08-07T00:57:48.7955524Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask227\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask226\",\"eTag\":\"0x8D71AD24452CB22\",\"lastModified\":\"2019-08-07T00:57:48.7945506Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask226\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask228\",\"eTag\":\"0x8D71AD24452F244\",\"lastModified\":\"2019-08-07T00:57:48.7955524Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask228\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask224\",\"eTag\":\"0x8D71AD2445403B5\",\"lastModified\":\"2019-08-07T00:57:48.8025525Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask224\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask222\",\"eTag\":\"0x8D71AD24455B160\",\"lastModified\":\"2019-08-07T00:57:48.813552Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask222\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask223\",\"eTag\":\"0x8D71AD244558E3E\",\"lastModified\":\"2019-08-07T00:57:48.8126526Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask223\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask221\",\"eTag\":\"0x8D71AD24456E9ED\",\"lastModified\":\"2019-08-07T00:57:48.8215533Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask221\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask220\",\"eTag\":\"0x8D71AD2445A0116\",\"lastModified\":\"2019-08-07T00:57:48.841807Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask220\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask219\",\"eTag\":\"0x8D71AD2445B2FE9\",\"lastModified\":\"2019-08-07T00:57:48.8495593Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask219\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask218\",\"eTag\":\"0x8D71AD2445C8F6F\",\"lastModified\":\"2019-08-07T00:57:48.8585583Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask218\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask217\",\"eTag\":\"0x8D71AD2445E15C0\",\"lastModified\":\"2019-08-07T00:57:48.8685504Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask217\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask216\",\"eTag\":\"0x8D71AD244602271\",\"lastModified\":\"2019-08-07T00:57:48.8819825Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask216\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask215\",\"eTag\":\"0x8D71AD24460D4E1\",\"lastModified\":\"2019-08-07T00:57:48.8865505Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask215\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask214\",\"eTag\":\"0x8D71AD2446234CD\",\"lastModified\":\"2019-08-07T00:57:48.8955597Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask214\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask213\",\"eTag\":\"0x8D71AD2446458CD\",\"lastModified\":\"2019-08-07T00:57:48.9095885Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask213\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask212\",\"eTag\":\"0x8D71AD244651AA9\",\"lastModified\":\"2019-08-07T00:57:48.9145513Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask212\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask210\",\"eTag\":\"0x8D71AD2446604FC\",\"lastModified\":\"2019-08-07T00:57:48.92055Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask210\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask211\",\"eTag\":\"0x8D71AD24465E2E2\",\"lastModified\":\"2019-08-07T00:57:48.919677Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask211\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask209\",\"eTag\":\"0x8D71AD244689D28\",\"lastModified\":\"2019-08-07T00:57:48.9375528Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask209\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask208\",\"eTag\":\"0x8D71AD244691236\",\"lastModified\":\"2019-08-07T00:57:48.9405494Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask208\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask207\",\"eTag\":\"0x8D71AD2446A71D3\",\"lastModified\":\"2019-08-07T00:57:48.9495507Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask207\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask206\",\"eTag\":\"0x8D71AD2446BD16A\",\"lastModified\":\"2019-08-07T00:57:48.9585514Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask206\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask205\",\"eTag\":\"0x8D71AD2446BD16A\",\"lastModified\":\"2019-08-07T00:57:48.9585514Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask205\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask204\",\"eTag\":\"0x8D71AD2446D57F9\",\"lastModified\":\"2019-08-07T00:57:48.9685497Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask204\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask199\",\"eTag\":\"0x8D71AD244759558\",\"lastModified\":\"2019-08-07T00:57:49.0225496Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask199\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask201\",\"eTag\":\"0x8D71AD244756C9D\",\"lastModified\":\"2019-08-07T00:57:49.0215069Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask201\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask200\",\"eTag\":\"0x8D71AD244756E30\",\"lastModified\":\"2019-08-07T00:57:49.0215472Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask200\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask202\",\"eTag\":\"0x8D71AD244759558\",\"lastModified\":\"2019-08-07T00:57:49.0225496Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask202\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask198\",\"eTag\":\"0x8D71AD24475E36A\",\"lastModified\":\"2019-08-07T00:57:49.0245482Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask198\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask197\",\"eTag\":\"0x8D71AD24478A287\",\"lastModified\":\"2019-08-07T00:57:49.0425479Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask197\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask196\",\"eTag\":\"0x8D71AD24478A287\",\"lastModified\":\"2019-08-07T00:57:49.0425479Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask196\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask203\",\"eTag\":\"0x8D71AD2447483EA\",\"lastModified\":\"2019-08-07T00:57:49.0155498Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask203\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask190\",\"eTag\":\"0x8D71AD244812E23\",\"lastModified\":\"2019-08-07T00:57:49.0985507Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask190\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask194\",\"eTag\":\"0x8D71AD244812E23\",\"lastModified\":\"2019-08-07T00:57:49.0985507Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask194\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask195\",\"eTag\":\"0x8D71AD24481071E\",\"lastModified\":\"2019-08-07T00:57:49.0975518Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask195\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask191\",\"eTag\":\"0x8D71AD24481F456\",\"lastModified\":\"2019-08-07T00:57:49.1036246Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask191\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask192\",\"eTag\":\"0x8D71AD24482186D\",\"lastModified\":\"2019-08-07T00:57:49.1045485Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask192\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask193\",\"eTag\":\"0x8D71AD24481F456\",\"lastModified\":\"2019-08-07T00:57:49.1036246Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask193\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask189\",\"eTag\":\"0x8D71AD2448266AA\",\"lastModified\":\"2019-08-07T00:57:49.1065514Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask189\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask188\",\"eTag\":\"0x8D71AD24485816D\",\"lastModified\":\"2019-08-07T00:57:49.1268973Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask188\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask187\",\"eTag\":\"0x8D71AD244867243\",\"lastModified\":\"2019-08-07T00:57:49.1330627Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask187\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask186\",\"eTag\":\"0x8D71AD2448B193C\",\"lastModified\":\"2019-08-07T00:57:49.1635516Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask186\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask185\",\"eTag\":\"0x8D71AD2448AF223\",\"lastModified\":\"2019-08-07T00:57:49.1625507Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask185\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask184\",\"eTag\":\"0x8D71AD2448B193C\",\"lastModified\":\"2019-08-07T00:57:49.1635516Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask184\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask183\",\"eTag\":\"0x8D71AD2448C78E5\",\"lastModified\":\"2019-08-07T00:57:49.1725541Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask183\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask232\",\"eTag\":\"0x8D7CB935A28F629\",\"lastModified\":\"2020-03-18T23:23:22.9479465Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask232\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask231\",\"eTag\":\"0x8D7CB935A2A55A7\",\"lastModified\":\"2020-03-18T23:23:22.9569447Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask231\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask230\",\"eTag\":\"0x8D7CB935A2F4893\",\"lastModified\":\"2020-03-18T23:23:22.9893779Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask230\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask229\",\"eTag\":\"0x8D7CB935A30A288\",\"lastModified\":\"2020-03-18T23:23:22.9982344Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask229\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask228\",\"eTag\":\"0x8D7CB935A31F9E4\",\"lastModified\":\"2020-03-18T23:23:23.0070244Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask228\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask227\",\"eTag\":\"0x8D7CB935A335612\",\"lastModified\":\"2020-03-18T23:23:23.0159378Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask227\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask225\",\"eTag\":\"0x8D7CB935A3503A8\",\"lastModified\":\"2020-03-18T23:23:23.0269352Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask225\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask226\",\"eTag\":\"0x8D7CB935A34DCBE\",\"lastModified\":\"2020-03-18T23:23:23.025939Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask226\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask224\",\"eTag\":\"0x8D7CB935A37576A\",\"lastModified\":\"2020-03-18T23:23:23.0421866Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask224\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask223\",\"eTag\":\"0x8D7CB935A38D85A\",\"lastModified\":\"2020-03-18T23:23:23.052041Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask223\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask222\",\"eTag\":\"0x8D7CB935A3A81C3\",\"lastModified\":\"2020-03-18T23:23:23.0629315Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask222\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask221\",\"eTag\":\"0x8D7CB935A3BDCE3\",\"lastModified\":\"2020-03-18T23:23:23.0718179Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask221\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask220\",\"eTag\":\"0x8D7CB935A3D67CB\",\"lastModified\":\"2020-03-18T23:23:23.0819275Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask220\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask219\",\"eTag\":\"0x8D7CB935A3EE6B9\",\"lastModified\":\"2020-03-18T23:23:23.0917305Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask219\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask218\",\"eTag\":\"0x8D7CB935A4067A5\",\"lastModified\":\"2020-03-18T23:23:23.1015845Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask218\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask217\",\"eTag\":\"0x8D7CB935A4074DF\",\"lastModified\":\"2020-03-18T23:23:23.1019231Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask217\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask216\",\"eTag\":\"0x8D7CB935A41F06C\",\"lastModified\":\"2020-03-18T23:23:23.1116396Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask216\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask215\",\"eTag\":\"0x8D7CB935A436ECE\",\"lastModified\":\"2020-03-18T23:23:23.1214286Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask215\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask214\",\"eTag\":\"0x8D7CB935A4508B7\",\"lastModified\":\"2020-03-18T23:23:23.1319223Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask214\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask213\",\"eTag\":\"0x8D7CB935A467616\",\"lastModified\":\"2020-03-18T23:23:23.1412758Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask213\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask212\",\"eTag\":\"0x8D7CB935A47F6F7\",\"lastModified\":\"2020-03-18T23:23:23.1511287Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask212\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask211\",\"eTag\":\"0x8D7CB935A4815C6\",\"lastModified\":\"2020-03-18T23:23:23.1519174Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask211\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask210\",\"eTag\":\"0x8D7CB935A497FBD\",\"lastModified\":\"2020-03-18T23:23:23.1611837Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask210\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask209\",\"eTag\":\"0x8D7CB935A4B00BA\",\"lastModified\":\"2020-03-18T23:23:23.1710394Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask209\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask208\",\"eTag\":\"0x8D7CB935A4C7F19\",\"lastModified\":\"2020-03-18T23:23:23.1808281Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask208\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask207\",\"eTag\":\"0x8D7CB935A4E0925\",\"lastModified\":\"2020-03-18T23:23:23.1909157Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask207\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask206\",\"eTag\":\"0x8D7CB935A4FB713\",\"lastModified\":\"2020-03-18T23:23:23.2019219Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask206\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask205\",\"eTag\":\"0x8D7CB935A4FB713\",\"lastModified\":\"2020-03-18T23:23:23.2019219Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask205\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask204\",\"eTag\":\"0x8D7CB935A5104A6\",\"lastModified\":\"2020-03-18T23:23:23.2104614Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask204\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask203\",\"eTag\":\"0x8D7CB935A528AD5\",\"lastModified\":\"2020-03-18T23:23:23.2204501Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask203\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask202\",\"eTag\":\"0x8D7CB935A540BD0\",\"lastModified\":\"2020-03-18T23:23:23.2303056Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask202\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask201\",\"eTag\":\"0x8D7CB935A558A3A\",\"lastModified\":\"2020-03-18T23:23:23.2400954Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask201\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask200\",\"eTag\":\"0x8D7CB935A570B44\",\"lastModified\":\"2020-03-18T23:23:23.2499524Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask200\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask199\",\"eTag\":\"0x8D7CB935A588C29\",\"lastModified\":\"2020-03-18T23:23:23.2598057Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask199\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask198\",\"eTag\":\"0x8D7CB935A5893F6\",\"lastModified\":\"2020-03-18T23:23:23.2600054Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask198\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask197\",\"eTag\":\"0x8D7CB935A5A3DA8\",\"lastModified\":\"2020-03-18T23:23:23.2709032Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask197\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask196\",\"eTag\":\"0x8D7CB935A5B90BA\",\"lastModified\":\"2020-03-18T23:23:23.2795834Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask196\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask195\",\"eTag\":\"0x8D7CB935A5D1702\",\"lastModified\":\"2020-03-18T23:23:23.2895746Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask195\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask193\",\"eTag\":\"0x8D7CB935A5EAA43\",\"lastModified\":\"2020-03-18T23:23:23.2998979Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask193\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask194\",\"eTag\":\"0x8D7CB935A5E958B\",\"lastModified\":\"2020-03-18T23:23:23.2993675Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask194\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask192\",\"eTag\":\"0x8D7CB935A601645\",\"lastModified\":\"2020-03-18T23:23:23.3092165Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask192\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask191\",\"eTag\":\"0x8D7CB935A619742\",\"lastModified\":\"2020-03-18T23:23:23.3190722Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask191\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask190\",\"eTag\":\"0x8D7CB935A631ADE\",\"lastModified\":\"2020-03-18T23:23:23.328995Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask190\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask189\",\"eTag\":\"0x8D7CB935A63DA85\",\"lastModified\":\"2020-03-18T23:23:23.3339013Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask189\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask188\",\"eTag\":\"0x8D7CB935A662421\",\"lastModified\":\"2020-03-18T23:23:23.3488929Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask188\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask187\",\"eTag\":\"0x8D7CB935A679DC9\",\"lastModified\":\"2020-03-18T23:23:23.3585609Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask187\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask186\",\"eTag\":\"0x8D7CB935A691C28\",\"lastModified\":\"2020-03-18T23:23:23.3683496Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask186\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask185\",\"eTag\":\"0x8D7CB935A69313D\",\"lastModified\":\"2020-03-18T23:23:23.3688893Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask185\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask184\",\"eTag\":\"0x8D7CB935A6AA259\",\"lastModified\":\"2020-03-18T23:23:23.3783385Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask184\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask183\",\"eTag\":\"0x8D7CB935A6B7C0C\",\"lastModified\":\"2020-03-18T23:23:23.3839116Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask183\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -82832,9 +82832,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:48 GMT + - Wed, 18 Mar 2020 23:23:22 GMT request-id: - - c5434de1-053c-48c9-a9d6-d035823e563b + - 176a166a-2024-4a16-b241-5b3ee207b0b0 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -87910,67 +87910,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:49 GMT + - Wed, 18 Mar 2020 23:23:23 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask182\",\"eTag\":\"0x8D71AD2450191EF\",\"lastModified\":\"2019-08-07T00:57:49.9399663Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask182\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask181\",\"eTag\":\"0x8D71AD24502F1D8\",\"lastModified\":\"2019-08-07T00:57:49.9489752Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask181\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask180\",\"eTag\":\"0x8D71AD24504515A\",\"lastModified\":\"2019-08-07T00:57:49.9579738Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask180\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask179\",\"eTag\":\"0x8D71AD24505D7B9\",\"lastModified\":\"2019-08-07T00:57:49.9679673Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask179\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask178\",\"eTag\":\"0x8D71AD245075E5C\",\"lastModified\":\"2019-08-07T00:57:49.9779676Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask178\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask177\",\"eTag\":\"0x8D71AD245089D20\",\"lastModified\":\"2019-08-07T00:57:49.986128Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask177\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask176\",\"eTag\":\"0x8D71AD2450A1D80\",\"lastModified\":\"2019-08-07T00:57:49.995968Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask176\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask175\",\"eTag\":\"0x8D71AD2450B7D46\",\"lastModified\":\"2019-08-07T00:57:50.0049734Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask175\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask174\",\"eTag\":\"0x8D71AD2450BCB18\",\"lastModified\":\"2019-08-07T00:57:50.0069656Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask174\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask173\",\"eTag\":\"0x8D71AD2450D2A97\",\"lastModified\":\"2019-08-07T00:57:50.0159639Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask173\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask172\",\"eTag\":\"0x8D71AD2450ED862\",\"lastModified\":\"2019-08-07T00:57:50.0269666Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask172\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask171\",\"eTag\":\"0x8D71AD2450EFF67\",\"lastModified\":\"2019-08-07T00:57:50.0279655Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask171\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask170\",\"eTag\":\"0x8D71AD2451010D5\",\"lastModified\":\"2019-08-07T00:57:50.0349653Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask170\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask169\",\"eTag\":\"0x8D71AD2451281BE\",\"lastModified\":\"2019-08-07T00:57:50.050963Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask169\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask168\",\"eTag\":\"0x8D71AD24513210E\",\"lastModified\":\"2019-08-07T00:57:50.0550414Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask168\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask167\",\"eTag\":\"0x8D71AD245145696\",\"lastModified\":\"2019-08-07T00:57:50.0629654Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask167\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask166\",\"eTag\":\"0x8D71AD24515DDAC\",\"lastModified\":\"2019-08-07T00:57:50.0729772Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask166\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask165\",\"eTag\":\"0x8D71AD245187843\",\"lastModified\":\"2019-08-07T00:57:50.0900419Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask165\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask164\",\"eTag\":\"0x8D71AD24519ADED\",\"lastModified\":\"2019-08-07T00:57:50.0979693Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask164\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask163\",\"eTag\":\"0x8D71AD2451AE681\",\"lastModified\":\"2019-08-07T00:57:50.1059713Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask163\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask161\",\"eTag\":\"0x8D71AD2451DA579\",\"lastModified\":\"2019-08-07T00:57:50.1239673Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask161\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask162\",\"eTag\":\"0x8D71AD2451DA579\",\"lastModified\":\"2019-08-07T00:57:50.1239673Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask162\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask160\",\"eTag\":\"0x8D71AD2451F050D\",\"lastModified\":\"2019-08-07T00:57:50.1329677Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask160\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask159\",\"eTag\":\"0x8D71AD2452064C4\",\"lastModified\":\"2019-08-07T00:57:50.1419716Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask159\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask158\",\"eTag\":\"0x8D71AD245234AB4\",\"lastModified\":\"2019-08-07T00:57:50.1609652Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask158\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask157\",\"eTag\":\"0x8D71AD245234AB4\",\"lastModified\":\"2019-08-07T00:57:50.1609652Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask157\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask156\",\"eTag\":\"0x8D71AD24524AA96\",\"lastModified\":\"2019-08-07T00:57:50.1699734Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask156\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask155\",\"eTag\":\"0x8D71AD245260A4B\",\"lastModified\":\"2019-08-07T00:57:50.1789771Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask155\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask154\",\"eTag\":\"0x8D71AD245279078\",\"lastModified\":\"2019-08-07T00:57:50.1889656Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask154\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask153\",\"eTag\":\"0x8D71AD24528F13B\",\"lastModified\":\"2019-08-07T00:57:50.1979963Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask153\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask147\",\"eTag\":\"0x8D71AD2452F3196\",\"lastModified\":\"2019-08-07T00:57:50.2389654Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask147\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask149\",\"eTag\":\"0x8D71AD2453042F1\",\"lastModified\":\"2019-08-07T00:57:50.2459633Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask149\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask152\",\"eTag\":\"0x8D71AD2452F3196\",\"lastModified\":\"2019-08-07T00:57:50.2389654Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask152\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask150\",\"eTag\":\"0x8D71AD2453029C2\",\"lastModified\":\"2019-08-07T00:57:50.2453186Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask150\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask146\",\"eTag\":\"0x8D71AD24530B822\",\"lastModified\":\"2019-08-07T00:57:50.2489634Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask146\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask151\",\"eTag\":\"0x8D71AD2452F3196\",\"lastModified\":\"2019-08-07T00:57:50.2389654Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask151\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask145\",\"eTag\":\"0x8D71AD2453217B9\",\"lastModified\":\"2019-08-07T00:57:50.2579641Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask145\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask148\",\"eTag\":\"0x8D71AD2453451CD\",\"lastModified\":\"2019-08-07T00:57:50.2725581Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask148\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask144\",\"eTag\":\"0x8D71AD245337742\",\"lastModified\":\"2019-08-07T00:57:50.2669634Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask144\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask143\",\"eTag\":\"0x8D71AD24534D6D4\",\"lastModified\":\"2019-08-07T00:57:50.2759636Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask143\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask142\",\"eTag\":\"0x8D71AD24538F583\",\"lastModified\":\"2019-08-07T00:57:50.3029635Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask142\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask141\",\"eTag\":\"0x8D71AD2453A2E34\",\"lastModified\":\"2019-08-07T00:57:50.3109684Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask141\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask140\",\"eTag\":\"0x8D71AD2453D1462\",\"lastModified\":\"2019-08-07T00:57:50.3299682Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask140\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask139\",\"eTag\":\"0x8D71AD2453D1462\",\"lastModified\":\"2019-08-07T00:57:50.3299682Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask139\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask138\",\"eTag\":\"0x8D71AD2453E73DF\",\"lastModified\":\"2019-08-07T00:57:50.3389663Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask138\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask137\",\"eTag\":\"0x8D71AD24541A80F\",\"lastModified\":\"2019-08-07T00:57:50.3599631Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask137\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask136\",\"eTag\":\"0x8D71AD2454307BA\",\"lastModified\":\"2019-08-07T00:57:50.3689658Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask136\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask135\",\"eTag\":\"0x8D71AD2454307BA\",\"lastModified\":\"2019-08-07T00:57:50.3689658Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask135\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask134\",\"eTag\":\"0x8D71AD24544190E\",\"lastModified\":\"2019-08-07T00:57:50.375963Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask134\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask133\",\"eTag\":\"0x8D71AD245455CA1\",\"lastModified\":\"2019-08-07T00:57:50.3842465Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask133\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask182\",\"eTag\":\"0x8D7CB935ACD10E3\",\"lastModified\":\"2020-03-18T23:23:24.0234211Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask182\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask181\",\"eTag\":\"0x8D7CB935ACCE99C\",\"lastModified\":\"2020-03-18T23:23:24.0224156Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask181\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask180\",\"eTag\":\"0x8D7CB935ACD37C9\",\"lastModified\":\"2020-03-18T23:23:24.0244169Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask180\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask179\",\"eTag\":\"0x8D7CB935ACEBE57\",\"lastModified\":\"2020-03-18T23:23:24.0344151Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask179\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask178\",\"eTag\":\"0x8D7CB935AD044FB\",\"lastModified\":\"2020-03-18T23:23:24.0444155Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask178\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask177\",\"eTag\":\"0x8D7CB935AD27E2D\",\"lastModified\":\"2020-03-18T23:23:24.0589869Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask177\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask175\",\"eTag\":\"0x8D7CB935AD5EA21\",\"lastModified\":\"2020-03-18T23:23:24.0814113Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask175\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask176\",\"eTag\":\"0x8D7CB935AD3EEE4\",\"lastModified\":\"2020-03-18T23:23:24.068426Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask176\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask173\",\"eTag\":\"0x8D7CB935AD7228B\",\"lastModified\":\"2020-03-18T23:23:24.0894091Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask173\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask174\",\"eTag\":\"0x8D7CB935AD7228B\",\"lastModified\":\"2020-03-18T23:23:24.0894091Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask174\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask172\",\"eTag\":\"0x8D7CB935AD8A930\",\"lastModified\":\"2020-03-18T23:23:24.0994096Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask172\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask170\",\"eTag\":\"0x8D7CB935ADA2FC2\",\"lastModified\":\"2020-03-18T23:23:24.1094082Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask170\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask171\",\"eTag\":\"0x8D7CB935ADA2FC2\",\"lastModified\":\"2020-03-18T23:23:24.1094082Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask171\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask169\",\"eTag\":\"0x8D7CB935ADBB658\",\"lastModified\":\"2020-03-18T23:23:24.1194072Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask169\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask168\",\"eTag\":\"0x8D7CB935ADD179E\",\"lastModified\":\"2020-03-18T23:23:24.128451Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask168\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask167\",\"eTag\":\"0x8D7CB935ADE9CB9\",\"lastModified\":\"2020-03-18T23:23:24.1384121Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask167\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask166\",\"eTag\":\"0x8D7CB935ADFD4D3\",\"lastModified\":\"2020-03-18T23:23:24.1464019Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask166\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask165\",\"eTag\":\"0x8D7CB935AE0C154\",\"lastModified\":\"2020-03-18T23:23:24.1524564Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask165\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask164\",\"eTag\":\"0x8D7CB935AE1AA7D\",\"lastModified\":\"2020-03-18T23:23:24.1584253Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask164\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask163\",\"eTag\":\"0x8D7CB935AE330F7\",\"lastModified\":\"2020-03-18T23:23:24.1684215Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask163\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask162\",\"eTag\":\"0x8D7CB935AE4B7D6\",\"lastModified\":\"2020-03-18T23:23:24.1784278Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask162\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask161\",\"eTag\":\"0x8D7CB935AE63F10\",\"lastModified\":\"2020-03-18T23:23:24.1884432Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask161\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask160\",\"eTag\":\"0x8D7CB935AE63F10\",\"lastModified\":\"2020-03-18T23:23:24.1884432Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask160\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask159\",\"eTag\":\"0x8D7CB935AE7C4FE\",\"lastModified\":\"2020-03-18T23:23:24.1984254Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask159\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask158\",\"eTag\":\"0x8D7CB935AE94B0C\",\"lastModified\":\"2020-03-18T23:23:24.2084108Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask158\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask157\",\"eTag\":\"0x8D7CB935AEAD121\",\"lastModified\":\"2020-03-18T23:23:24.2183969Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask157\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask156\",\"eTag\":\"0x8D7CB935AEC57C8\",\"lastModified\":\"2020-03-18T23:23:24.2283976Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask156\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask155\",\"eTag\":\"0x8D7CB935AEDDE67\",\"lastModified\":\"2020-03-18T23:23:24.2383975Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask155\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask154\",\"eTag\":\"0x8D7CB935AEF3EA1\",\"lastModified\":\"2020-03-18T23:23:24.2474145Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask154\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask153\",\"eTag\":\"0x8D7CB935AEFB4B7\",\"lastModified\":\"2020-03-18T23:23:24.2504375Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask153\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask152\",\"eTag\":\"0x8D7CB935AF0C60B\",\"lastModified\":\"2020-03-18T23:23:24.2574347Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask152\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask151\",\"eTag\":\"0x8D7CB935AF24B01\",\"lastModified\":\"2020-03-18T23:23:24.2673921Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask151\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask150\",\"eTag\":\"0x8D7CB935AF3D2C0\",\"lastModified\":\"2020-03-18T23:23:24.2774208Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask150\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask149\",\"eTag\":\"0x8D7CB935AF4BBD3\",\"lastModified\":\"2020-03-18T23:23:24.2833875Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask149\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask148\",\"eTag\":\"0x8D7CB935AF5594F\",\"lastModified\":\"2020-03-18T23:23:24.2874191Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask148\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask147\",\"eTag\":\"0x8D7CB935AF6DF9F\",\"lastModified\":\"2020-03-18T23:23:24.2974111Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask147\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask146\",\"eTag\":\"0x8D7CB935AF8661B\",\"lastModified\":\"2020-03-18T23:23:24.3074075Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask146\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask145\",\"eTag\":\"0x8D7CB935AF9EDE6\",\"lastModified\":\"2020-03-18T23:23:24.3174374Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask145\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask143\",\"eTag\":\"0x8D7CB935AFB996C\",\"lastModified\":\"2020-03-18T23:23:24.328382Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask143\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask144\",\"eTag\":\"0x8D7CB935AFB7360\",\"lastModified\":\"2020-03-18T23:23:24.327408Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask144\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask142\",\"eTag\":\"0x8D7CB935AFCF8EC\",\"lastModified\":\"2020-03-18T23:23:24.3373804Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask142\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask141\",\"eTag\":\"0x8D7CB935AFE7F8C\",\"lastModified\":\"2020-03-18T23:23:24.3473804Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask141\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask140\",\"eTag\":\"0x8D7CB935B00063A\",\"lastModified\":\"2020-03-18T23:23:24.3573818Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask140\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask139\",\"eTag\":\"0x8D7CB935B018CA7\",\"lastModified\":\"2020-03-18T23:23:24.3673767Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask139\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask138\",\"eTag\":\"0x8D7CB935B02C544\",\"lastModified\":\"2020-03-18T23:23:24.3753796Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask138\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask137\",\"eTag\":\"0x8D7CB935B02C544\",\"lastModified\":\"2020-03-18T23:23:24.3753796Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask137\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask136\",\"eTag\":\"0x8D7CB935B050FE6\",\"lastModified\":\"2020-03-18T23:23:24.3903974Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask136\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask134\",\"eTag\":\"0x8D7CB935B066E8A\",\"lastModified\":\"2020-03-18T23:23:24.3993738Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask134\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask135\",\"eTag\":\"0x8D7CB935B064912\",\"lastModified\":\"2020-03-18T23:23:24.3984146Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask135\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask133\",\"eTag\":\"0x8D7CB935B086B3B\",\"lastModified\":\"2020-03-18T23:23:24.4123963Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask133\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -87978,9 +87978,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:49 GMT + - Wed, 18 Mar 2020 23:23:24 GMT request-id: - - 6d9c6a8b-7b85-49bb-9fd7-5f94ae2e023a + - 47313bc0-c50e-4c6c-85ce-f800eca1fc02 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -93056,67 +93056,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:50 GMT + - Wed, 18 Mar 2020 23:23:24 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask132\",\"eTag\":\"0x8D71AD245C31991\",\"lastModified\":\"2019-08-07T00:57:51.2082833Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask132\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask131\",\"eTag\":\"0x8D71AD245C5DF43\",\"lastModified\":\"2019-08-07T00:57:51.2264515Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask131\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask130\",\"eTag\":\"0x8D71AD245C75F7D\",\"lastModified\":\"2019-08-07T00:57:51.2362877Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask130\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask129\",\"eTag\":\"0x8D71AD245C8BEE2\",\"lastModified\":\"2019-08-07T00:57:51.2452834Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask129\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask128\",\"eTag\":\"0x8D71AD245CA1E88\",\"lastModified\":\"2019-08-07T00:57:51.2542856Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask128\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask127\",\"eTag\":\"0x8D71AD245CCDDAA\",\"lastModified\":\"2019-08-07T00:57:51.2722858Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask127\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask126\",\"eTag\":\"0x8D71AD245CE1635\",\"lastModified\":\"2019-08-07T00:57:51.2802869Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask126\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask125\",\"eTag\":\"0x8D71AD245CF4ED0\",\"lastModified\":\"2019-08-07T00:57:51.2882896Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask125\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask124\",\"eTag\":\"0x8D71AD245D08769\",\"lastModified\":\"2019-08-07T00:57:51.2962921Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask124\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask123\",\"eTag\":\"0x8D71AD245D1E6D1\",\"lastModified\":\"2019-08-07T00:57:51.3052881Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask123\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask122\",\"eTag\":\"0x8D71AD245D36F58\",\"lastModified\":\"2019-08-07T00:57:51.3153368Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask122\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask121\",\"eTag\":\"0x8D71AD245D4F4C8\",\"lastModified\":\"2019-08-07T00:57:51.3253064Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask121\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask120\",\"eTag\":\"0x8D71AD245D654D3\",\"lastModified\":\"2019-08-07T00:57:51.3343187Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask120\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask119\",\"eTag\":\"0x8D71AD245D716E7\",\"lastModified\":\"2019-08-07T00:57:51.3392871Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask119\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask118\",\"eTag\":\"0x8D71AD245D8283C\",\"lastModified\":\"2019-08-07T00:57:51.3462844Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask118\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask117\",\"eTag\":\"0x8D71AD245D939C6\",\"lastModified\":\"2019-08-07T00:57:51.353287Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask117\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask116\",\"eTag\":\"0x8D71AD245D939C6\",\"lastModified\":\"2019-08-07T00:57:51.353287Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask116\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask115\",\"eTag\":\"0x8D71AD245DAC057\",\"lastModified\":\"2019-08-07T00:57:51.3632855Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask115\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask114\",\"eTag\":\"0x8D71AD245DE42C1\",\"lastModified\":\"2019-08-07T00:57:51.3862849Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask114\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask113\",\"eTag\":\"0x8D71AD245DFA25D\",\"lastModified\":\"2019-08-07T00:57:51.3952861Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask113\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask112\",\"eTag\":\"0x8D71AD245E0B3B0\",\"lastModified\":\"2019-08-07T00:57:51.4022832Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask112\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask111\",\"eTag\":\"0x8D71AD245E101FD\",\"lastModified\":\"2019-08-07T00:57:51.4042877Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask111\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask110\",\"eTag\":\"0x8D71AD245E372E2\",\"lastModified\":\"2019-08-07T00:57:51.420285Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask110\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask109\",\"eTag\":\"0x8D71AD245E3E80C\",\"lastModified\":\"2019-08-07T00:57:51.4232844Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask109\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask108\",\"eTag\":\"0x8D71AD245E56EBE\",\"lastModified\":\"2019-08-07T00:57:51.4332862Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask108\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask107\",\"eTag\":\"0x8D71AD245E6CE42\",\"lastModified\":\"2019-08-07T00:57:51.442285Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask107\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask106\",\"eTag\":\"0x8D71AD245E854FD\",\"lastModified\":\"2019-08-07T00:57:51.4522877Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask106\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask105\",\"eTag\":\"0x8D71AD245E9B492\",\"lastModified\":\"2019-08-07T00:57:51.4612882Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask105\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask104\",\"eTag\":\"0x8D71AD245E9B492\",\"lastModified\":\"2019-08-07T00:57:51.4612882Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask104\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask103\",\"eTag\":\"0x8D71AD245EB1420\",\"lastModified\":\"2019-08-07T00:57:51.470288Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask103\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask102\",\"eTag\":\"0x8D71AD245EDFC03\",\"lastModified\":\"2019-08-07T00:57:51.4893315Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask102\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask101\",\"eTag\":\"0x8D71AD245EDFC03\",\"lastModified\":\"2019-08-07T00:57:51.4893315Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask101\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask100\",\"eTag\":\"0x8D71AD245EF5D64\",\"lastModified\":\"2019-08-07T00:57:51.498378Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask100\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask99\",\"eTag\":\"0x8D71AD245F0B95F\",\"lastModified\":\"2019-08-07T00:57:51.5072863Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask99\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask98\",\"eTag\":\"0x8D71AD245F23FFD\",\"lastModified\":\"2019-08-07T00:57:51.5172861Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask98\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask97\",\"eTag\":\"0x8D71AD245F39F87\",\"lastModified\":\"2019-08-07T00:57:51.5262855Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask97\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask96\",\"eTag\":\"0x8D71AD245F685AA\",\"lastModified\":\"2019-08-07T00:57:51.5452842Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask96\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask95\",\"eTag\":\"0x8D71AD245F685AA\",\"lastModified\":\"2019-08-07T00:57:51.5452842Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask95\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask94\",\"eTag\":\"0x8D71AD245F80C43\",\"lastModified\":\"2019-08-07T00:57:51.5552835Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask94\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask93\",\"eTag\":\"0x8D71AD245F9B9FF\",\"lastModified\":\"2019-08-07T00:57:51.5662847Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask93\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask92\",\"eTag\":\"0x8D71AD245FBDD24\",\"lastModified\":\"2019-08-07T00:57:51.5802916Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask92\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask91\",\"eTag\":\"0x8D71AD245FC7956\",\"lastModified\":\"2019-08-07T00:57:51.5842902Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask91\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask90\",\"eTag\":\"0x8D71AD245FE7514\",\"lastModified\":\"2019-08-07T00:57:51.5972884Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask90\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask88\",\"eTag\":\"0x8D71AD24600BF32\",\"lastModified\":\"2019-08-07T00:57:51.612293Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask88\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask89\",\"eTag\":\"0x8D71AD24600E618\",\"lastModified\":\"2019-08-07T00:57:51.6132888Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask89\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask87\",\"eTag\":\"0x8D71AD24602458F\",\"lastModified\":\"2019-08-07T00:57:51.6222863Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask87\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask86\",\"eTag\":\"0x8D71AD24603A572\",\"lastModified\":\"2019-08-07T00:57:51.6312946Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask86\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask85\",\"eTag\":\"0x8D71AD246050E75\",\"lastModified\":\"2019-08-07T00:57:51.6405365Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask85\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask84\",\"eTag\":\"0x8D71AD24606911D\",\"lastModified\":\"2019-08-07T00:57:51.6504349Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask84\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask83\",\"eTag\":\"0x8D71AD24607EB37\",\"lastModified\":\"2019-08-07T00:57:51.6592951Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask83\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask131\",\"eTag\":\"0x8D7CB935B65A6AD\",\"lastModified\":\"2020-03-18T23:23:25.0234029Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask131\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask130\",\"eTag\":\"0x8D7CB935B65CDCE\",\"lastModified\":\"2020-03-18T23:23:25.0244046Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask130\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask132\",\"eTag\":\"0x8D7CB935B62C082\",\"lastModified\":\"2020-03-18T23:23:25.0044034Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask132\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask129\",\"eTag\":\"0x8D7CB935B669112\",\"lastModified\":\"2020-03-18T23:23:25.0294034Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask129\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask128\",\"eTag\":\"0x8D7CB935B670645\",\"lastModified\":\"2020-03-18T23:23:25.0324037Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask128\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask127\",\"eTag\":\"0x8D7CB935B67F093\",\"lastModified\":\"2020-03-18T23:23:25.0384019Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask127\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask126\",\"eTag\":\"0x8D7CB935B6928F0\",\"lastModified\":\"2020-03-18T23:23:25.0463984Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask126\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask125\",\"eTag\":\"0x8D7CB935B6A16B6\",\"lastModified\":\"2020-03-18T23:23:25.0524854Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask125\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask124\",\"eTag\":\"0x8D7CB935B6A8879\",\"lastModified\":\"2020-03-18T23:23:25.0553977Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask124\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask123\",\"eTag\":\"0x8D7CB935B6C0F2C\",\"lastModified\":\"2020-03-18T23:23:25.0653996Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask123\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask122\",\"eTag\":\"0x8D7CB935B6D4782\",\"lastModified\":\"2020-03-18T23:23:25.0733954Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask122\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask121\",\"eTag\":\"0x8D7CB935B6F1C6D\",\"lastModified\":\"2020-03-18T23:23:25.0853997Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask121\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask120\",\"eTag\":\"0x8D7CB935B6F1C6D\",\"lastModified\":\"2020-03-18T23:23:25.0853997Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask120\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask119\",\"eTag\":\"0x8D7CB935B70A2DC\",\"lastModified\":\"2020-03-18T23:23:25.0953948Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask119\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask118\",\"eTag\":\"0x8D7CB935B722961\",\"lastModified\":\"2020-03-18T23:23:25.1053921Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask118\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask117\",\"eTag\":\"0x8D7CB935B73B00A\",\"lastModified\":\"2020-03-18T23:23:25.115393Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask117\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask116\",\"eTag\":\"0x8D7CB935B7536A6\",\"lastModified\":\"2020-03-18T23:23:25.1253926Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask116\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask115\",\"eTag\":\"0x8D7CB935B7536A6\",\"lastModified\":\"2020-03-18T23:23:25.1253926Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask115\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask114\",\"eTag\":\"0x8D7CB935B76BD4B\",\"lastModified\":\"2020-03-18T23:23:25.1353931Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask114\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask113\",\"eTag\":\"0x8D7CB935B7843C6\",\"lastModified\":\"2020-03-18T23:23:25.1453894Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask113\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask112\",\"eTag\":\"0x8D7CB935B79CA4C\",\"lastModified\":\"2020-03-18T23:23:25.1553868Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask112\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask110\",\"eTag\":\"0x8D7CB935B7CB064\",\"lastModified\":\"2020-03-18T23:23:25.1743844Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask110\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask108\",\"eTag\":\"0x8D7CB935B7ED4A4\",\"lastModified\":\"2020-03-18T23:23:25.1884196Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask108\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask109\",\"eTag\":\"0x8D7CB935B7F22A2\",\"lastModified\":\"2020-03-18T23:23:25.1904162Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask109\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask111\",\"eTag\":\"0x8D7CB935B80A9A5\",\"lastModified\":\"2020-03-18T23:23:25.2004261Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask111\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask107\",\"eTag\":\"0x8D7CB935B80CF1B\",\"lastModified\":\"2020-03-18T23:23:25.2013851Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask107\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask106\",\"eTag\":\"0x8D7CB935B822F84\",\"lastModified\":\"2020-03-18T23:23:25.2104068Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask106\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask105\",\"eTag\":\"0x8D7CB935B83DC34\",\"lastModified\":\"2020-03-18T23:23:25.2213812Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask105\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask104\",\"eTag\":\"0x8D7CB935B853CF0\",\"lastModified\":\"2020-03-18T23:23:25.2304112Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask104\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask103\",\"eTag\":\"0x8D7CB935B85DB0B\",\"lastModified\":\"2020-03-18T23:23:25.2344587Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask103\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask102\",\"eTag\":\"0x8D7CB935B86C25C\",\"lastModified\":\"2020-03-18T23:23:25.2403804Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask102\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask101\",\"eTag\":\"0x8D7CB935B889A6D\",\"lastModified\":\"2020-03-18T23:23:25.2524653Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask101\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask100\",\"eTag\":\"0x8D7CB935B8A18CE\",\"lastModified\":\"2020-03-18T23:23:25.2622542Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask100\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask98\",\"eTag\":\"0x8D7CB935B8BA42B\",\"lastModified\":\"2020-03-18T23:23:25.2723755Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask98\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask99\",\"eTag\":\"0x8D7CB935B8B9F54\",\"lastModified\":\"2020-03-18T23:23:25.2722516Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask99\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask97\",\"eTag\":\"0x8D7CB935B8D78EC\",\"lastModified\":\"2020-03-18T23:23:25.2843756Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask97\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask96\",\"eTag\":\"0x8D7CB935B8DC700\",\"lastModified\":\"2020-03-18T23:23:25.2863744Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask96\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask95\",\"eTag\":\"0x8D7CB935B8F4D80\",\"lastModified\":\"2020-03-18T23:23:25.2963712Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask95\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask94\",\"eTag\":\"0x8D7CB935B90D428\",\"lastModified\":\"2020-03-18T23:23:25.306372Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask94\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask93\",\"eTag\":\"0x8D7CB935B9233AF\",\"lastModified\":\"2020-03-18T23:23:25.3153711Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask93\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask92\",\"eTag\":\"0x8D7CB935B933DE5\",\"lastModified\":\"2020-03-18T23:23:25.3221861Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask92\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask91\",\"eTag\":\"0x8D7CB935B94CBAB\",\"lastModified\":\"2020-03-18T23:23:25.3323691Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask91\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask90\",\"eTag\":\"0x8D7CB935B962B6B\",\"lastModified\":\"2020-03-18T23:23:25.3413739Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask90\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask89\",\"eTag\":\"0x8D7CB935B97B2F7\",\"lastModified\":\"2020-03-18T23:23:25.3513975Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask89\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask88\",\"eTag\":\"0x8D7CB935B984DF5\",\"lastModified\":\"2020-03-18T23:23:25.3553653Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask88\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask87\",\"eTag\":\"0x8D7CB935B99D48F\",\"lastModified\":\"2020-03-18T23:23:25.3653647Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask87\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask86\",\"eTag\":\"0x8D7CB935B9B5B37\",\"lastModified\":\"2020-03-18T23:23:25.3753655Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask86\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask85\",\"eTag\":\"0x8D7CB935B9B5B37\",\"lastModified\":\"2020-03-18T23:23:25.3753655Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask85\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask83\",\"eTag\":\"0x8D7CB935B9DF400\",\"lastModified\":\"2020-03-18T23:23:25.392384Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask83\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask84\",\"eTag\":\"0x8D7CB935B9DCD06\",\"lastModified\":\"2020-03-18T23:23:25.3913862Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask84\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -93124,9 +93124,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:51 GMT + - Wed, 18 Mar 2020 23:23:24 GMT request-id: - - e572d5cd-62fa-4ae4-b624-efb4a63a81dd + - 66d4faf8-3fa7-4e99-a395-a7cb4fffa93b server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -98202,67 +98202,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:52 GMT + - Wed, 18 Mar 2020 23:23:25 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask82\",\"eTag\":\"0x8D71AD2467EB41A\",\"lastModified\":\"2019-08-07T00:57:52.4377626Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask82\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask81\",\"eTag\":\"0x8D71AD2467FEC9F\",\"lastModified\":\"2019-08-07T00:57:52.4457631Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask81\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask80\",\"eTag\":\"0x8D71AD24681734D\",\"lastModified\":\"2019-08-07T00:57:52.4557645Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask80\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask79\",\"eTag\":\"0x8D71AD24682D2E5\",\"lastModified\":\"2019-08-07T00:57:52.4647653Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask79\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask78\",\"eTag\":\"0x8D71AD246845987\",\"lastModified\":\"2019-08-07T00:57:52.4747655Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask78\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask77\",\"eTag\":\"0x8D71AD246873FE7\",\"lastModified\":\"2019-08-07T00:57:52.4937703Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask77\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask76\",\"eTag\":\"0x8D71AD246889F6E\",\"lastModified\":\"2019-08-07T00:57:52.5027694Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask76\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask75\",\"eTag\":\"0x8D71AD2468AC237\",\"lastModified\":\"2019-08-07T00:57:52.5167671Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask75\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask74\",\"eTag\":\"0x8D71AD2468BA586\",\"lastModified\":\"2019-08-07T00:57:52.5225862Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask74\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask73\",\"eTag\":\"0x8D71AD2468C6FDE\",\"lastModified\":\"2019-08-07T00:57:52.5277662Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask73\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask72\",\"eTag\":\"0x8D71AD2468D8157\",\"lastModified\":\"2019-08-07T00:57:52.5347671Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask72\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask69\",\"eTag\":\"0x8D71AD246928A63\",\"lastModified\":\"2019-08-07T00:57:52.5677667Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask69\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask68\",\"eTag\":\"0x8D71AD2469374B5\",\"lastModified\":\"2019-08-07T00:57:52.5737653Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask68\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask70\",\"eTag\":\"0x8D71AD24694410E\",\"lastModified\":\"2019-08-07T00:57:52.5789966Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask70\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask71\",\"eTag\":\"0x8D71AD246945FD4\",\"lastModified\":\"2019-08-07T00:57:52.5797844Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask71\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask67\",\"eTag\":\"0x8D71AD24694FB5B\",\"lastModified\":\"2019-08-07T00:57:52.5837659Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask67\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask66\",\"eTag\":\"0x8D71AD246965B28\",\"lastModified\":\"2019-08-07T00:57:52.592772Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask66\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask65\",\"eTag\":\"0x8D71AD24697939C\",\"lastModified\":\"2019-08-07T00:57:52.6007708Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask65\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask64\",\"eTag\":\"0x8D71AD24698F57F\",\"lastModified\":\"2019-08-07T00:57:52.6098303Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask64\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask58\",\"eTag\":\"0x8D71AD246AFAF50\",\"lastModified\":\"2019-08-07T00:57:52.7587664Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask58\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask57\",\"eTag\":\"0x8D71AD246B0C0B1\",\"lastModified\":\"2019-08-07T00:57:52.7657649Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask57\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask59\",\"eTag\":\"0x8D71AD246B10EEF\",\"lastModified\":\"2019-08-07T00:57:52.7677679Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask59\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask56\",\"eTag\":\"0x8D71AD246B0C0B1\",\"lastModified\":\"2019-08-07T00:57:52.7657649Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask56\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask54\",\"eTag\":\"0x8D71AD246B135FC\",\"lastModified\":\"2019-08-07T00:57:52.7687676Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask54\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask61\",\"eTag\":\"0x8D71AD246B0E7DC\",\"lastModified\":\"2019-08-07T00:57:52.7667676Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask61\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask60\",\"eTag\":\"0x8D71AD246B10EEF\",\"lastModified\":\"2019-08-07T00:57:52.7677679Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask60\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask53\",\"eTag\":\"0x8D71AD246B221A5\",\"lastModified\":\"2019-08-07T00:57:52.7748005Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask53\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask52\",\"eTag\":\"0x8D71AD246B226D8\",\"lastModified\":\"2019-08-07T00:57:52.7749336Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask52\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask46\",\"eTag\":\"0x8D71AD246B8AFFE\",\"lastModified\":\"2019-08-07T00:57:52.8177662Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask46\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask45\",\"eTag\":\"0x8D71AD246B8FE2B\",\"lastModified\":\"2019-08-07T00:57:52.8197675Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask45\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask43\",\"eTag\":\"0x8D71AD246BDB918\",\"lastModified\":\"2019-08-07T00:57:52.8507672Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask43\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask50\",\"eTag\":\"0x8D71AD246BDB918\",\"lastModified\":\"2019-08-07T00:57:52.8507672Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask50\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask41\",\"eTag\":\"0x8D71AD246BE0738\",\"lastModified\":\"2019-08-07T00:57:52.8527672Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask41\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask42\",\"eTag\":\"0x8D71AD246BE0738\",\"lastModified\":\"2019-08-07T00:57:52.8527672Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask42\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask40\",\"eTag\":\"0x8D71AD246BF66BA\",\"lastModified\":\"2019-08-07T00:57:52.8617658Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask40\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask62\",\"eTag\":\"0x8D71AD246B2476C\",\"lastModified\":\"2019-08-07T00:57:52.7757676Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask62\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask39\",\"eTag\":\"0x8D71AD246BF66BA\",\"lastModified\":\"2019-08-07T00:57:52.8617658Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask39\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask38\",\"eTag\":\"0x8D71AD246C0C62A\",\"lastModified\":\"2019-08-07T00:57:52.8707626Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask38\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask55\",\"eTag\":\"0x8D71AD246B26E7F\",\"lastModified\":\"2019-08-07T00:57:52.7767679Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask55\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask63\",\"eTag\":\"0x8D71AD246B2476C\",\"lastModified\":\"2019-08-07T00:57:52.7757676Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask63\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask37\",\"eTag\":\"0x8D71AD246C273F6\",\"lastModified\":\"2019-08-07T00:57:52.8817654Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask37\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask51\",\"eTag\":\"0x8D71AD246B29587\",\"lastModified\":\"2019-08-07T00:57:52.7777671Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask51\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask49\",\"eTag\":\"0x8D71AD246C273F6\",\"lastModified\":\"2019-08-07T00:57:52.8817654Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask49\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask47\",\"eTag\":\"0x8D71AD246B6DB33\",\"lastModified\":\"2019-08-07T00:57:52.8057651Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask47\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask35\",\"eTag\":\"0x8D71AD246C7F248\",\"lastModified\":\"2019-08-07T00:57:52.9177672Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask35\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask44\",\"eTag\":\"0x8D71AD246BAC4FB\",\"lastModified\":\"2019-08-07T00:57:52.8314107Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask44\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask36\",\"eTag\":\"0x8D71AD246C7CB39\",\"lastModified\":\"2019-08-07T00:57:52.9167673Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask36\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask34\",\"eTag\":\"0x8D71AD246C903AC\",\"lastModified\":\"2019-08-07T00:57:52.924766Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask34\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask33\",\"eTag\":\"0x8D71AD246C92ACD\",\"lastModified\":\"2019-08-07T00:57:52.9257677Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask33\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask48\",\"eTag\":\"0x8D71AD246C3D38D\",\"lastModified\":\"2019-08-07T00:57:52.8907661Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask48\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask82\",\"eTag\":\"0x8D7CB935BECE9B8\",\"lastModified\":\"2020-03-18T23:23:25.9098552Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask82\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask81\",\"eTag\":\"0x8D7CB935BEE960C\",\"lastModified\":\"2020-03-18T23:23:25.9208204Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask81\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask80\",\"eTag\":\"0x8D7CB935BEFCE9F\",\"lastModified\":\"2020-03-18T23:23:25.9288223Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask80\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask75\",\"eTag\":\"0x8D7CB935BF96ACE\",\"lastModified\":\"2020-03-18T23:23:25.991803Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask75\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask77\",\"eTag\":\"0x8D7CB935BF96ACE\",\"lastModified\":\"2020-03-18T23:23:25.991803Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask77\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask79\",\"eTag\":\"0x8D7CB935BF96ACE\",\"lastModified\":\"2020-03-18T23:23:25.991803Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask79\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask76\",\"eTag\":\"0x8D7CB935BFA4A7D\",\"lastModified\":\"2020-03-18T23:23:25.9975293Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask76\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask78\",\"eTag\":\"0x8D7CB935BF96ACE\",\"lastModified\":\"2020-03-18T23:23:25.991803Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask78\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask74\",\"eTag\":\"0x8D7CB935BFB853F\",\"lastModified\":\"2020-03-18T23:23:26.0055871Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask74\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask73\",\"eTag\":\"0x8D7CB935BFE40F4\",\"lastModified\":\"2020-03-18T23:23:26.0234996Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask73\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask72\",\"eTag\":\"0x8D7CB935C00487E\",\"lastModified\":\"2020-03-18T23:23:26.0367998Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask72\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask71\",\"eTag\":\"0x8D7CB935C006F7B\",\"lastModified\":\"2020-03-18T23:23:26.0377979Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask71\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask70\",\"eTag\":\"0x8D7CB935C00BE90\",\"lastModified\":\"2020-03-18T23:23:26.0398224Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask70\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask69\",\"eTag\":\"0x8D7CB935C02926E\",\"lastModified\":\"2020-03-18T23:23:26.0517998Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask69\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask68\",\"eTag\":\"0x8D7CB935C035593\",\"lastModified\":\"2020-03-18T23:23:26.0567955Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask68\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask67\",\"eTag\":\"0x8D7CB935C0492EF\",\"lastModified\":\"2020-03-18T23:23:26.0649199Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask67\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask66\",\"eTag\":\"0x8D7CB935C05D5B6\",\"lastModified\":\"2020-03-18T23:23:26.073183Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask66\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask65\",\"eTag\":\"0x8D7CB935C075BB2\",\"lastModified\":\"2020-03-18T23:23:26.0831666Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask65\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask64\",\"eTag\":\"0x8D7CB935C08DA16\",\"lastModified\":\"2020-03-18T23:23:26.0929558Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask64\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask63\",\"eTag\":\"0x8D7CB935C0A5DB7\",\"lastModified\":\"2020-03-18T23:23:26.1028791Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask63\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask62\",\"eTag\":\"0x8D7CB935C0BE0E5\",\"lastModified\":\"2020-03-18T23:23:26.1127909Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask62\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask61\",\"eTag\":\"0x8D7CB935C0D6245\",\"lastModified\":\"2020-03-18T23:23:26.1226565Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask61\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask60\",\"eTag\":\"0x8D7CB935C0D6A11\",\"lastModified\":\"2020-03-18T23:23:26.1228561Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask60\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask59\",\"eTag\":\"0x8D7CB935C0EEE6F\",\"lastModified\":\"2020-03-18T23:23:26.1327983Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask59\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask54\",\"eTag\":\"0x8D7CB935C15085A\",\"lastModified\":\"2020-03-18T23:23:26.1727834Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask54\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask56\",\"eTag\":\"0x8D7CB935C13F701\",\"lastModified\":\"2020-03-18T23:23:26.1657857Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask56\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask58\",\"eTag\":\"0x8D7CB935C15085A\",\"lastModified\":\"2020-03-18T23:23:26.1727834Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask58\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask55\",\"eTag\":\"0x8D7CB935C15085A\",\"lastModified\":\"2020-03-18T23:23:26.1727834Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask55\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask57\",\"eTag\":\"0x8D7CB935C14F6D5\",\"lastModified\":\"2020-03-18T23:23:26.1723349Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask57\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask53\",\"eTag\":\"0x8D7CB935C17054A\",\"lastModified\":\"2020-03-18T23:23:26.1858122Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask53\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask52\",\"eTag\":\"0x8D7CB935C17A17F\",\"lastModified\":\"2020-03-18T23:23:26.1898111Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask52\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask51\",\"eTag\":\"0x8D7CB935C1816AA\",\"lastModified\":\"2020-03-18T23:23:26.1928106Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask51\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask50\",\"eTag\":\"0x8D7CB935C1A6091\",\"lastModified\":\"2020-03-18T23:23:26.2078097Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask50\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask49\",\"eTag\":\"0x8D7CB935C1AD49D\",\"lastModified\":\"2020-03-18T23:23:26.2107805Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask49\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask48\",\"eTag\":\"0x8D7CB935C1C0D28\",\"lastModified\":\"2020-03-18T23:23:26.2187816Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask48\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask47\",\"eTag\":\"0x8D7CB935C1CAA77\",\"lastModified\":\"2020-03-18T23:23:26.2228087Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask47\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask46\",\"eTag\":\"0x8D7CB935C1EA649\",\"lastModified\":\"2020-03-18T23:23:26.2358089Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask46\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask45\",\"eTag\":\"0x8D7CB935C1F6A43\",\"lastModified\":\"2020-03-18T23:23:26.2408259Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask45\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask44\",\"eTag\":\"0x8D7CB935C20A0F2\",\"lastModified\":\"2020-03-18T23:23:26.2487794Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask44\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask43\",\"eTag\":\"0x8D7CB935C21427C\",\"lastModified\":\"2020-03-18T23:23:26.2529148Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask43\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask42\",\"eTag\":\"0x8D7CB935C224FF3\",\"lastModified\":\"2020-03-18T23:23:26.2598131Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask42\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask41\",\"eTag\":\"0x8D7CB935C23AE34\",\"lastModified\":\"2020-03-18T23:23:26.2687796Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask41\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask40\",\"eTag\":\"0x8D7CB935C244A3E\",\"lastModified\":\"2020-03-18T23:23:26.2727742Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask40\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask39\",\"eTag\":\"0x8D7CB935C25D7A6\",\"lastModified\":\"2020-03-18T23:23:26.2829478Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask39\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask38\",\"eTag\":\"0x8D7CB935C277F82\",\"lastModified\":\"2020-03-18T23:23:26.2937986Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask38\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask37\",\"eTag\":\"0x8D7CB935C2841DD\",\"lastModified\":\"2020-03-18T23:23:26.2987741Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask37\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask36\",\"eTag\":\"0x8D7CB935C29C88F\",\"lastModified\":\"2020-03-18T23:23:26.3087759Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask36\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask35\",\"eTag\":\"0x8D7CB935C2A65BC\",\"lastModified\":\"2020-03-18T23:23:26.3127996Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask35\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask34\",\"eTag\":\"0x8D7CB935C2BF070\",\"lastModified\":\"2020-03-18T23:23:26.322904Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask34\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask33\",\"eTag\":\"0x8D7CB935C2CAE97\",\"lastModified\":\"2020-03-18T23:23:26.3277719Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask33\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -98270,9 +98270,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:52 GMT + - Wed, 18 Mar 2020 23:23:25 GMT request-id: - - c30faacf-fb3b-440b-876b-56c589f0b33a + - 882fa3f3-1a9f-4a44-988e-f2924c66dde8 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -103348,67 +103348,67 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:53 GMT + - Wed, 18 Mar 2020 23:23:26 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask32\",\"eTag\":\"0x8D71AD24744CFA7\",\"lastModified\":\"2019-08-07T00:57:53.7360807Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask32\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask31\",\"eTag\":\"0x8D71AD247462F3A\",\"lastModified\":\"2019-08-07T00:57:53.745081Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask31\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask30\",\"eTag\":\"0x8D71AD247478ED7\",\"lastModified\":\"2019-08-07T00:57:53.7540823Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask30\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask29\",\"eTag\":\"0x8D71AD2474BAD58\",\"lastModified\":\"2019-08-07T00:57:53.7810776Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask29\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask28\",\"eTag\":\"0x8D71AD2474D3461\",\"lastModified\":\"2019-08-07T00:57:53.7910881Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask28\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask27\",\"eTag\":\"0x8D71AD2474EBAAC\",\"lastModified\":\"2019-08-07T00:57:53.8010796Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask27\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask26\",\"eTag\":\"0x8D71AD2475CA961\",\"lastModified\":\"2019-08-07T00:57:53.8923873Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask26\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask23\",\"eTag\":\"0x8D71AD2475D3983\",\"lastModified\":\"2019-08-07T00:57:53.8960771Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask23\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask19\",\"eTag\":\"0x8D71AD2475D60AF\",\"lastModified\":\"2019-08-07T00:57:53.8970799Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask19\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask24\",\"eTag\":\"0x8D71AD2475D3983\",\"lastModified\":\"2019-08-07T00:57:53.8960771Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask24\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask18\",\"eTag\":\"0x8D71AD2475D60AF\",\"lastModified\":\"2019-08-07T00:57:53.8970799Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask18\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask21\",\"eTag\":\"0x8D71AD2475D60AF\",\"lastModified\":\"2019-08-07T00:57:53.8970799Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask21\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask20\",\"eTag\":\"0x8D71AD2475D60AF\",\"lastModified\":\"2019-08-07T00:57:53.8970799Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask20\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask17\",\"eTag\":\"0x8D71AD2475E4D86\",\"lastModified\":\"2019-08-07T00:57:53.903143Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask17\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask25\",\"eTag\":\"0x8D71AD2475D60AF\",\"lastModified\":\"2019-08-07T00:57:53.8970799Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask25\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask22\",\"eTag\":\"0x8D71AD2475D60AF\",\"lastModified\":\"2019-08-07T00:57:53.8970799Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask22\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask16\",\"eTag\":\"0x8D71AD2475E720A\",\"lastModified\":\"2019-08-07T00:57:53.9040778Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask16\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask15\",\"eTag\":\"0x8D71AD2475FD191\",\"lastModified\":\"2019-08-07T00:57:53.9130769Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask15\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask14\",\"eTag\":\"0x8D71AD24768AB31\",\"lastModified\":\"2019-08-07T00:57:53.9710769Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask14\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask11\",\"eTag\":\"0x8D71AD2476B916C\",\"lastModified\":\"2019-08-07T00:57:53.990078Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask11\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask12\",\"eTag\":\"0x8D71AD2476B916C\",\"lastModified\":\"2019-08-07T00:57:53.990078Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask12\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask9\",\"eTag\":\"0x8D71AD2476B916C\",\"lastModified\":\"2019-08-07T00:57:53.990078Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask9\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask13\",\"eTag\":\"0x8D71AD2476B916C\",\"lastModified\":\"2019-08-07T00:57:53.990078Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask13\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask8\",\"eTag\":\"0x8D71AD2476B916C\",\"lastModified\":\"2019-08-07T00:57:53.990078Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask8\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask6\",\"eTag\":\"0x8D71AD2477136DE\",\"lastModified\":\"2019-08-07T00:57:54.0270814Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask6\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask7\",\"eTag\":\"0x8D71AD247710FA3\",\"lastModified\":\"2019-08-07T00:57:54.0260771Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask7\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask10\",\"eTag\":\"0x8D71AD247724841\",\"lastModified\":\"2019-08-07T00:57:54.0340801Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask10\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask5\",\"eTag\":\"0x8D71AD247729652\",\"lastModified\":\"2019-08-07T00:57:54.0360786Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask5\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask2\",\"eTag\":\"0x8D71AD24773CED6\",\"lastModified\":\"2019-08-07T00:57:54.044079Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask2\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask3\",\"eTag\":\"0x8D71AD24773CED6\",\"lastModified\":\"2019-08-07T00:57:54.044079Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask3\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask1\",\"eTag\":\"0x8D71AD24775074C\",\"lastModified\":\"2019-08-07T00:57:54.052078Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask1\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask4\",\"eTag\":\"0x8D71AD24773A7D9\",\"lastModified\":\"2019-08-07T00:57:54.0430809Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask4\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask682\",\"eTag\":\"0x8D71AD247757CA7\",\"lastModified\":\"2019-08-07T00:57:54.0550823Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask682\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask0\",\"eTag\":\"0x8D71AD247757CA7\",\"lastModified\":\"2019-08-07T00:57:54.0550823Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask0\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask681\",\"eTag\":\"0x8D71AD2477AFADD\",\"lastModified\":\"2019-08-07T00:57:54.0910813Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask681\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask680\",\"eTag\":\"0x8D71AD2477D4505\",\"lastModified\":\"2019-08-07T00:57:54.1060869Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask680\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask679\",\"eTag\":\"0x8D71AD2477ECBA2\",\"lastModified\":\"2019-08-07T00:57:54.1160866Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask679\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask678\",\"eTag\":\"0x8D71AD2478069AF\",\"lastModified\":\"2019-08-07T00:57:54.1266863Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask678\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask677\",\"eTag\":\"0x8D71AD24782EA39\",\"lastModified\":\"2019-08-07T00:57:54.1430841Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask677\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask676\",\"eTag\":\"0x8D71AD247831129\",\"lastModified\":\"2019-08-07T00:57:54.1440809Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask676\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask675\",\"eTag\":\"0x8D71AD2478449A7\",\"lastModified\":\"2019-08-07T00:57:54.1520807Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask675\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask674\",\"eTag\":\"0x8D71AD24785A98B\",\"lastModified\":\"2019-08-07T00:57:54.1610891Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask674\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask671\",\"eTag\":\"0x8D71AD24789EF0A\",\"lastModified\":\"2019-08-07T00:57:54.1890826Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask671\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask672\",\"eTag\":\"0x8D71AD2478936A2\",\"lastModified\":\"2019-08-07T00:57:54.1843618Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask672\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask673\",\"eTag\":\"0x8D71AD24788413E\",\"lastModified\":\"2019-08-07T00:57:54.1780798Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask673\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask669\",\"eTag\":\"0x8D71AD2478CD66F\",\"lastModified\":\"2019-08-07T00:57:54.2081135Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask669\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask668\",\"eTag\":\"0x8D71AD2478CD66F\",\"lastModified\":\"2019-08-07T00:57:54.2081135Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask668\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask670\",\"eTag\":\"0x8D71AD2478B4EB7\",\"lastModified\":\"2019-08-07T00:57:54.1980855Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask670\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask667\",\"eTag\":\"0x8D71AD2478F6E51\",\"lastModified\":\"2019-08-07T00:57:54.2251089Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask667\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask666\",\"eTag\":\"0x8D71AD2478FE271\",\"lastModified\":\"2019-08-07T00:57:54.2280817Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask666\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask32\",\"eTag\":\"0x8D7CB935C832719\",\"lastModified\":\"2020-03-18T23:23:26.8944665Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask32\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask31\",\"eTag\":\"0x8D7CB935C84125C\",\"lastModified\":\"2020-03-18T23:23:26.9004892Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask31\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask30\",\"eTag\":\"0x8D7CB935C8598FB\",\"lastModified\":\"2020-03-18T23:23:26.9104891Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask30\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask29\",\"eTag\":\"0x8D7CB935C86D029\",\"lastModified\":\"2020-03-18T23:23:26.9184553Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask29\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask28\",\"eTag\":\"0x8D7CB935C87E26F\",\"lastModified\":\"2020-03-18T23:23:26.9254767Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask28\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask27\",\"eTag\":\"0x8D7CB935C8A2C60\",\"lastModified\":\"2020-03-18T23:23:26.9404768Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask27\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask26\",\"eTag\":\"0x8D7CB935C8B3E27\",\"lastModified\":\"2020-03-18T23:23:26.9474855Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask26\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask25\",\"eTag\":\"0x8D7CB935C8EC048\",\"lastModified\":\"2020-03-18T23:23:26.9704776Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask25\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask24\",\"eTag\":\"0x8D7CB935C8F8284\",\"lastModified\":\"2020-03-18T23:23:26.97545Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask24\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask23\",\"eTag\":\"0x8D7CB935C907D35\",\"lastModified\":\"2020-03-18T23:23:26.9818677Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask23\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask22\",\"eTag\":\"0x8D7CB935C917E4F\",\"lastModified\":\"2020-03-18T23:23:26.9884495Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask22\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask21\",\"eTag\":\"0x8D7CB935C94B447\",\"lastModified\":\"2020-03-18T23:23:27.0094919Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask21\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask19\",\"eTag\":\"0x8D7CB935C96390A\",\"lastModified\":\"2020-03-18T23:23:27.0194442Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask19\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask20\",\"eTag\":\"0x8D7CB935C94B447\",\"lastModified\":\"2020-03-18T23:23:27.0094919Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask20\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask18\",\"eTag\":\"0x8D7CB935C97E7DB\",\"lastModified\":\"2020-03-18T23:23:27.0304731Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask18\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask17\",\"eTag\":\"0x8D7CB935C99463C\",\"lastModified\":\"2020-03-18T23:23:27.0394428Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask17\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask16\",\"eTag\":\"0x8D7CB935C99E281\",\"lastModified\":\"2020-03-18T23:23:27.0434433Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask16\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask15\",\"eTag\":\"0x8D7CB935C9AEF48\",\"lastModified\":\"2020-03-18T23:23:27.050324Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask15\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask14\",\"eTag\":\"0x8D7CB935C9C8A50\",\"lastModified\":\"2020-03-18T23:23:27.0608464Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask14\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask13\",\"eTag\":\"0x8D7CB935C9EEB56\",\"lastModified\":\"2020-03-18T23:23:27.0764374Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask13\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask12\",\"eTag\":\"0x8D7CB935C9EEB56\",\"lastModified\":\"2020-03-18T23:23:27.0764374Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask12\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask11\",\"eTag\":\"0x8D7CB935CA07203\",\"lastModified\":\"2020-03-18T23:23:27.0864387Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask11\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask9\",\"eTag\":\"0x8D7CB935CA3321F\",\"lastModified\":\"2020-03-18T23:23:27.1044639Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask9\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask10\",\"eTag\":\"0x8D7CB935CA1F8A1\",\"lastModified\":\"2020-03-18T23:23:27.0964385Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask10\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask8\",\"eTag\":\"0x8D7CB935CA5F056\",\"lastModified\":\"2020-03-18T23:23:27.1224406Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask8\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask7\",\"eTag\":\"0x8D7CB935CA6173F\",\"lastModified\":\"2020-03-18T23:23:27.1234367Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask7\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask6\",\"eTag\":\"0x8D7CB935CA776B9\",\"lastModified\":\"2020-03-18T23:23:27.1324345Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask6\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask5\",\"eTag\":\"0x8D7CB935CA8FD59\",\"lastModified\":\"2020-03-18T23:23:27.1424345Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask5\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask4\",\"eTag\":\"0x8D7CB935CAA5E58\",\"lastModified\":\"2020-03-18T23:23:27.1514712Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask4\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask3\",\"eTag\":\"0x8D7CB935CABE569\",\"lastModified\":\"2020-03-18T23:23:27.1614825Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask3\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask2\",\"eTag\":\"0x8D7CB935CAD6A4F\",\"lastModified\":\"2020-03-18T23:23:27.1714383Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask2\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask1\",\"eTag\":\"0x8D7CB935CAD6A4F\",\"lastModified\":\"2020-03-18T23:23:27.1714383Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask1\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask0\",\"eTag\":\"0x8D7CB935CAECB35\",\"lastModified\":\"2020-03-18T23:23:27.1804725Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask0\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask682\",\"eTag\":\"0x8D7CB935CB05132\",\"lastModified\":\"2020-03-18T23:23:27.1904562Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask682\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask681\",\"eTag\":\"0x8D7CB935CB1DB63\",\"lastModified\":\"2020-03-18T23:23:27.2005475Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask681\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask680\",\"eTag\":\"0x8D7CB935CB33A2C\",\"lastModified\":\"2020-03-18T23:23:27.2095276Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask680\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask679\",\"eTag\":\"0x8D7CB935CB35E90\",\"lastModified\":\"2020-03-18T23:23:27.2104592Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask679\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask678\",\"eTag\":\"0x8D7CB935CB4BDFA\",\"lastModified\":\"2020-03-18T23:23:27.2194554Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask678\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask677\",\"eTag\":\"0x8D7CB935CB64469\",\"lastModified\":\"2020-03-18T23:23:27.2294505Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask677\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask676\",\"eTag\":\"0x8D7CB935CB7CBCA\",\"lastModified\":\"2020-03-18T23:23:27.2394698Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask676\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask675\",\"eTag\":\"0x8D7CB935CB86626\",\"lastModified\":\"2020-03-18T23:23:27.2434214Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask675\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask674\",\"eTag\":\"0x8D7CB935CB99EB7\",\"lastModified\":\"2020-03-18T23:23:27.2514231Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask674\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask673\",\"eTag\":\"0x8D7CB935CBAFE38\",\"lastModified\":\"2020-03-18T23:23:27.2604216Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask673\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask672\",\"eTag\":\"0x8D7CB935CBAFE38\",\"lastModified\":\"2020-03-18T23:23:27.2604216Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask672\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask671\",\"eTag\":\"0x8D7CB935CBC84DB\",\"lastModified\":\"2020-03-18T23:23:27.2704219Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask671\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask670\",\"eTag\":\"0x8D7CB935CBE0B5A\",\"lastModified\":\"2020-03-18T23:23:27.2804186Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask670\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask669\",\"eTag\":\"0x8D7CB935CBF91EA\",\"lastModified\":\"2020-03-18T23:23:27.290417Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask669\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask668\",\"eTag\":\"0x8D7CB935CC11899\",\"lastModified\":\"2020-03-18T23:23:27.3004185Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask668\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask667\",\"eTag\":\"0x8D7CB935CC11899\",\"lastModified\":\"2020-03-18T23:23:27.3004185Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask667\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask666\",\"eTag\":\"0x8D7CB935CC36294\",\"lastModified\":\"2020-03-18T23:23:27.3154196Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask666\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -103416,9 +103416,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:53 GMT + - Wed, 18 Mar 2020 23:23:26 GMT request-id: - - 6596ed35-5fe4-42f9-af44-10ec445bbb8a + - 0674d366-94ae-489f-ab26-ac62ed4de839 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -106777,50 +106777,50 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 00:57:54 GMT + - Wed, 18 Mar 2020 23:23:27 GMT method: POST - uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2019-08-01.10.0 + uri: https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/addtaskcollection?api-version=2020-03-01.11.0 response: body: string: "{\r\n \"odata.metadata\":\"https://batch98da0af6.westcentralus.batch.azure.com/$metadata#taskaddresult\",\"value\":[\r\n - \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask665\",\"eTag\":\"0x8D71AD247E73A29\",\"lastModified\":\"2019-08-07T00:57:54.8004905Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask665\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask664\",\"eTag\":\"0x8D71AD247EA181E\",\"lastModified\":\"2019-08-07T00:57:54.8192798Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask664\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask663\",\"eTag\":\"0x8D71AD247EC13CA\",\"lastModified\":\"2019-08-07T00:57:54.8322762Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask663\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask662\",\"eTag\":\"0x8D71AD247ED47F6\",\"lastModified\":\"2019-08-07T00:57:54.8401654Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask662\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask661\",\"eTag\":\"0x8D71AD247ED4C45\",\"lastModified\":\"2019-08-07T00:57:54.8402757Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask661\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask660\",\"eTag\":\"0x8D71AD247EF4839\",\"lastModified\":\"2019-08-07T00:57:54.8532793Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask660\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask658\",\"eTag\":\"0x8D71AD247F1B918\",\"lastModified\":\"2019-08-07T00:57:54.869276Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask658\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask659\",\"eTag\":\"0x8D71AD247F19ED3\",\"lastModified\":\"2019-08-07T00:57:54.8686035Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask659\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask657\",\"eTag\":\"0x8D71AD247F3103F\",\"lastModified\":\"2019-08-07T00:57:54.8780607Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask657\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask656\",\"eTag\":\"0x8D71AD247F47F17\",\"lastModified\":\"2019-08-07T00:57:54.8874519Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask656\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask655\",\"eTag\":\"0x8D71AD247F5FED7\",\"lastModified\":\"2019-08-07T00:57:54.8972759Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask655\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask654\",\"eTag\":\"0x8D71AD247F74FB5\",\"lastModified\":\"2019-08-07T00:57:54.9058997Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask654\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask653\",\"eTag\":\"0x8D71AD247F8C3BE\",\"lastModified\":\"2019-08-07T00:57:54.9154238Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask653\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask652\",\"eTag\":\"0x8D71AD247FA44D7\",\"lastModified\":\"2019-08-07T00:57:54.9252823Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask652\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask648\",\"eTag\":\"0x8D71AD247FFEA01\",\"lastModified\":\"2019-08-07T00:57:54.9622785Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask648\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask650\",\"eTag\":\"0x8D71AD247FD0866\",\"lastModified\":\"2019-08-07T00:57:54.9433958Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask650\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask651\",\"eTag\":\"0x8D71AD247FB9704\",\"lastModified\":\"2019-08-07T00:57:54.9339396Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask651\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask649\",\"eTag\":\"0x8D71AD247FE6F8D\",\"lastModified\":\"2019-08-07T00:57:54.9525901Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask649\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask646\",\"eTag\":\"0x8D71AD24802A936\",\"lastModified\":\"2019-08-07T00:57:54.9802806Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask646\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask647\",\"eTag\":\"0x8D71AD24800D57C\",\"lastModified\":\"2019-08-07T00:57:54.9683068Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask647\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask644\",\"eTag\":\"0x8D71AD2480409E4\",\"lastModified\":\"2019-08-07T00:57:54.9893092Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask644\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask645\",\"eTag\":\"0x8D71AD2480393A3\",\"lastModified\":\"2019-08-07T00:57:54.9862819Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask645\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask643\",\"eTag\":\"0x8D71AD2480765D6\",\"lastModified\":\"2019-08-07T00:57:55.0113238Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask643\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask642\",\"eTag\":\"0x8D71AD24807B2AB\",\"lastModified\":\"2019-08-07T00:57:55.0132907Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask642\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask641\",\"eTag\":\"0x8D71AD248087B58\",\"lastModified\":\"2019-08-07T00:57:55.018428Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask641\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask640\",\"eTag\":\"0x8D71AD2480B4A6F\",\"lastModified\":\"2019-08-07T00:57:55.0368367Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask640\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask639\",\"eTag\":\"0x8D71AD2480CC3A3\",\"lastModified\":\"2019-08-07T00:57:55.0464931Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask639\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask638\",\"eTag\":\"0x8D71AD2480E37BF\",\"lastModified\":\"2019-08-07T00:57:55.0560191Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask638\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask637\",\"eTag\":\"0x8D71AD2480FEFA7\",\"lastModified\":\"2019-08-07T00:57:55.0672807Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask637\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask636\",\"eTag\":\"0x8D71AD248111A9A\",\"lastModified\":\"2019-08-07T00:57:55.0749338Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask636\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask635\",\"eTag\":\"0x8D71AD24811280A\",\"lastModified\":\"2019-08-07T00:57:55.0752778Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask635\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask634\",\"eTag\":\"0x8D71AD248127723\",\"lastModified\":\"2019-08-07T00:57:55.0838563Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask634\"\r\n - \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask633\",\"eTag\":\"0x8D71AD24813CC00\",\"lastModified\":\"2019-08-07T00:57:55.0925824Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask633\"\r\n + \ {\r\n \"status\":\"Success\",\"taskId\":\"mytask665\",\"eTag\":\"0x8D7CB935CFF93A6\",\"lastModified\":\"2020-03-18T23:23:27.7098918Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask665\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask664\",\"eTag\":\"0x8D7CB935D011A19\",\"lastModified\":\"2020-03-18T23:23:27.7198873Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask664\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask663\",\"eTag\":\"0x8D7CB935D029CA2\",\"lastModified\":\"2020-03-18T23:23:27.7297826Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask663\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask662\",\"eTag\":\"0x8D7CB935D040062\",\"lastModified\":\"2020-03-18T23:23:27.7388898Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask662\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask661\",\"eTag\":\"0x8D7CB935D0586AD\",\"lastModified\":\"2020-03-18T23:23:27.7488813Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask661\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask659\",\"eTag\":\"0x8D7CB935D073344\",\"lastModified\":\"2020-03-18T23:23:27.7598532Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask659\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask660\",\"eTag\":\"0x8D7CB935D070E35\",\"lastModified\":\"2020-03-18T23:23:27.7589045Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask660\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask657\",\"eTag\":\"0x8D7CB935D0A19B2\",\"lastModified\":\"2020-03-18T23:23:27.7788594Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask657\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask658\",\"eTag\":\"0x8D7CB935D0893B9\",\"lastModified\":\"2020-03-18T23:23:27.7688761Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask658\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask656\",\"eTag\":\"0x8D7CB935D0BA101\",\"lastModified\":\"2020-03-18T23:23:27.7888769Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask656\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask654\",\"eTag\":\"0x8D7CB935D0D4DA1\",\"lastModified\":\"2020-03-18T23:23:27.7998497Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask654\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask655\",\"eTag\":\"0x8D7CB935D0D283E\",\"lastModified\":\"2020-03-18T23:23:27.7988926Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask655\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask653\",\"eTag\":\"0x8D7CB935D0EAE04\",\"lastModified\":\"2020-03-18T23:23:27.8088708Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask653\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask652\",\"eTag\":\"0x8D7CB935D103526\",\"lastModified\":\"2020-03-18T23:23:27.8188838Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask652\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask651\",\"eTag\":\"0x8D7CB935D11BA3E\",\"lastModified\":\"2020-03-18T23:23:27.8288446Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask651\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask650\",\"eTag\":\"0x8D7CB935D134104\",\"lastModified\":\"2020-03-18T23:23:27.8388484Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask650\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask649\",\"eTag\":\"0x8D7CB935D14C780\",\"lastModified\":\"2020-03-18T23:23:27.8488448Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask649\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask648\",\"eTag\":\"0x8D7CB935D16290A\",\"lastModified\":\"2020-03-18T23:23:27.8578954Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask648\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask647\",\"eTag\":\"0x8D7CB935D164E1B\",\"lastModified\":\"2020-03-18T23:23:27.8588443Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask647\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask646\",\"eTag\":\"0x8D7CB935D17AE97\",\"lastModified\":\"2020-03-18T23:23:27.8678679Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask646\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask645\",\"eTag\":\"0x8D7CB935D19D473\",\"lastModified\":\"2020-03-18T23:23:27.8819443Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask645\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask644\",\"eTag\":\"0x8D7CB935D1AC05D\",\"lastModified\":\"2020-03-18T23:23:27.8879837Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask644\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask643\",\"eTag\":\"0x8D7CB935D1B7F29\",\"lastModified\":\"2020-03-18T23:23:27.8928681Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask643\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask640\",\"eTag\":\"0x8D7CB935D220EFD\",\"lastModified\":\"2020-03-18T23:23:27.9358717Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask640\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask639\",\"eTag\":\"0x8D7CB935D225BC2\",\"lastModified\":\"2020-03-18T23:23:27.937837Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask639\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask642\",\"eTag\":\"0x8D7CB935D2234B4\",\"lastModified\":\"2020-03-18T23:23:27.9368372Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask642\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask638\",\"eTag\":\"0x8D7CB935D2282D6\",\"lastModified\":\"2020-03-18T23:23:27.9388374Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask638\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask641\",\"eTag\":\"0x8D7CB935D225BC2\",\"lastModified\":\"2020-03-18T23:23:27.937837Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask641\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask636\",\"eTag\":\"0x8D7CB935D23E2A4\",\"lastModified\":\"2020-03-18T23:23:27.9478436Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask636\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask637\",\"eTag\":\"0x8D7CB935D23BC41\",\"lastModified\":\"2020-03-18T23:23:27.9468609Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask637\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask635\",\"eTag\":\"0x8D7CB935D2543A9\",\"lastModified\":\"2020-03-18T23:23:27.9568809Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask635\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask634\",\"eTag\":\"0x8D7CB935D26C9BF\",\"lastModified\":\"2020-03-18T23:23:27.9668671Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask634\"\r\n + \ },{\r\n \"status\":\"Success\",\"taskId\":\"mytask633\",\"eTag\":\"0x8D7CB935D27B3B5\",\"lastModified\":\"2020-03-18T23:23:27.9728565Z\",\"location\":\"https://batch98da0af6.westcentralus.batch.azure.com/jobs/batch98da0af6/tasks/mytask633\"\r\n \ }\r\n ]\r\n}" headers: content-type: @@ -106828,9 +106828,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 00:57:54 GMT + - Wed, 18 Mar 2020 23:23:27 GMT request-id: - - 6f06174c-ab3d-45e0-b6a0-27d4d34bf35f + - abd1535d-b3d5-4f07-aa55-e2283ef503a1 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 5f5428e70f2b..5aeaab77acdb 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 @@ -17,14 +17,14 @@ interactions: Content-Type: - application/json; odata=minimalmetadata; charset=utf-8 User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 01:03:51 GMT + - Wed, 18 Mar 2020 23:29:22 GMT method: POST - uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools?api-version=2019-08-01.10.0 + uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools?api-version=2020-03-01.11.0 response: body: string: '' @@ -34,15 +34,15 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 01:03:51 GMT + - Wed, 18 Mar 2020 23:29:22 GMT etag: - - '0x8D71AD31CBC3C65' + - '0x8D7CB9430DA11EF' last-modified: - - Wed, 07 Aug 2019 01:03:51 GMT + - Wed, 18 Mar 2020 23:29:23 GMT location: - https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf request-id: - - 7500fc91-bfbc-4455-b824-3cdcd5204d26 + - 886e04f6-b66a-4a59-8f94-801cb516b4e5 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 01:03:51 GMT + - Wed, 18 Mar 2020 23:29:23 GMT method: POST - uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf/updateproperties?api-version=2019-08-01.10.0 + uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf/updateproperties?api-version=2020-03-01.11.0 response: body: string: '' @@ -88,13 +88,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 01:03:51 GMT + - Wed, 18 Mar 2020 23:29:22 GMT etag: - - '0x8D71AD31D2598FA' + - '0x8D7CB943119FA2B' last-modified: - - Wed, 07 Aug 2019 01:03:52 GMT + - Wed, 18 Mar 2020 23:29:23 GMT request-id: - - 2cbc0643-11ec-469d-ae59-1d371bdd9ffa + - fb9f648a-698b-4f23-a38e-f26975394f26 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.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 01:03:52 GMT + - Wed, 18 Mar 2020 23:29:23 GMT method: PATCH - uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2019-08-01.10.0 + uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2020-03-01.11.0 response: body: string: '' @@ -135,13 +135,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 01:03:51 GMT + - Wed, 18 Mar 2020 23:29:23 GMT etag: - - '0x8D71AD31D35EEF9' + - '0x8D7CB9431296AA6' last-modified: - - Wed, 07 Aug 2019 01:03:52 GMT + - Wed, 18 Mar 2020 23:29:23 GMT request-id: - - cb5e80aa-fc4a-445b-90a8-5682778f4ee5 + - 8821a2f8-2052-42b7-9eef-54ac419985ad server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -163,14 +163,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 01:03:52 GMT + - Wed, 18 Mar 2020 23:29:23 GMT method: HEAD - uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2019-08-01.10.0 + uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2020-03-01.11.0 response: body: string: '' @@ -178,13 +178,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 01:03:51 GMT + - Wed, 18 Mar 2020 23:29:23 GMT etag: - - '0x8D71AD31D35EEF9' + - '0x8D7CB9431296AA6' last-modified: - - Wed, 07 Aug 2019 01:03:52 GMT + - Wed, 18 Mar 2020 23:29:23 GMT request-id: - - 593217e3-d6d7-4bf3-b61c-382e898007db + - f5b7d466-a4ec-4ab9-a7fe-8ce328985c9e server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -206,17 +206,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 01:03:52 GMT + - Wed, 18 Mar 2020 23:29:23 GMT method: GET - uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2019-08-01.10.0 + uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2020-03-01.11.0 response: body: - string: "{\r\n \"odata.metadata\":\"https://batchf0de0ddf.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_paas_f0de0ddf\",\"url\":\"https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf\",\"eTag\":\"0x8D71AD31D35EEF9\",\"lastModified\":\"2019-08-07T01:03:52.6710009Z\",\"creationTime\":\"2019-08-07T01:03:51.8734437Z\",\"state\":\"active\",\"stateTransitionTime\":\"2019-08-07T01:03:51.8734437Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2019-08-07T01:03:52.4029376Z\",\"vmSize\":\"small\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[\r\n + string: "{\r\n \"odata.metadata\":\"https://batchf0de0ddf.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_paas_f0de0ddf\",\"url\":\"https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf\",\"eTag\":\"0x8D7CB9431296AA6\",\"lastModified\":\"2020-03-18T23:29:23.6610726Z\",\"creationTime\":\"2020-03-18T23:29:23.1410671Z\",\"state\":\"active\",\"stateTransitionTime\":\"2020-03-18T23:29:23.1410671Z\",\"allocationState\":\"steady\",\"allocationStateTransitionTime\":\"2020-03-18T23:29:23.5400938Z\",\"vmSize\":\"small\",\"resizeTimeout\":\"PT15M\",\"currentDedicatedNodes\":0,\"targetDedicatedNodes\":0,\"currentLowPriorityNodes\":0,\"targetLowPriorityNodes\":0,\"enableAutoScale\":false,\"enableInterNodeCommunication\":false,\"certificateReferences\":[\r\n \ \r\n ],\"metadata\":[\r\n {\r\n \"name\":\"foo2\",\"value\":\"bar2\"\r\n \ }\r\n ],\"maxTasksPerNode\":1,\"taskSchedulingPolicy\":{\r\n \"nodeFillType\":\"Spread\"\r\n \ },\"cloudServiceConfiguration\":{\r\n \"osFamily\":\"5\",\"osVersion\":\"*\"\r\n @@ -227,13 +227,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 01:03:51 GMT + - Wed, 18 Mar 2020 23:29:23 GMT etag: - - '0x8D71AD31D35EEF9' + - '0x8D7CB9431296AA6' last-modified: - - Wed, 07 Aug 2019 01:03:52 GMT + - Wed, 18 Mar 2020 23:29:23 GMT request-id: - - bf68230e-52f9-4da9-874a-0bc427ae2cba + - 338aba7b-f388-44e9-93b1-6df8ad850dc6 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -255,16 +255,16 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 01:03:52 GMT + - Wed, 18 Mar 2020 23:29:23 GMT return-client-request-id: - 'false' method: GET - uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2019-08-01.10.0&$select=id%2Cstate&$expand=stats&timeout=30 + uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2020-03-01.11.0&$select=id%2Cstate&$expand=stats&timeout=30 response: body: string: "{\r\n \"odata.metadata\":\"https://batchf0de0ddf.westcentralus.batch.azure.com/$metadata#pools/@Element\",\"id\":\"batch_paas_f0de0ddf\",\"state\":\"active\"\r\n}" @@ -274,13 +274,13 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 01:03:53 GMT + - Wed, 18 Mar 2020 23:29:23 GMT etag: - - '0x8D71AD31D35EEF9' + - '0x8D7CB9431296AA6' last-modified: - - Wed, 07 Aug 2019 01:03:52 GMT + - Wed, 18 Mar 2020 23:29:23 GMT request-id: - - 581e93a4-af3d-4297-aa73-35d2ba501d5a + - 42f9b386-640a-495d-96f4-8fbebe874030 server: - Microsoft-HTTPAPI/2.0 strict-transport-security: @@ -304,14 +304,14 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.6 (Windows-10-10.0.14393-SP0) msrest/0.6.9 msrest_azure/0.4.34 - azure-batch/8.0.0 Azure-SDK-For-Python + - python/3.7.3 (Windows-10-10.0.18362-SP0) msrest/0.6.11 msrest_azure/0.6.2 + azure-batch/2020-03-01.11.0 Azure-SDK-For-Python accept-language: - en-US ocp-date: - - Wed, 07 Aug 2019 01:03:53 GMT + - Wed, 18 Mar 2020 23:29:23 GMT method: DELETE - uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2019-08-01.10.0 + uri: https://batchf0de0ddf.westcentralus.batch.azure.com/pools/batch_paas_f0de0ddf?api-version=2020-03-01.11.0 response: body: string: '' @@ -319,9 +319,9 @@ interactions: dataserviceversion: - '3.0' date: - - Wed, 07 Aug 2019 01:03:53 GMT + - Wed, 18 Mar 2020 23:29:23 GMT request-id: - - 069d2836-8936-4ee7-a07e-581465e099b6 + - 4eb91bc2-188d-46fb-b62a-0b6f276395e6 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 6a135c5ace82..19cb91bf2872 100644 --- a/sdk/batch/azure-batch/tests/test_batch.py +++ b/sdk/batch/azure-batch/tests/test_batch.py @@ -40,15 +40,6 @@ def _batch_url(self, batch): else: return 'https://' + batch.account_endpoint - def create_basic_client(self, client_class, **kwargs): - client = client_class( - credentials=kwargs.pop('credentials', None), - **kwargs - ) - if self.is_playback(): - client.config.long_running_operation_timeout = 0 - return client - def create_aad_client(self, batch_account, **kwargs): credentials = self.settings.get_credentials(resource=BATCH_RESOURCE) client = self.create_basic_client( @@ -59,8 +50,7 @@ def create_aad_client(self, batch_account, **kwargs): return client def create_sharedkey_client(self, batch_account, credentials, **kwargs): - client = self.create_basic_client( - azure.batch.BatchServiceClient, + client = azure.batch.BatchServiceClient( credentials=credentials, batch_url=self._batch_url(batch_account) ) @@ -204,6 +194,7 @@ def test_batch_create_pools(self, **kwargs): self.assertEqual(counts[0].low_priority.total, 0) # Test Create Pool with Network Configuration + #TODO Public IP tests network_config = models.NetworkConfiguration(subnet_id='/subscriptions/00000000-0000-0000-0000-000000000000' '/resourceGroups/test' '/providers/Microsoft.Network' @@ -223,7 +214,6 @@ def test_batch_create_pools(self, **kwargs): ) self.assertBatchError('InvalidPropertyValue', client.pool.add, test_network_pool, models.PoolAddOptions(timeout=45)) - # Test Create Pool with Custom Image test_image_pool = models.PoolAddParameter( id=self.get_resource_name('batch_image_'), vm_size='Standard_A1', @@ -232,7 +222,9 @@ def test_batch_create_pools(self, **kwargs): virtual_machine_image_id="/subscriptions/00000000-0000-0000-0000-000000000000" "/resourceGroups/test" "/providers/Microsoft.Compute" + "/gallery/FakeGallery" "/images/FakeImage" + "/versions/version" ), node_agent_sku_id='batch.node.ubuntu 16.04' ) @@ -278,6 +270,27 @@ def test_batch_create_pools(self, **kwargs): app_pool = client.pool.get(test_app_pool.id) self.assertEqual(app_pool.application_licenses[0], "maya") + # Test Create Pool with Azure Disk Encryption + test_ade_pool = models.PoolAddParameter( + id=self.get_resource_name('batch_ade_'), + vm_size='Standard_A1', + virtual_machine_configuration=models.VirtualMachineConfiguration( + image_reference=models.ImageReference( + publisher='Canonical', + offer='UbuntuServer', + sku='16.04-LTS' + ), + disk_encryption_configuration=models.DiskEncryptionConfiguration( + targets=[models.DiskEncryptionTarget.temporary_disk] + ), + node_agent_sku_id='batch.node.ubuntu 16.04') + ) + response = client.pool.add(test_ade_pool) + self.assertIsNone(response) + ade_pool = client.pool.get(test_ade_pool.id) + self.assertEqual(ade_pool.virtual_machine_configuration.disk_encryption_configuration.targets, + [models.DiskEncryptionTarget.temporary_disk]) + # Test List Pools without Filters pools = list(client.pool.list()) self.assertTrue(len(pools) > 1) diff --git a/tools/azure-sdk-tools/devtools_testutils/storage_testcase.py b/tools/azure-sdk-tools/devtools_testutils/storage_testcase.py index d1afd0710dc8..e387b54b1ffb 100644 --- a/tools/azure-sdk-tools/devtools_testutils/storage_testcase.py +++ b/tools/azure-sdk-tools/devtools_testutils/storage_testcase.py @@ -43,8 +43,9 @@ def __init__(self, self.resource_group_parameter_name = resource_group_parameter_name self.parameter_name = parameter_name self.storage_key = '' + self.resource_moniker = self.name_prefix if random_name_enabled: - self.resource_moniker = self.name_prefix + "storname" + self.resource_moniker += "storname" def create_resource(self, name, **kwargs): if self.is_live: